body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 8rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 6.4rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 4.8rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 4rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #232323 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #232323;
  border-color: #232323;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #232323 !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #232323;
  border-color: #232323;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #232323;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d5d5d5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 4.8rem;
}
blockquote {
  border-color: #232323;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #232323;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #232323;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #232323;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #232323 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff3366 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%23232323' %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.3;
}
.cid-sBQsW42rLk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #1e77d5;
}
.cid-sBQsW42rLk .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sBQsW42rLk .section-text {
  padding: 2rem 0;
  color: #f7ed4a;
}
.cid-sBQsW42rLk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sBQsW42rLk .inner-container {
    width: 100% !important;
  }
}
.cid-sBQtnJDIGY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #1e77d5;
}
.cid-sBQtnJDIGY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sBQtnJDIGY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBQtnJDIGY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBQtnJDIGY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sBQtnJDIGY .row > .row {
  display: block;
}
.cid-sBQtnJDIGY .mbr-gallery-item {
  width: 100%;
}
.cid-sBQtnJDIGY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sBQtnJDIGY .mbr-gallery-item > div {
  position: relative;
}
.cid-sBQtnJDIGY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sBQtnJDIGY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sBQtnJDIGY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sBQtnJDIGY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2eHhapbal {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #1e77d5;
}
.cid-s2eHhapbal .mbr-section-subtitle {
  color: #f7ed4a;
  font-weight: 300;
}
.cid-s2eHhapbal .number-wrap {
  color: #f9f295;
  border-color: rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 15px 13px 10px;
  margin: 0;
  min-width: 118px;
  border-radius: 2px;
  max-width: 100%;
}
.cid-s2eHhapbal .number {
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #f7ed4a;
}
.cid-s2eHhapbal .period {
  display: block;
  padding-top: 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-s2eHhapbal .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: block;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  font-size: 5px;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #f7ed4a;
}
.cid-s2eHhapbal .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2eHhapbal .dot {
    display: none;
  }
}
@media (max-width: 543px) {
  .cid-s2eHhapbal .number-wrap {
    margin-bottom: 15px;
  }
}
@media (max-width: 550px) {
  .cid-s2eHhapbal .col-xs-3 {
    padding-left: 0;
    padding-right: 0;
    max-width: 25%;
    flex: 0 0 25%;
  }
  .cid-s2eHhapbal .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-s2eHhapbal .number,
  .cid-s2eHhapbal .dot {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-s2eHhapbal .period {
    font-size: 0.8rem;
  }
}
.cid-s2eHhapbal H2 {
  color: #f7ed4a;
  text-align: center;
}
.cid-shQJsfwDG0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1e77d5;
}
.cid-uW6ebpiH7N {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #1e77d5;
}
.cid-uW6ebpiH7N .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
  text-align: center;
}
.cid-uW6ebpiH7N div.b {
  padding-top: 2rem;
}
.cid-uW6ebpiH7N H5 {
  color: #f7ed4a;
  text-align: center;
}
.cid-uW6ebpiH7N H2 {
  color: #f7ed4a;
  text-align: center;
}
.cid-uW6ebpiH7N .title {
  text-align: center;
}
.cid-uW6ebpiH7N .mbr-section-subtitle {
  text-align: center;
}
.cid-s4gUIMA3J1 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #1e77d5;
}
.cid-s4gUIMA3J1 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4gUIMA3J1 .section-text {
  padding: 2rem 0;
  color: #f7ed4a;
}
.cid-s4gUIMA3J1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4gUIMA3J1 .inner-container {
    width: 100% !important;
  }
}
.cid-s2tvM0iLNs {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #1e77d5;
}
.cid-s2tvM0iLNs .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2tvM0iLNs div.b {
  padding-top: 2rem;
}
.cid-s2tvM0iLNs H5 {
  color: #f7ed4a;
}
.cid-s2tvM0iLNs H2 {
  color: #f7ed4a;
}
.cid-s4dyg68wyL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s4dyg68wyL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4dyg68wyL .section-text {
  padding: 2rem 0;
}
.cid-s4dyg68wyL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4dyg68wyL .inner-container {
    width: 100% !important;
  }
}
.cid-uFy3rJoBo8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #db4af7;
}
.cid-uFy3rJoBo8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFy3rJoBo8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFy3rJoBo8 .row {
  justify-content: center;
}
.cid-uFy3rJoBo8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFy3rJoBo8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFy3rJoBo8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFy3rJoBo8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFy3rJoBo8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFy3rJoBo8 .mbr-text_1,
.cid-uFy3rJoBo8 .mbr-text_2,
.cid-uFy3rJoBo8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFy3rJoBo8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy3rJoBo8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFy3rJoBo8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy3rJoBo8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy3rJoBo8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy3rJoBo8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFy3rJoBo8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFy3rJoBo8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy3rJoBo8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy3rJoBo8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFy3rJoBo8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uFy3rJoBo8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFy3rJoBo8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHk0Pr6h1a {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #db4af7;
}
.cid-uHk0Pr6h1a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHk0Pr6h1a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHk0Pr6h1a .row {
  justify-content: center;
}
.cid-uHk0Pr6h1a .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHk0Pr6h1a .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHk0Pr6h1a .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHk0Pr6h1a .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHk0Pr6h1a .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHk0Pr6h1a .mbr-text_1,
.cid-uHk0Pr6h1a .mbr-text_2,
.cid-uHk0Pr6h1a .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHk0Pr6h1a .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk0Pr6h1a .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHk0Pr6h1a .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk0Pr6h1a .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk0Pr6h1a .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk0Pr6h1a .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHk0Pr6h1a .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHk0Pr6h1a .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk0Pr6h1a .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk0Pr6h1a .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHk0Pr6h1a .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHk0Pr6h1a .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHk0Pr6h1a .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4dyimpHML {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s4dyimpHML .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4dyimpHML .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s4dyimpHML .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4dyimpHML .inner-container {
    width: 100% !important;
  }
}
.cid-s4THPH9R04 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s4THPH9R04 .mbr-section-subtitle {
  color: #767676;
}
.cid-s4THPH9R04 .container-table {
  margin: 0 auto;
}
.cid-s4THPH9R04 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s4THPH9R04 .dataTables_wrapper {
  display: block;
}
.cid-s4THPH9R04 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s4THPH9R04 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s4THPH9R04 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s4THPH9R04 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s4THPH9R04 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s4THPH9R04 table td {
  border-top: 1px solid #232323;
}
.cid-s4THPH9R04 table.table {
  background: #db4af7;
}
.cid-s4THPH9R04 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s4THPH9R04 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s4THPH9R04 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s4THPH9R04 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s4THPH9R04 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s4THPH9R04 .dataTables_filter {
    text-align: center;
  }
  .cid-s4THPH9R04 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s4THPH9R04 .mbr-section-title {
  color: #ff3366;
}
.cid-s4THPH9R04 .head-item {
  text-align: center;
  color: #f7ed4a;
}
.cid-s4THPH9R04 .body-item {
  text-align: center;
  color: #232323;
}
.cid-s4dymtiFZM {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #db4af7;
}
.cid-s4dymtiFZM .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4dymtiFZM div.b {
  padding-top: 2rem;
}
.cid-s4dymtiFZM H5 {
  color: #232323;
}
.cid-s4mHLAPTXn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-s4mHLAPTXn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4mHLAPTXn .section-text {
  padding: 2rem 0;
}
.cid-s4mHLAPTXn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4mHLAPTXn .inner-container {
    width: 100% !important;
  }
}
.cid-uFy2Vto0v2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #11aaec;
}
.cid-uFy2Vto0v2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFy2Vto0v2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFy2Vto0v2 .row {
  justify-content: center;
}
.cid-uFy2Vto0v2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFy2Vto0v2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFy2Vto0v2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFy2Vto0v2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFy2Vto0v2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFy2Vto0v2 .mbr-text_1,
.cid-uFy2Vto0v2 .mbr-text_2,
.cid-uFy2Vto0v2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFy2Vto0v2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy2Vto0v2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFy2Vto0v2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy2Vto0v2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy2Vto0v2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy2Vto0v2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFy2Vto0v2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFy2Vto0v2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy2Vto0v2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy2Vto0v2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFy2Vto0v2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uFy2Vto0v2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFy2Vto0v2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHk0AGEfmy {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #11aaec;
}
.cid-uHk0AGEfmy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHk0AGEfmy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHk0AGEfmy .row {
  justify-content: center;
}
.cid-uHk0AGEfmy .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHk0AGEfmy .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHk0AGEfmy .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHk0AGEfmy .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHk0AGEfmy .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHk0AGEfmy .mbr-text_1,
.cid-uHk0AGEfmy .mbr-text_2,
.cid-uHk0AGEfmy .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHk0AGEfmy .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk0AGEfmy .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHk0AGEfmy .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-uHk0AGEfmy .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-uHk0AGEfmy .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk0AGEfmy .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHk0AGEfmy .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHk0AGEfmy .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk0AGEfmy .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-uHk0AGEfmy .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHk0AGEfmy .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHk0AGEfmy .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHk0AGEfmy .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4mIaxweYD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-s4mIaxweYD .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4mIaxweYD .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s4mIaxweYD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4mIaxweYD .inner-container {
    width: 100% !important;
  }
}
.cid-ttNi8Tps3k {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-ttNi8Tps3k .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ttNi8Tps3k .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-ttNi8Tps3k .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ttNi8Tps3k .inner-container {
    width: 100% !important;
  }
}
.cid-ttNi4s28fO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-ttNi4s28fO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ttNi4s28fO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttNi4s28fO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttNi4s28fO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ttNi4s28fO .row > .row {
  display: block;
}
.cid-ttNi4s28fO .mbr-gallery-item {
  width: 100%;
}
.cid-ttNi4s28fO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-ttNi4s28fO .mbr-gallery-item > div {
  position: relative;
}
.cid-ttNi4s28fO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ttNi4s28fO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-ttNi4s28fO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-ttNi4s28fO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tueJbmgVa6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-tueJbmgVa6 .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tueJbmgVa6 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-tueJbmgVa6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tueJbmgVa6 .inner-container {
    width: 100% !important;
  }
}
.cid-tueJcsZPGZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-tueJcsZPGZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tueJcsZPGZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tueJcsZPGZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tueJcsZPGZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tueJcsZPGZ .row > .row {
  display: block;
}
.cid-tueJcsZPGZ .mbr-gallery-item {
  width: 100%;
}
.cid-tueJcsZPGZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tueJcsZPGZ .mbr-gallery-item > div {
  position: relative;
}
.cid-tueJcsZPGZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tueJcsZPGZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tueJcsZPGZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tueJcsZPGZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tueGtGevhk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-tueGtGevhk .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tueGtGevhk .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-tueGtGevhk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tueGtGevhk .inner-container {
    width: 100% !important;
  }
}
.cid-tueGvJ3gIa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-tueGvJ3gIa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tueGvJ3gIa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tueGvJ3gIa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tueGvJ3gIa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tueGvJ3gIa .row > .row {
  display: block;
}
.cid-tueGvJ3gIa .mbr-gallery-item {
  width: 100%;
}
.cid-tueGvJ3gIa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tueGvJ3gIa .mbr-gallery-item > div {
  position: relative;
}
.cid-tueGvJ3gIa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tueGvJ3gIa .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tueGvJ3gIa .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tueGvJ3gIa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ttNrvVEzse {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-ttNrvVEzse .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ttNrvVEzse .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-ttNrvVEzse .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ttNrvVEzse .inner-container {
    width: 100% !important;
  }
}
.cid-ttNrwYNyun {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-ttNrwYNyun .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ttNrwYNyun .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttNrwYNyun .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttNrwYNyun .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ttNrwYNyun .row > .row {
  display: block;
}
.cid-ttNrwYNyun .mbr-gallery-item {
  width: 100%;
}
.cid-ttNrwYNyun .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-ttNrwYNyun .mbr-gallery-item > div {
  position: relative;
}
.cid-ttNrwYNyun .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ttNrwYNyun .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-ttNrwYNyun .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-ttNrwYNyun .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ttNibdQ9Rg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-ttNibdQ9Rg .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ttNibdQ9Rg .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-ttNibdQ9Rg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ttNibdQ9Rg .inner-container {
    width: 100% !important;
  }
}
.cid-ttNic2P1JD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-ttNic2P1JD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ttNic2P1JD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttNic2P1JD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttNic2P1JD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ttNic2P1JD .row > .row {
  display: block;
}
.cid-ttNic2P1JD .mbr-gallery-item {
  width: 100%;
}
.cid-ttNic2P1JD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-ttNic2P1JD .mbr-gallery-item > div {
  position: relative;
}
.cid-ttNic2P1JD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ttNic2P1JD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-ttNic2P1JD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-ttNic2P1JD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ttNidb7Cfw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-ttNidb7Cfw .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ttNidb7Cfw .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-ttNidb7Cfw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ttNidb7Cfw .inner-container {
    width: 100% !important;
  }
}
.cid-ttNieBsUFK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-ttNieBsUFK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ttNieBsUFK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttNieBsUFK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttNieBsUFK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ttNieBsUFK .row > .row {
  display: block;
}
.cid-ttNieBsUFK .mbr-gallery-item {
  width: 100%;
}
.cid-ttNieBsUFK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-ttNieBsUFK .mbr-gallery-item > div {
  position: relative;
}
.cid-ttNieBsUFK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ttNieBsUFK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-ttNieBsUFK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-ttNieBsUFK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ttNiiArLNZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-ttNiiArLNZ .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ttNiiArLNZ .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-ttNiiArLNZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ttNiiArLNZ .inner-container {
    width: 100% !important;
  }
}
.cid-ttNijFZH2H {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-ttNijFZH2H .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ttNijFZH2H .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttNijFZH2H .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ttNijFZH2H .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ttNijFZH2H .row > .row {
  display: block;
}
.cid-ttNijFZH2H .mbr-gallery-item {
  width: 100%;
}
.cid-ttNijFZH2H .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-ttNijFZH2H .mbr-gallery-item > div {
  position: relative;
}
.cid-ttNijFZH2H .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ttNijFZH2H .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-ttNijFZH2H .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-ttNijFZH2H .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tufR12KOqY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-tufR12KOqY .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tufR12KOqY .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-tufR12KOqY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tufR12KOqY .inner-container {
    width: 100% !important;
  }
}
.cid-tufR2Flihx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-tufR2Flihx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tufR2Flihx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tufR2Flihx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tufR2Flihx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tufR2Flihx .row > .row {
  display: block;
}
.cid-tufR2Flihx .mbr-gallery-item {
  width: 100%;
}
.cid-tufR2Flihx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tufR2Flihx .mbr-gallery-item > div {
  position: relative;
}
.cid-tufR2Flihx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tufR2Flihx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tufR2Flihx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tufR2Flihx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ttNsfsD5mX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #11aaec;
}
.cid-ttNsfsD5mX .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ttNsfsD5mX .section-text {
  padding: 2rem 0;
  color: #64df87;
}
.cid-ttNsfsD5mX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ttNsfsD5mX .inner-container {
    width: 100% !important;
  }
}
.cid-s4mHHwcDYD {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #11aaec;
}
.cid-s4mHHwcDYD .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4mHHwcDYD div.b {
  padding-top: 2rem;
}
.cid-s4mHHwcDYD H5 {
  color: #f7ed4a;
}
.cid-s2QkVW5zlw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f9f295;
}
.cid-s2QkVW5zlw .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2QkVW5zlw .section-text {
  padding: 2rem 0;
}
.cid-s2QkVW5zlw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2QkVW5zlw .inner-container {
    width: 100% !important;
  }
}
.cid-uFy3Nnsq1N {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f9f295;
}
.cid-uFy3Nnsq1N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFy3Nnsq1N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFy3Nnsq1N .row {
  justify-content: center;
}
.cid-uFy3Nnsq1N .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFy3Nnsq1N .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFy3Nnsq1N .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFy3Nnsq1N .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFy3Nnsq1N .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFy3Nnsq1N .mbr-text_1,
.cid-uFy3Nnsq1N .mbr-text_2,
.cid-uFy3Nnsq1N .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFy3Nnsq1N .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy3Nnsq1N .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3eddea;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFy3Nnsq1N .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy3Nnsq1N .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy3Nnsq1N .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy3Nnsq1N .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3eddea;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFy3Nnsq1N .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3eddea;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFy3Nnsq1N .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy3Nnsq1N .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy3Nnsq1N .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFy3Nnsq1N .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uFy3Nnsq1N .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFy3Nnsq1N .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHk14HVpV9 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f9f295;
}
.cid-uHk14HVpV9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHk14HVpV9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHk14HVpV9 .row {
  justify-content: center;
}
.cid-uHk14HVpV9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHk14HVpV9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHk14HVpV9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHk14HVpV9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHk14HVpV9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHk14HVpV9 .mbr-text_1,
.cid-uHk14HVpV9 .mbr-text_2,
.cid-uHk14HVpV9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHk14HVpV9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk14HVpV9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHk14HVpV9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk14HVpV9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk14HVpV9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk14HVpV9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHk14HVpV9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHk14HVpV9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk14HVpV9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk14HVpV9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHk14HVpV9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHk14HVpV9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHk14HVpV9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2QmTfyWd8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f9f295;
}
.cid-s2QmTfyWd8 .line {
  background-color: #000000;
  color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2QmTfyWd8 .section-text {
  padding: 2rem 0;
  color: #212529;
}
.cid-s2QmTfyWd8 .section-text a {
  color: #000000;
}
.cid-s2QmTfyWd8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2QmTfyWd8 .inner-container {
    width: 100% !important;
  }
}
.cid-vg4W0Ftk6i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f295;
}
.cid-vg4W0Ftk6i .mbr-section-btn .btn {
  white-space: nowrap;
}
.cid-vg4W0Ftk6i .mbr-section-btn .btn-warning {
  background-color: orange !important;
  border-color: orange !important;
}
.cid-vg4W0Ftk6i .mbr-section-btn .totocalcio-btn {
  background-color: #64df87 !important;
  border-color: #64df87 !important;
  color: white !important;
}
.cid-vg4W0Ftk6i .mbr-section-btn .si-vince-tutto-btn {
  background-color: #15ece0 !important;
  border-color: #15ece0 !important;
}
.cid-s2QvS0Y5CD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f9f295;
}
.cid-s2QvS0Y5CD .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2QvS0Y5CD .section-text {
  padding: 2rem 0;
}
.cid-s2QvS0Y5CD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2QvS0Y5CD .inner-container {
    width: 100% !important;
  }
}
.cid-s3mKWqKDMf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f9f295;
}
.cid-s3mKWqKDMf .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3mKWqKDMf .section-text {
  padding: 2rem 0;
}
.cid-s3mKWqKDMf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3mKWqKDMf .inner-container {
    width: 100% !important;
  }
}
.cid-s3mKWqKDMf .section-text DIV {
  text-align: center;
}
.cid-s2QlfW5mMG {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f9f295;
}
.cid-s2QlfW5mMG .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2QlfW5mMG div.b {
  padding-top: 2rem;
}
.cid-s2QlfW5mMG H5 {
  color: #232323;
}
.cid-s4dwZ1z8jm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s4dwZ1z8jm .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4dwZ1z8jm .section-text {
  padding: 2rem 0;
}
.cid-s4dwZ1z8jm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4dwZ1z8jm .inner-container {
    width: 100% !important;
  }
}
.cid-uFy2o89z8w {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-uFy2o89z8w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFy2o89z8w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFy2o89z8w .row {
  justify-content: center;
}
.cid-uFy2o89z8w .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFy2o89z8w .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFy2o89z8w .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFy2o89z8w .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFy2o89z8w .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFy2o89z8w .mbr-text_1,
.cid-uFy2o89z8w .mbr-text_2,
.cid-uFy2o89z8w .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFy2o89z8w .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy2o89z8w .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFy2o89z8w .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy2o89z8w .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy2o89z8w .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy2o89z8w .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFy2o89z8w .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFy2o89z8w .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy2o89z8w .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy2o89z8w .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFy2o89z8w .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uFy2o89z8w .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFy2o89z8w .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHk0n1YDZ5 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-uHk0n1YDZ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHk0n1YDZ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHk0n1YDZ5 .row {
  justify-content: center;
}
.cid-uHk0n1YDZ5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHk0n1YDZ5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHk0n1YDZ5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHk0n1YDZ5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHk0n1YDZ5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHk0n1YDZ5 .mbr-text_1,
.cid-uHk0n1YDZ5 .mbr-text_2,
.cid-uHk0n1YDZ5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHk0n1YDZ5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk0n1YDZ5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHk0n1YDZ5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk0n1YDZ5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk0n1YDZ5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk0n1YDZ5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHk0n1YDZ5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHk0n1YDZ5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk0n1YDZ5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk0n1YDZ5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHk0n1YDZ5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHk0n1YDZ5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHk0n1YDZ5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4dxa40AF9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s4dxa40AF9 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4dxa40AF9 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s4dxa40AF9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4dxa40AF9 .inner-container {
    width: 100% !important;
  }
}
.cid-s6ZcsG0tR6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s6ZcsG0tR6 .mbr-section-subtitle {
  color: #767676;
}
.cid-s6ZcsG0tR6 .container-table {
  margin: 0 auto;
}
.cid-s6ZcsG0tR6 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s6ZcsG0tR6 .dataTables_wrapper {
  display: block;
}
.cid-s6ZcsG0tR6 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s6ZcsG0tR6 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s6ZcsG0tR6 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s6ZcsG0tR6 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s6ZcsG0tR6 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s6ZcsG0tR6 table td {
  border-top: 1px solid #232323;
}
.cid-s6ZcsG0tR6 table.table {
  background: #cccccc;
}
.cid-s6ZcsG0tR6 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s6ZcsG0tR6 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s6ZcsG0tR6 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s6ZcsG0tR6 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s6ZcsG0tR6 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s6ZcsG0tR6 .dataTables_filter {
    text-align: center;
  }
  .cid-s6ZcsG0tR6 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s6ZcsG0tR6 .mbr-section-title {
  color: #232323;
}
.cid-s6ZcsG0tR6 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s6ZcsG0tR6 .body-item {
  text-align: center;
}
.cid-s4yb9DmUpu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s4yb9DmUpu .mbr-section-subtitle {
  color: #767676;
}
.cid-s4yb9DmUpu .container-table {
  margin: 0 auto;
}
.cid-s4yb9DmUpu .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s4yb9DmUpu .dataTables_wrapper {
  display: block;
}
.cid-s4yb9DmUpu .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s4yb9DmUpu .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s4yb9DmUpu table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s4yb9DmUpu table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s4yb9DmUpu table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s4yb9DmUpu table td {
  border-top: 1px solid #232323;
}
.cid-s4yb9DmUpu table.table {
  background: #cccccc;
}
.cid-s4yb9DmUpu .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s4yb9DmUpu .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s4yb9DmUpu .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s4yb9DmUpu .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s4yb9DmUpu .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s4yb9DmUpu .dataTables_filter {
    text-align: center;
  }
  .cid-s4yb9DmUpu .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s4yb9DmUpu .mbr-section-title {
  color: #232323;
}
.cid-s4yb9DmUpu .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s4yb9DmUpu .body-item {
  text-align: center;
}
.cid-s6ZeGXixB5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s6ZeGXixB5 .mbr-section-subtitle {
  color: #767676;
}
.cid-s6ZeGXixB5 .container-table {
  margin: 0 auto;
}
.cid-s6ZeGXixB5 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s6ZeGXixB5 .dataTables_wrapper {
  display: block;
}
.cid-s6ZeGXixB5 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s6ZeGXixB5 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s6ZeGXixB5 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s6ZeGXixB5 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s6ZeGXixB5 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s6ZeGXixB5 table td {
  border-top: 1px solid #232323;
}
.cid-s6ZeGXixB5 table.table {
  background: #cccccc;
}
.cid-s6ZeGXixB5 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s6ZeGXixB5 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s6ZeGXixB5 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s6ZeGXixB5 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s6ZeGXixB5 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s6ZeGXixB5 .dataTables_filter {
    text-align: center;
  }
  .cid-s6ZeGXixB5 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s6ZeGXixB5 .mbr-section-title {
  color: #232323;
}
.cid-s6ZeGXixB5 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s6ZeGXixB5 .body-item {
  text-align: center;
}
.cid-s6ZeJnvXNc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s6ZeJnvXNc .mbr-section-subtitle {
  color: #767676;
}
.cid-s6ZeJnvXNc .container-table {
  margin: 0 auto;
}
.cid-s6ZeJnvXNc .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s6ZeJnvXNc .dataTables_wrapper {
  display: block;
}
.cid-s6ZeJnvXNc .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s6ZeJnvXNc .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s6ZeJnvXNc table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s6ZeJnvXNc table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s6ZeJnvXNc table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s6ZeJnvXNc table td {
  border-top: 1px solid #232323;
}
.cid-s6ZeJnvXNc table.table {
  background: #cccccc;
}
.cid-s6ZeJnvXNc .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s6ZeJnvXNc .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s6ZeJnvXNc .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s6ZeJnvXNc .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s6ZeJnvXNc .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s6ZeJnvXNc .dataTables_filter {
    text-align: center;
  }
  .cid-s6ZeJnvXNc .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s6ZeJnvXNc .mbr-section-title {
  color: #232323;
}
.cid-s6ZeJnvXNc .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s6ZeJnvXNc .body-item {
  text-align: center;
}
.cid-s6ZjnJNm1K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s6ZjnJNm1K .mbr-section-subtitle {
  color: #767676;
}
.cid-s6ZjnJNm1K .container-table {
  margin: 0 auto;
}
.cid-s6ZjnJNm1K .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s6ZjnJNm1K .dataTables_wrapper {
  display: block;
}
.cid-s6ZjnJNm1K .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s6ZjnJNm1K .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s6ZjnJNm1K table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s6ZjnJNm1K table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s6ZjnJNm1K table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s6ZjnJNm1K table td {
  border-top: 1px solid #232323;
}
.cid-s6ZjnJNm1K table.table {
  background: #cccccc;
}
.cid-s6ZjnJNm1K .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s6ZjnJNm1K .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s6ZjnJNm1K .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s6ZjnJNm1K .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s6ZjnJNm1K .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s6ZjnJNm1K .dataTables_filter {
    text-align: center;
  }
  .cid-s6ZjnJNm1K .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s6ZjnJNm1K .mbr-section-title {
  color: #232323;
}
.cid-s6ZjnJNm1K .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s6ZjnJNm1K .body-item {
  text-align: center;
}
.cid-s6ZmmHuoxT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s6ZmmHuoxT .mbr-section-subtitle {
  color: #767676;
}
.cid-s6ZmmHuoxT .container-table {
  margin: 0 auto;
}
.cid-s6ZmmHuoxT .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s6ZmmHuoxT .dataTables_wrapper {
  display: block;
}
.cid-s6ZmmHuoxT .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s6ZmmHuoxT .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s6ZmmHuoxT table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s6ZmmHuoxT table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s6ZmmHuoxT table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s6ZmmHuoxT table td {
  border-top: 1px solid #232323;
}
.cid-s6ZmmHuoxT table.table {
  background: #cccccc;
}
.cid-s6ZmmHuoxT .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s6ZmmHuoxT .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s6ZmmHuoxT .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s6ZmmHuoxT .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s6ZmmHuoxT .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s6ZmmHuoxT .dataTables_filter {
    text-align: center;
  }
  .cid-s6ZmmHuoxT .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s6ZmmHuoxT .mbr-section-title {
  color: #232323;
}
.cid-s6ZmmHuoxT .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s6ZmmHuoxT .body-item {
  text-align: center;
}
.cid-s4dx5tQprH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s4dx5tQprH .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4dx5tQprH div.b {
  padding-top: 2rem;
}
.cid-s4dx5tQprH H5 {
  color: #232323;
}
.cid-s4b5AQDKv4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4b5AQDKv4 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4b5AQDKv4 .section-text {
  padding: 2rem 0;
}
.cid-s4b5AQDKv4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4b5AQDKv4 .inner-container {
    width: 100% !important;
  }
}
.cid-uFy1yk0o2b {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-uFy1yk0o2b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFy1yk0o2b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFy1yk0o2b .row {
  justify-content: center;
}
.cid-uFy1yk0o2b .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFy1yk0o2b .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFy1yk0o2b .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFy1yk0o2b .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFy1yk0o2b .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFy1yk0o2b .mbr-text_1,
.cid-uFy1yk0o2b .mbr-text_2,
.cid-uFy1yk0o2b .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFy1yk0o2b .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy1yk0o2b .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFy1yk0o2b .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy1yk0o2b .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy1yk0o2b .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy1yk0o2b .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFy1yk0o2b .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFy1yk0o2b .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy1yk0o2b .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy1yk0o2b .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFy1yk0o2b .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uFy1yk0o2b .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFy1yk0o2b .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHk0c3zmkn {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-uHk0c3zmkn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHk0c3zmkn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHk0c3zmkn .row {
  justify-content: center;
}
.cid-uHk0c3zmkn .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHk0c3zmkn .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHk0c3zmkn .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHk0c3zmkn .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHk0c3zmkn .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHk0c3zmkn .mbr-text_1,
.cid-uHk0c3zmkn .mbr-text_2,
.cid-uHk0c3zmkn .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHk0c3zmkn .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk0c3zmkn .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHk0c3zmkn .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk0c3zmkn .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk0c3zmkn .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk0c3zmkn .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHk0c3zmkn .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHk0c3zmkn .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk0c3zmkn .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk0c3zmkn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHk0c3zmkn .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHk0c3zmkn .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHk0c3zmkn .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s6SEPknNyo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s6SEPknNyo .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6SEPknNyo .section-text {
  padding: 2rem 0;
}
.cid-s6SEPknNyo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6SEPknNyo .inner-container {
    width: 100% !important;
  }
}
.cid-t5JZeUyITX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-t5JZeUyITX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t5JZeUyITX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t5JZeUyITX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t5JZeUyITX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t5JZeUyITX .row > .row {
  display: block;
}
.cid-t5JZeUyITX .mbr-gallery-item {
  width: 100%;
}
.cid-t5JZeUyITX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-t5JZeUyITX .mbr-gallery-item > div {
  position: relative;
}
.cid-t5JZeUyITX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-t5JZeUyITX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-t5JZeUyITX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-t5JZeUyITX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4b5OO8ZzX {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4b5OO8ZzX .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4b5OO8ZzX div.b {
  padding-top: 2rem;
}
.cid-s4b5OO8ZzX H5 {
  color: #232323;
}
.cid-s2FFGlgU3d {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s2FFGlgU3d .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2FFGlgU3d .section-text {
  padding: 2rem 0;
}
.cid-s2FFGlgU3d .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2FFGlgU3d .inner-container {
    width: 100% !important;
  }
}
.cid-uHjZPN4vYK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-uHjZPN4vYK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjZPN4vYK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjZPN4vYK .row {
  justify-content: center;
}
.cid-uHjZPN4vYK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjZPN4vYK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjZPN4vYK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjZPN4vYK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjZPN4vYK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjZPN4vYK .mbr-text_1,
.cid-uHjZPN4vYK .mbr-text_2,
.cid-uHjZPN4vYK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjZPN4vYK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZPN4vYK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjZPN4vYK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uHjZPN4vYK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uHjZPN4vYK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZPN4vYK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjZPN4vYK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjZPN4vYK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZPN4vYK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uHjZPN4vYK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjZPN4vYK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjZPN4vYK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjZPN4vYK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHjZON5tk6 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-uHjZON5tk6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjZON5tk6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjZON5tk6 .row {
  justify-content: center;
}
.cid-uHjZON5tk6 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjZON5tk6 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjZON5tk6 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjZON5tk6 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjZON5tk6 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjZON5tk6 .mbr-text_1,
.cid-uHjZON5tk6 .mbr-text_2,
.cid-uHjZON5tk6 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjZON5tk6 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZON5tk6 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjZON5tk6 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjZON5tk6 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjZON5tk6 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZON5tk6 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjZON5tk6 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjZON5tk6 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZON5tk6 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjZON5tk6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjZON5tk6 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjZON5tk6 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjZON5tk6 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2GloWazM4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s2GloWazM4 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2GloWazM4 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2GloWazM4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2GloWazM4 .inner-container {
    width: 100% !important;
  }
}
.cid-s2FFB89qpJ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s2FFB89qpJ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2FFB89qpJ div.b {
  padding-top: 2rem;
}
.cid-s2FFB89qpJ H5 {
  color: #232323;
}
.cid-s2NQVmYCaT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2NQVmYCaT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2NQVmYCaT .section-text {
  padding: 2rem 0;
}
.cid-s2NQVmYCaT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2NQVmYCaT .inner-container {
    width: 100% !important;
  }
}
.cid-uFy10uAzzs {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-uFy10uAzzs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFy10uAzzs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFy10uAzzs .row {
  justify-content: center;
}
.cid-uFy10uAzzs .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFy10uAzzs .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFy10uAzzs .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFy10uAzzs .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFy10uAzzs .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFy10uAzzs .mbr-text_1,
.cid-uFy10uAzzs .mbr-text_2,
.cid-uFy10uAzzs .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFy10uAzzs .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy10uAzzs .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFy10uAzzs .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy10uAzzs .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy10uAzzs .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy10uAzzs .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFy10uAzzs .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFy10uAzzs .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy10uAzzs .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy10uAzzs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFy10uAzzs .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uFy10uAzzs .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFy10uAzzs .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHjZE00jZj {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-uHjZE00jZj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjZE00jZj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjZE00jZj .row {
  justify-content: center;
}
.cid-uHjZE00jZj .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjZE00jZj .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjZE00jZj .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjZE00jZj .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjZE00jZj .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjZE00jZj .mbr-text_1,
.cid-uHjZE00jZj .mbr-text_2,
.cid-uHjZE00jZj .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjZE00jZj .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZE00jZj .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjZE00jZj .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjZE00jZj .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjZE00jZj .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZE00jZj .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjZE00jZj .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjZE00jZj .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZE00jZj .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjZE00jZj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjZE00jZj .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjZE00jZj .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjZE00jZj .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2NR2TsmZ6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2NR2TsmZ6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2NR2TsmZ6 .section-text {
  padding: 2rem 0;
}
.cid-s2NR2TsmZ6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2NR2TsmZ6 .inner-container {
    width: 100% !important;
  }
}
.cid-s2NQPNHj6b {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2NQPNHj6b .mbr-section-subtitle {
  color: #767676;
}
.cid-s2NQPNHj6b .container-table {
  margin: 0 auto;
}
.cid-s2NQPNHj6b .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2NQPNHj6b .dataTables_wrapper {
  display: block;
}
.cid-s2NQPNHj6b .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2NQPNHj6b .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2NQPNHj6b table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2NQPNHj6b table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2NQPNHj6b table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2NQPNHj6b table td {
  border-top: 1px solid #232323;
}
.cid-s2NQPNHj6b table.table {
  background: #3bec15;
}
.cid-s2NQPNHj6b .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2NQPNHj6b .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2NQPNHj6b .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2NQPNHj6b .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2NQPNHj6b .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2NQPNHj6b .dataTables_filter {
    text-align: center;
  }
  .cid-s2NQPNHj6b .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2NQPNHj6b .mbr-section-title {
  color: #ff3366;
}
.cid-s2NQPNHj6b .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-s2NQPNHj6b .body-item {
  text-align: center;
}
.cid-s4gDjexQZM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4gDjexQZM .mbr-section-subtitle {
  color: #767676;
}
.cid-s4gDjexQZM .container-table {
  margin: 0 auto;
}
.cid-s4gDjexQZM .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s4gDjexQZM .dataTables_wrapper {
  display: block;
}
.cid-s4gDjexQZM .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s4gDjexQZM .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s4gDjexQZM table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s4gDjexQZM table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s4gDjexQZM table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s4gDjexQZM table td {
  border-top: 1px solid #232323;
}
.cid-s4gDjexQZM .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s4gDjexQZM .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s4gDjexQZM .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s4gDjexQZM .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s4gDjexQZM .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s4gDjexQZM .dataTables_filter {
    text-align: center;
  }
  .cid-s4gDjexQZM .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s4gDjexQZM .mbr-section-title {
  color: #ff3366;
}
.cid-s4gDjexQZM .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-s4gDjexQZM .body-item {
  text-align: center;
}
.cid-s4gEvcYDWB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4gEvcYDWB .mbr-section-subtitle {
  color: #767676;
}
.cid-s4gEvcYDWB .container-table {
  margin: 0 auto;
}
.cid-s4gEvcYDWB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s4gEvcYDWB .dataTables_wrapper {
  display: block;
}
.cid-s4gEvcYDWB .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s4gEvcYDWB .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s4gEvcYDWB table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s4gEvcYDWB table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s4gEvcYDWB table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s4gEvcYDWB table td {
  border-top: 1px solid #232323;
}
.cid-s4gEvcYDWB .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s4gEvcYDWB .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s4gEvcYDWB .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s4gEvcYDWB .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s4gEvcYDWB .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s4gEvcYDWB .dataTables_filter {
    text-align: center;
  }
  .cid-s4gEvcYDWB .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s4gEvcYDWB .mbr-section-title {
  color: #ff3366;
}
.cid-s4gEvcYDWB .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-s4gEvcYDWB .body-item {
  text-align: center;
}
.cid-s4gFg6mCxO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4gFg6mCxO .mbr-section-subtitle {
  color: #767676;
}
.cid-s4gFg6mCxO .container-table {
  margin: 0 auto;
}
.cid-s4gFg6mCxO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s4gFg6mCxO .dataTables_wrapper {
  display: block;
}
.cid-s4gFg6mCxO .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s4gFg6mCxO .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s4gFg6mCxO table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s4gFg6mCxO table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s4gFg6mCxO table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s4gFg6mCxO table td {
  border-top: 1px solid #232323;
}
.cid-s4gFg6mCxO .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s4gFg6mCxO .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s4gFg6mCxO .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s4gFg6mCxO .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s4gFg6mCxO .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s4gFg6mCxO .dataTables_filter {
    text-align: center;
  }
  .cid-s4gFg6mCxO .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s4gFg6mCxO .mbr-section-title {
  color: #ff3366;
}
.cid-s4gFg6mCxO .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-s4gFg6mCxO .body-item {
  text-align: center;
}
.cid-s4gGbKHXiC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4gGbKHXiC .mbr-section-subtitle {
  color: #767676;
}
.cid-s4gGbKHXiC .container-table {
  margin: 0 auto;
}
.cid-s4gGbKHXiC .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s4gGbKHXiC .dataTables_wrapper {
  display: block;
}
.cid-s4gGbKHXiC .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s4gGbKHXiC .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s4gGbKHXiC table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s4gGbKHXiC table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s4gGbKHXiC table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s4gGbKHXiC table td {
  border-top: 1px solid #232323;
}
.cid-s4gGbKHXiC .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s4gGbKHXiC .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s4gGbKHXiC .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s4gGbKHXiC .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s4gGbKHXiC .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s4gGbKHXiC .dataTables_filter {
    text-align: center;
  }
  .cid-s4gGbKHXiC .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s4gGbKHXiC .mbr-section-title {
  color: #ff3366;
}
.cid-s4gGbKHXiC .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-s4gGbKHXiC .body-item {
  text-align: center;
}
.cid-s4gHL4LOmc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4gHL4LOmc .mbr-section-subtitle {
  color: #767676;
}
.cid-s4gHL4LOmc .container-table {
  margin: 0 auto;
}
.cid-s4gHL4LOmc .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s4gHL4LOmc .dataTables_wrapper {
  display: block;
}
.cid-s4gHL4LOmc .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s4gHL4LOmc .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s4gHL4LOmc table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s4gHL4LOmc table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s4gHL4LOmc table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s4gHL4LOmc table td {
  border-top: 1px solid #232323;
}
.cid-s4gHL4LOmc .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s4gHL4LOmc .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s4gHL4LOmc .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s4gHL4LOmc .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s4gHL4LOmc .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s4gHL4LOmc .dataTables_filter {
    text-align: center;
  }
  .cid-s4gHL4LOmc .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s4gHL4LOmc .mbr-section-title {
  color: #ff3366;
}
.cid-s4gHL4LOmc .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-s4gHL4LOmc .body-item {
  text-align: center;
}
.cid-s4gIo7Ow3b {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4gIo7Ow3b .mbr-section-subtitle {
  color: #767676;
}
.cid-s4gIo7Ow3b .container-table {
  margin: 0 auto;
}
.cid-s4gIo7Ow3b .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s4gIo7Ow3b .dataTables_wrapper {
  display: block;
}
.cid-s4gIo7Ow3b .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s4gIo7Ow3b .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s4gIo7Ow3b table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s4gIo7Ow3b table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s4gIo7Ow3b table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s4gIo7Ow3b table td {
  border-top: 1px solid #232323;
}
.cid-s4gIo7Ow3b .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s4gIo7Ow3b .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s4gIo7Ow3b .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s4gIo7Ow3b .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s4gIo7Ow3b .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s4gIo7Ow3b .dataTables_filter {
    text-align: center;
  }
  .cid-s4gIo7Ow3b .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s4gIo7Ow3b .mbr-section-title {
  color: #ff3366;
}
.cid-s4gIo7Ow3b .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-s4gIo7Ow3b .body-item {
  text-align: center;
}
.cid-taHgRrFzOV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-taHgRrFzOV .mbr-section-subtitle {
  color: #767676;
}
.cid-taHgRrFzOV .container-table {
  margin: 0 auto;
}
.cid-taHgRrFzOV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-taHgRrFzOV .dataTables_wrapper {
  display: block;
}
.cid-taHgRrFzOV .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-taHgRrFzOV .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-taHgRrFzOV table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-taHgRrFzOV table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-taHgRrFzOV table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-taHgRrFzOV table td {
  border-top: 1px solid #232323;
}
.cid-taHgRrFzOV .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-taHgRrFzOV .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-taHgRrFzOV .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-taHgRrFzOV .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-taHgRrFzOV .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-taHgRrFzOV .dataTables_filter {
    text-align: center;
  }
  .cid-taHgRrFzOV .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-taHgRrFzOV .mbr-section-title {
  color: #ff3366;
}
.cid-taHgRrFzOV .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-taHgRrFzOV .body-item {
  text-align: center;
}
.cid-s2NR0Cfvrm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2NR0Cfvrm .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2NR0Cfvrm div.b {
  padding-top: 2rem;
}
.cid-s2NR0Cfvrm H5 {
  color: #232323;
}
.cid-s2Lqwzze7L {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2Lqwzze7L .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Lqwzze7L .section-text {
  padding: 2rem 0;
}
.cid-s2Lqwzze7L .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Lqwzze7L .inner-container {
    width: 100% !important;
  }
}
.cid-uFxkqLG6kc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-uFxkqLG6kc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFxkqLG6kc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFxkqLG6kc .row {
  justify-content: center;
}
.cid-uFxkqLG6kc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFxkqLG6kc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFxkqLG6kc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFxkqLG6kc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFxkqLG6kc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFxkqLG6kc .mbr-text_1,
.cid-uFxkqLG6kc .mbr-text_2,
.cid-uFxkqLG6kc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFxkqLG6kc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFxkqLG6kc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFxkqLG6kc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFxkqLG6kc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFxkqLG6kc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFxkqLG6kc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFxkqLG6kc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFxkqLG6kc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFxkqLG6kc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFxkqLG6kc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFxkqLG6kc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uFxkqLG6kc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFxkqLG6kc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHjYQxJ0z8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-uHjYQxJ0z8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjYQxJ0z8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjYQxJ0z8 .row {
  justify-content: center;
}
.cid-uHjYQxJ0z8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjYQxJ0z8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjYQxJ0z8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjYQxJ0z8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjYQxJ0z8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjYQxJ0z8 .mbr-text_1,
.cid-uHjYQxJ0z8 .mbr-text_2,
.cid-uHjYQxJ0z8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjYQxJ0z8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjYQxJ0z8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjYQxJ0z8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjYQxJ0z8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjYQxJ0z8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjYQxJ0z8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjYQxJ0z8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjYQxJ0z8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjYQxJ0z8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjYQxJ0z8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjYQxJ0z8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjYQxJ0z8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjYQxJ0z8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2LrxmxfGy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2LrxmxfGy .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2LrxmxfGy .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2LrxmxfGy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2LrxmxfGy .inner-container {
    width: 100% !important;
  }
}
.cid-twidqwAx4h {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ecae15;
}
.cid-s2LrNhjZmQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2LrNhjZmQ .mbr-section-subtitle {
  color: #767676;
}
.cid-s2LrNhjZmQ .container-table {
  margin: 0 auto;
}
.cid-s2LrNhjZmQ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2LrNhjZmQ .dataTables_wrapper {
  display: block;
}
.cid-s2LrNhjZmQ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2LrNhjZmQ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2LrNhjZmQ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2LrNhjZmQ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2LrNhjZmQ table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2LrNhjZmQ table td {
  border-top: 1px solid #232323;
}
.cid-s2LrNhjZmQ table.table {
  background: #ecae15;
}
.cid-s2LrNhjZmQ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2LrNhjZmQ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2LrNhjZmQ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2LrNhjZmQ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2LrNhjZmQ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2LrNhjZmQ .dataTables_filter {
    text-align: center;
  }
  .cid-s2LrNhjZmQ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2LrNhjZmQ .mbr-section-title {
  color: #232323;
}
.cid-s2LrNhjZmQ .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2LrNhjZmQ .body-item {
  text-align: center;
}
.cid-s2NOjgzeZp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2NOjgzeZp .mbr-section-subtitle {
  color: #767676;
}
.cid-s2NOjgzeZp .container-table {
  margin: 0 auto;
}
.cid-s2NOjgzeZp .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2NOjgzeZp .dataTables_wrapper {
  display: block;
}
.cid-s2NOjgzeZp .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2NOjgzeZp .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2NOjgzeZp table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2NOjgzeZp table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2NOjgzeZp table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2NOjgzeZp table td {
  border-top: 1px solid #232323;
}
.cid-s2NOjgzeZp table.table {
  background: #ecae15;
}
.cid-s2NOjgzeZp .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2NOjgzeZp .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2NOjgzeZp .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2NOjgzeZp .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2NOjgzeZp .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2NOjgzeZp .dataTables_filter {
    text-align: center;
  }
  .cid-s2NOjgzeZp .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2NOjgzeZp .mbr-section-title {
  color: #232323;
}
.cid-s2NOjgzeZp .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2NOjgzeZp .body-item {
  text-align: center;
}
.cid-s2NOQZpGWs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2NOQZpGWs .mbr-section-subtitle {
  color: #767676;
}
.cid-s2NOQZpGWs .container-table {
  margin: 0 auto;
}
.cid-s2NOQZpGWs .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2NOQZpGWs .dataTables_wrapper {
  display: block;
}
.cid-s2NOQZpGWs .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2NOQZpGWs .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2NOQZpGWs table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2NOQZpGWs table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2NOQZpGWs table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2NOQZpGWs table td {
  border-top: 1px solid #232323;
}
.cid-s2NOQZpGWs table.table {
  background: #ecae15;
}
.cid-s2NOQZpGWs .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2NOQZpGWs .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2NOQZpGWs .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2NOQZpGWs .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2NOQZpGWs .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2NOQZpGWs .dataTables_filter {
    text-align: center;
  }
  .cid-s2NOQZpGWs .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2NOQZpGWs .mbr-section-title {
  color: #232323;
}
.cid-s2NOQZpGWs .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2NOQZpGWs .body-item {
  text-align: center;
}
.cid-s2NOSpx41x {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2NOSpx41x .mbr-section-subtitle {
  color: #767676;
}
.cid-s2NOSpx41x .container-table {
  margin: 0 auto;
}
.cid-s2NOSpx41x .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2NOSpx41x .dataTables_wrapper {
  display: block;
}
.cid-s2NOSpx41x .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2NOSpx41x .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2NOSpx41x table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2NOSpx41x table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2NOSpx41x table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2NOSpx41x table td {
  border-top: 1px solid #232323;
}
.cid-s2NOSpx41x table.table {
  background: #ecae15;
}
.cid-s2NOSpx41x .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2NOSpx41x .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2NOSpx41x .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2NOSpx41x .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2NOSpx41x .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2NOSpx41x .dataTables_filter {
    text-align: center;
  }
  .cid-s2NOSpx41x .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2NOSpx41x .mbr-section-title {
  color: #232323;
}
.cid-s2NOSpx41x .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2NOSpx41x .body-item {
  text-align: center;
}
.cid-s2NPm7buWg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2NPm7buWg .mbr-section-subtitle {
  color: #767676;
}
.cid-s2NPm7buWg .container-table {
  margin: 0 auto;
}
.cid-s2NPm7buWg .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2NPm7buWg .dataTables_wrapper {
  display: block;
}
.cid-s2NPm7buWg .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2NPm7buWg .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2NPm7buWg table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2NPm7buWg table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2NPm7buWg table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2NPm7buWg table td {
  border-top: 1px solid #232323;
}
.cid-s2NPm7buWg table.table {
  background: #ecae15;
}
.cid-s2NPm7buWg .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2NPm7buWg .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2NPm7buWg .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2NPm7buWg .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2NPm7buWg .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2NPm7buWg .dataTables_filter {
    text-align: center;
  }
  .cid-s2NPm7buWg .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2NPm7buWg .mbr-section-title {
  color: #232323;
}
.cid-s2NPm7buWg .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2NPm7buWg .body-item {
  text-align: center;
}
.cid-uQQM5je0Mz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uQQM5je0Mz .mbr-section-subtitle {
  color: #767676;
}
.cid-uQQM5je0Mz .container-table {
  margin: 0 auto;
}
.cid-uQQM5je0Mz .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uQQM5je0Mz .dataTables_wrapper {
  display: block;
}
.cid-uQQM5je0Mz .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uQQM5je0Mz .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uQQM5je0Mz table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uQQM5je0Mz table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uQQM5je0Mz table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uQQM5je0Mz table td {
  border-top: 1px solid #232323;
}
.cid-uQQM5je0Mz table.table {
  background: #ecae15;
}
.cid-uQQM5je0Mz .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uQQM5je0Mz .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uQQM5je0Mz .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uQQM5je0Mz .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uQQM5je0Mz .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uQQM5je0Mz .dataTables_filter {
    text-align: center;
  }
  .cid-uQQM5je0Mz .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uQQM5je0Mz .mbr-section-title {
  color: #232323;
}
.cid-uQQM5je0Mz .head-item {
  text-align: center;
  color: #232323;
}
.cid-uQQM5je0Mz .body-item {
  text-align: center;
}
.cid-s2NPkUc2qS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2NPkUc2qS .mbr-section-subtitle {
  color: #767676;
}
.cid-s2NPkUc2qS .container-table {
  margin: 0 auto;
}
.cid-s2NPkUc2qS .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2NPkUc2qS .dataTables_wrapper {
  display: block;
}
.cid-s2NPkUc2qS .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2NPkUc2qS .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2NPkUc2qS table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2NPkUc2qS table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2NPkUc2qS table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2NPkUc2qS table td {
  border-top: 1px solid #232323;
}
.cid-s2NPkUc2qS table.table {
  background: #ecae15;
}
.cid-s2NPkUc2qS .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2NPkUc2qS .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2NPkUc2qS .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2NPkUc2qS .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2NPkUc2qS .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2NPkUc2qS .dataTables_filter {
    text-align: center;
  }
  .cid-s2NPkUc2qS .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2NPkUc2qS .mbr-section-title {
  color: #232323;
}
.cid-s2NPkUc2qS .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2NPkUc2qS .body-item {
  text-align: center;
}
.cid-s2LtQwS9xx {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2LtQwS9xx .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2LtQwS9xx div.b {
  padding-top: 2rem;
}
.cid-s2LtQwS9xx H5 {
  color: #232323;
}
.cid-s2lnjkbZMg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s2lnjkbZMg .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2lnjkbZMg .section-text {
  padding: 2rem 0;
}
.cid-s2lnjkbZMg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2lnjkbZMg .inner-container {
    width: 100% !important;
  }
}
.cid-s2lnHMEOCc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s2lnHMEOCc .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2lnHMEOCc .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s2lnHMEOCc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2lnHMEOCc .inner-container {
    width: 100% !important;
  }
}
.cid-uFxijkDL3j {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-uFxijkDL3j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFxijkDL3j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFxijkDL3j .row {
  justify-content: center;
}
.cid-uFxijkDL3j .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFxijkDL3j .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFxijkDL3j .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFxijkDL3j .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFxijkDL3j .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFxijkDL3j .mbr-text_1,
.cid-uFxijkDL3j .mbr-text_2,
.cid-uFxijkDL3j .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFxijkDL3j .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFxijkDL3j .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFxijkDL3j .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFxijkDL3j .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFxijkDL3j .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFxijkDL3j .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFxijkDL3j .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFxijkDL3j .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFxijkDL3j .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFxijkDL3j .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFxijkDL3j .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uFxijkDL3j .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFxijkDL3j .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHjXaZMMAy {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-uHjXaZMMAy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjXaZMMAy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjXaZMMAy .row {
  justify-content: center;
}
.cid-uHjXaZMMAy .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjXaZMMAy .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjXaZMMAy .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjXaZMMAy .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjXaZMMAy .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjXaZMMAy .mbr-text_1,
.cid-uHjXaZMMAy .mbr-text_2,
.cid-uHjXaZMMAy .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjXaZMMAy .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjXaZMMAy .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjXaZMMAy .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjXaZMMAy .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjXaZMMAy .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjXaZMMAy .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjXaZMMAy .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjXaZMMAy .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjXaZMMAy .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjXaZMMAy .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjXaZMMAy .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjXaZMMAy .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjXaZMMAy .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2qLRfeOCN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s2qLRfeOCN .mbr-section-subtitle {
  color: #767676;
}
.cid-s2qLRfeOCN .container-table {
  margin: 0 auto;
}
.cid-s2qLRfeOCN .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2qLRfeOCN .dataTables_wrapper {
  display: block;
}
.cid-s2qLRfeOCN .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2qLRfeOCN .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2qLRfeOCN table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2qLRfeOCN table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2qLRfeOCN table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2qLRfeOCN table td {
  border-top: 1px solid #232323;
}
.cid-s2qLRfeOCN table.table {
  background: #ff3366;
}
.cid-s2qLRfeOCN .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2qLRfeOCN .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2qLRfeOCN .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2qLRfeOCN .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2qLRfeOCN .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2qLRfeOCN .dataTables_filter {
    text-align: center;
  }
  .cid-s2qLRfeOCN .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2qLRfeOCN .mbr-section-title {
  color: #ff3366;
}
.cid-s2qLRfeOCN .head-item {
  text-align: center;
}
.cid-s2qLRfeOCN .body-item {
  text-align: center;
}
.cid-uUwsbDReOb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-uUwsbDReOb .mbr-section-subtitle {
  color: #767676;
}
.cid-uUwsbDReOb .container-table {
  margin: 0 auto;
}
.cid-uUwsbDReOb .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uUwsbDReOb .dataTables_wrapper {
  display: block;
}
.cid-uUwsbDReOb .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uUwsbDReOb .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uUwsbDReOb table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uUwsbDReOb table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uUwsbDReOb table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uUwsbDReOb table td {
  border-top: 1px solid #232323;
}
.cid-uUwsbDReOb table.table {
  background: #ff3366;
}
.cid-uUwsbDReOb .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uUwsbDReOb .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uUwsbDReOb .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uUwsbDReOb .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uUwsbDReOb .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uUwsbDReOb .dataTables_filter {
    text-align: center;
  }
  .cid-uUwsbDReOb .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uUwsbDReOb .mbr-section-title {
  color: #ff3366;
}
.cid-uUwsbDReOb .head-item {
  text-align: center;
  color: #232323;
}
.cid-uUwsbDReOb .body-item {
  text-align: center;
}
.cid-s2qQ0QVWeq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s2qQ0QVWeq .mbr-section-subtitle {
  color: #767676;
}
.cid-s2qQ0QVWeq .container-table {
  margin: 0 auto;
}
.cid-s2qQ0QVWeq .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2qQ0QVWeq .dataTables_wrapper {
  display: block;
}
.cid-s2qQ0QVWeq .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2qQ0QVWeq .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2qQ0QVWeq table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2qQ0QVWeq table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2qQ0QVWeq table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2qQ0QVWeq table td {
  border-top: 1px solid #232323;
}
.cid-s2qQ0QVWeq table.table {
  background: #ff3366;
}
.cid-s2qQ0QVWeq .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2qQ0QVWeq .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2qQ0QVWeq .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2qQ0QVWeq .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2qQ0QVWeq .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2qQ0QVWeq .dataTables_filter {
    text-align: center;
  }
  .cid-s2qQ0QVWeq .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2qQ0QVWeq .mbr-section-title {
  color: #ff3366;
}
.cid-s2qQ0QVWeq .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2qQ0QVWeq .body-item {
  text-align: center;
}
.cid-s2qUMLAxi1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s2qUMLAxi1 .mbr-section-subtitle {
  color: #767676;
}
.cid-s2qUMLAxi1 .container-table {
  margin: 0 auto;
}
.cid-s2qUMLAxi1 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2qUMLAxi1 .dataTables_wrapper {
  display: block;
}
.cid-s2qUMLAxi1 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2qUMLAxi1 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2qUMLAxi1 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2qUMLAxi1 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2qUMLAxi1 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2qUMLAxi1 table td {
  border-top: 1px solid #232323;
}
.cid-s2qUMLAxi1 table.table {
  background: #ff3366;
}
.cid-s2qUMLAxi1 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2qUMLAxi1 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2qUMLAxi1 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2qUMLAxi1 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2qUMLAxi1 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2qUMLAxi1 .dataTables_filter {
    text-align: center;
  }
  .cid-s2qUMLAxi1 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2qUMLAxi1 .mbr-section-title {
  color: #ff3366;
}
.cid-s2qUMLAxi1 .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2qUMLAxi1 .body-item {
  text-align: center;
}
.cid-s2r3rGv8Ij {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s2r3rGv8Ij .mbr-section-subtitle {
  color: #767676;
}
.cid-s2r3rGv8Ij .container-table {
  margin: 0 auto;
}
.cid-s2r3rGv8Ij .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2r3rGv8Ij .dataTables_wrapper {
  display: block;
}
.cid-s2r3rGv8Ij .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2r3rGv8Ij .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2r3rGv8Ij table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2r3rGv8Ij table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2r3rGv8Ij table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2r3rGv8Ij table td {
  border-top: 1px solid #232323;
}
.cid-s2r3rGv8Ij table.table {
  background: #ff3366;
}
.cid-s2r3rGv8Ij .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2r3rGv8Ij .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2r3rGv8Ij .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2r3rGv8Ij .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2r3rGv8Ij .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2r3rGv8Ij .dataTables_filter {
    text-align: center;
  }
  .cid-s2r3rGv8Ij .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2r3rGv8Ij .mbr-section-title {
  color: #ff3366;
}
.cid-s2r3rGv8Ij .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2r3rGv8Ij .body-item {
  text-align: center;
}
.cid-s2r3pZT5p3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s2r3pZT5p3 .mbr-section-subtitle {
  color: #767676;
}
.cid-s2r3pZT5p3 .container-table {
  margin: 0 auto;
}
.cid-s2r3pZT5p3 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2r3pZT5p3 .dataTables_wrapper {
  display: block;
}
.cid-s2r3pZT5p3 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2r3pZT5p3 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2r3pZT5p3 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2r3pZT5p3 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2r3pZT5p3 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2r3pZT5p3 table td {
  border-top: 1px solid #232323;
}
.cid-s2r3pZT5p3 table.table {
  background: #ff3366;
}
.cid-s2r3pZT5p3 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2r3pZT5p3 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2r3pZT5p3 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2r3pZT5p3 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2r3pZT5p3 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2r3pZT5p3 .dataTables_filter {
    text-align: center;
  }
  .cid-s2r3pZT5p3 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2r3pZT5p3 .mbr-section-title {
  color: #ff3366;
}
.cid-s2r3pZT5p3 .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2r3pZT5p3 .body-item {
  text-align: center;
}
.cid-s2r3JoqSK3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s2r3JoqSK3 .mbr-section-subtitle {
  color: #767676;
}
.cid-s2r3JoqSK3 .container-table {
  margin: 0 auto;
}
.cid-s2r3JoqSK3 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2r3JoqSK3 .dataTables_wrapper {
  display: block;
}
.cid-s2r3JoqSK3 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2r3JoqSK3 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2r3JoqSK3 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2r3JoqSK3 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2r3JoqSK3 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2r3JoqSK3 table td {
  border-top: 1px solid #232323;
}
.cid-s2r3JoqSK3 table.table {
  background: #ff3366;
}
.cid-s2r3JoqSK3 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2r3JoqSK3 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2r3JoqSK3 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2r3JoqSK3 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2r3JoqSK3 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2r3JoqSK3 .dataTables_filter {
    text-align: center;
  }
  .cid-s2r3JoqSK3 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2r3JoqSK3 .mbr-section-title {
  color: #ff3366;
}
.cid-s2r3JoqSK3 .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2r3JoqSK3 .body-item {
  text-align: center;
}
.cid-s2r3IUsUWM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s2r3IUsUWM .mbr-section-subtitle {
  color: #767676;
}
.cid-s2r3IUsUWM .container-table {
  margin: 0 auto;
}
.cid-s2r3IUsUWM .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2r3IUsUWM .dataTables_wrapper {
  display: block;
}
.cid-s2r3IUsUWM .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2r3IUsUWM .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2r3IUsUWM table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2r3IUsUWM table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2r3IUsUWM table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2r3IUsUWM table td {
  border-top: 1px solid #232323;
}
.cid-s2r3IUsUWM table.table {
  background: #ff3366;
}
.cid-s2r3IUsUWM .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2r3IUsUWM .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2r3IUsUWM .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2r3IUsUWM .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2r3IUsUWM .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2r3IUsUWM .dataTables_filter {
    text-align: center;
  }
  .cid-s2r3IUsUWM .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2r3IUsUWM .mbr-section-title {
  color: #ff3366;
}
.cid-s2r3IUsUWM .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2r3IUsUWM .body-item {
  text-align: center;
}
.cid-s2r3nObyzi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s2r3nObyzi .mbr-section-subtitle {
  color: #767676;
}
.cid-s2r3nObyzi .container-table {
  margin: 0 auto;
}
.cid-s2r3nObyzi .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2r3nObyzi .dataTables_wrapper {
  display: block;
}
.cid-s2r3nObyzi .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2r3nObyzi .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2r3nObyzi table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2r3nObyzi table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2r3nObyzi table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2r3nObyzi table td {
  border-top: 1px solid #232323;
}
.cid-s2r3nObyzi table.table {
  background: #ff3366;
}
.cid-s2r3nObyzi .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2r3nObyzi .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2r3nObyzi .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2r3nObyzi .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2r3nObyzi .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2r3nObyzi .dataTables_filter {
    text-align: center;
  }
  .cid-s2r3nObyzi .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2r3nObyzi .mbr-section-title {
  color: #ff3366;
}
.cid-s2r3nObyzi .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2r3nObyzi .body-item {
  text-align: center;
}
.cid-s2rfa40pfk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s2rfa40pfk .mbr-section-subtitle {
  color: #767676;
}
.cid-s2rfa40pfk .container-table {
  margin: 0 auto;
}
.cid-s2rfa40pfk .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2rfa40pfk .dataTables_wrapper {
  display: block;
}
.cid-s2rfa40pfk .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2rfa40pfk .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2rfa40pfk table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2rfa40pfk table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2rfa40pfk table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2rfa40pfk table td {
  border-top: 1px solid #232323;
}
.cid-s2rfa40pfk table.table {
  background: #ff3366;
}
.cid-s2rfa40pfk .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2rfa40pfk .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2rfa40pfk .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2rfa40pfk .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2rfa40pfk .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2rfa40pfk .dataTables_filter {
    text-align: center;
  }
  .cid-s2rfa40pfk .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2rfa40pfk .mbr-section-title {
  color: #ff3366;
}
.cid-s2rfa40pfk .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2rfa40pfk .body-item {
  text-align: center;
}
.cid-s2rfB9gHqE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s2rfB9gHqE .mbr-section-subtitle {
  color: #767676;
}
.cid-s2rfB9gHqE .container-table {
  margin: 0 auto;
}
.cid-s2rfB9gHqE .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2rfB9gHqE .dataTables_wrapper {
  display: block;
}
.cid-s2rfB9gHqE .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2rfB9gHqE .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2rfB9gHqE table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2rfB9gHqE table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2rfB9gHqE table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2rfB9gHqE table td {
  border-top: 1px solid #232323;
}
.cid-s2rfB9gHqE table.table {
  background: #ff3366;
}
.cid-s2rfB9gHqE .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2rfB9gHqE .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2rfB9gHqE .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2rfB9gHqE .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2rfB9gHqE .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2rfB9gHqE .dataTables_filter {
    text-align: center;
  }
  .cid-s2rfB9gHqE .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2rfB9gHqE .mbr-section-title {
  color: #ff3366;
}
.cid-s2rfB9gHqE .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2rfB9gHqE .body-item {
  text-align: center;
}
.cid-s2qPOviYRv {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s2qPOviYRv .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2qPOviYRv div.b {
  padding-top: 2rem;
}
.cid-s2lkS33l0e {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2lkS33l0e .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2lkS33l0e .section-text {
  padding: 2rem 0;
}
.cid-s2lkS33l0e .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2lkS33l0e .inner-container {
    width: 100% !important;
  }
}
.cid-uEN4hA6ea6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-uEN4hA6ea6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uEN4hA6ea6 .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #232323;
}
.cid-uEN4hA6ea6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uEN4hA6ea6 .inner-container {
    width: 100% !important;
  }
}
.cid-uFx2maSMaS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-uFx2maSMaS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFx2maSMaS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFx2maSMaS .row {
  justify-content: center;
}
.cid-uFx2maSMaS .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFx2maSMaS .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFx2maSMaS .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFx2maSMaS .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFx2maSMaS .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFx2maSMaS .mbr-text_1,
.cid-uFx2maSMaS .mbr-text_2,
.cid-uFx2maSMaS .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFx2maSMaS .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFx2maSMaS .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFx2maSMaS .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFx2maSMaS .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFx2maSMaS .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFx2maSMaS .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFx2maSMaS .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFx2maSMaS .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFx2maSMaS .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFx2maSMaS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFx2maSMaS .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uFx2maSMaS .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFx2maSMaS .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHjWZiAgO4 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-uHjWZiAgO4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjWZiAgO4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjWZiAgO4 .row {
  justify-content: center;
}
.cid-uHjWZiAgO4 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjWZiAgO4 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjWZiAgO4 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjWZiAgO4 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjWZiAgO4 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjWZiAgO4 .mbr-text_1,
.cid-uHjWZiAgO4 .mbr-text_2,
.cid-uHjWZiAgO4 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjWZiAgO4 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjWZiAgO4 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjWZiAgO4 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjWZiAgO4 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjWZiAgO4 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjWZiAgO4 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjWZiAgO4 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjWZiAgO4 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjWZiAgO4 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjWZiAgO4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjWZiAgO4 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjWZiAgO4 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjWZiAgO4 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uEN46aK5DI {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #3bec15;
}
.cid-uEN46aK5DI .mbr-text {
  color: #232323;
}
.cid-uEN46aK5DI .mbr-text p {
  background: #3bec15;
}
.cid-uFPorug3ff {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-uFPorug3ff .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uFPorug3ff .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #232323;
}
.cid-uFPorug3ff .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uFPorug3ff .inner-container {
    width: 100% !important;
  }
}
.cid-uFPmHfmno1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-uFPmHfmno1 .mbr-section-subtitle {
  color: #767676;
}
.cid-uFPmHfmno1 .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uFPmHfmno1 .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-uFPmHfmno1 .team-item .item-image img {
  width: 100%;
}
.cid-uFPmHfmno1 .team-item .item-name p {
  margin-bottom: 0;
}
.cid-uFPmHfmno1 .team-item .item-role p {
  margin-bottom: 0;
}
.cid-uFPmHfmno1 .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-uFPmHfmno1 .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-uFPmHfmno1 .team-item .item-caption {
  background: #ffffff;
}
.cid-uFPmJvPsEz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3bec15;
}
.cid-uFPmJvPsEz .mbr-section-subtitle {
  color: #767676;
}
.cid-uFPmJvPsEz .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uFPmJvPsEz .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-uFPmJvPsEz .team-item .item-image img {
  width: 100%;
}
.cid-uFPmJvPsEz .team-item .item-name p {
  margin-bottom: 0;
}
.cid-uFPmJvPsEz .team-item .item-role p {
  margin-bottom: 0;
}
.cid-uFPmJvPsEz .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-uFPmJvPsEz .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-uFPmJvPsEz .team-item .item-caption {
  background: #efefef;
}
.cid-uFPmJvPsEz .item-name {
  text-align: center;
}
.cid-uFPmKFTfbT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3bec15;
}
.cid-uFPmKFTfbT .mbr-section-subtitle {
  color: #767676;
}
.cid-uFPmKFTfbT .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uFPmKFTfbT .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-uFPmKFTfbT .team-item .item-image img {
  width: 100%;
}
.cid-uFPmKFTfbT .team-item .item-name p {
  margin-bottom: 0;
}
.cid-uFPmKFTfbT .team-item .item-role p {
  margin-bottom: 0;
}
.cid-uFPmKFTfbT .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-uFPmKFTfbT .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-uFPmKFTfbT .team-item .item-caption {
  background: #efefef;
}
.cid-uFPmLLVTg8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3bec15;
}
.cid-uFPmLLVTg8 .mbr-section-subtitle {
  color: #767676;
}
.cid-uFPmLLVTg8 .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uFPmLLVTg8 .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-uFPmLLVTg8 .team-item .item-image img {
  width: 100%;
}
.cid-uFPmLLVTg8 .team-item .item-name p {
  margin-bottom: 0;
}
.cid-uFPmLLVTg8 .team-item .item-role p {
  margin-bottom: 0;
}
.cid-uFPmLLVTg8 .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-uFPmLLVTg8 .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-uFPmLLVTg8 .team-item .item-caption {
  background: #efefef;
}
.cid-uFPmMLXUzn {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #3bec15;
}
.cid-uFPmMLXUzn .mbr-section-subtitle {
  color: #767676;
}
.cid-uFPmMLXUzn .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uFPmMLXUzn .team-item {
  transition: all .2s;
  margin-bottom: 2rem;
}
.cid-uFPmMLXUzn .team-item .item-image img {
  width: 100%;
}
.cid-uFPmMLXUzn .team-item .item-name p {
  margin-bottom: 0;
}
.cid-uFPmMLXUzn .team-item .item-role p {
  margin-bottom: 0;
}
.cid-uFPmMLXUzn .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-uFPmMLXUzn .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-uFPmMLXUzn .team-item .item-caption {
  background: #efefef;
}
.cid-s2mT85kJzL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-s2mT85kJzL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2mT85kJzL .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2mT85kJzL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2mT85kJzL .inner-container {
    width: 100% !important;
  }
}
.cid-shqiluvKJH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-shqiluvKJH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shqiluvKJH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shqiluvKJH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shqiluvKJH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shqiluvKJH .row > .row {
  display: block;
}
.cid-shqiluvKJH .mbr-gallery-item {
  width: 100%;
}
.cid-shqiluvKJH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shqiluvKJH .mbr-gallery-item > div {
  position: relative;
}
.cid-shqiluvKJH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shqiluvKJH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shqiluvKJH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shqiluvKJH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uIDYysqw09 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3bec15;
}
.cid-uIDYysqw09 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIDYysqw09 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIDYysqw09 .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uIDYysqw09 .google-map {
    margin-bottom: 48px;
  }
}
.cid-uIDYysqw09 .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uIDYysqw09 .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uIDYysqw09 .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-uIDYysqw09 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uIDYysqw09 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uIDYysqw09 .list-wrapper .list .item-wrap:hover,
.cid-uIDYysqw09 .list-wrapper .list .item-wrap:focus {
  color: #ff3366;
}
.cid-uIDYysqw09 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uIDYysqw09 .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uIDYysqw09 .social-wrapper {
    text-align: left;
  }
}
.cid-uIDYysqw09 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uIDYysqw09 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uIDYysqw09 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uIDYysqw09 .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #ff3366;
}
.cid-uIDYysqw09 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uIDYysqw09 .list,
.cid-uIDYysqw09 .item-wrap,
.cid-uIDYysqw09 .social-wrapper {
  color: #fdfde1;
}
.cid-tvxVBdTVVk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-tvxVBdTVVk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tvxVBdTVVk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tvxVBdTVVk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tvxVBdTVVk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tvxVBdTVVk .row > .row {
  display: block;
}
.cid-tvxVBdTVVk .mbr-gallery-item {
  width: 100%;
}
.cid-tvxVBdTVVk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tvxVBdTVVk .mbr-gallery-item > div {
  position: relative;
}
.cid-tvxVBdTVVk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tvxVBdTVVk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tvxVBdTVVk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tvxVBdTVVk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ujIa4iuXN3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-ujIa4iuXN3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ujIa4iuXN3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ujIa4iuXN3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ujIa4iuXN3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ujIa4iuXN3 .row > .row {
  display: block;
}
.cid-ujIa4iuXN3 .mbr-gallery-item {
  width: 100%;
}
.cid-ujIa4iuXN3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-ujIa4iuXN3 .mbr-gallery-item > div {
  position: relative;
}
.cid-ujIa4iuXN3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ujIa4iuXN3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-ujIa4iuXN3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-ujIa4iuXN3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2mVSFUk0p {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2mVSFUk0p .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
  text-align: left;
}
.cid-s2mVSFUk0p div.b {
  padding-top: 2rem;
}
.cid-s2mVSFUk0p H2 {
  text-align: center;
}
.cid-s2ls5nu4TE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2ls5nu4TE .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2ls5nu4TE .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2ls5nu4TE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2ls5nu4TE .inner-container {
    width: 100% !important;
  }
}
.cid-uFIJWanNZ5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uFIJWanNZ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFIJWanNZ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFIJWanNZ5 .row {
  justify-content: center;
}
.cid-uFIJWanNZ5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFIJWanNZ5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFIJWanNZ5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFIJWanNZ5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFIJWanNZ5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFIJWanNZ5 .mbr-text_1,
.cid-uFIJWanNZ5 .mbr-text_2,
.cid-uFIJWanNZ5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFIJWanNZ5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIJWanNZ5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFIJWanNZ5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFIJWanNZ5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFIJWanNZ5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIJWanNZ5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFIJWanNZ5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFIJWanNZ5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIJWanNZ5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFIJWanNZ5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFIJWanNZ5 .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-uFIJWanNZ5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFIJWanNZ5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uFIJXAAMwd {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uFIJXAAMwd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFIJXAAMwd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFIJXAAMwd .row {
  justify-content: center;
}
.cid-uFIJXAAMwd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFIJXAAMwd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFIJXAAMwd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFIJXAAMwd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFIJXAAMwd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFIJXAAMwd .mbr-text_1,
.cid-uFIJXAAMwd .mbr-text_2,
.cid-uFIJXAAMwd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFIJXAAMwd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIJXAAMwd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFIJXAAMwd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uFIJXAAMwd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uFIJXAAMwd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIJXAAMwd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFIJXAAMwd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFIJXAAMwd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIJXAAMwd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uFIJXAAMwd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFIJXAAMwd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uFIJXAAMwd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFIJXAAMwd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4PStj7GAZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s4PStj7GAZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4PStj7GAZ .section-text {
  padding: 2rem 0;
}
.cid-s4PStj7GAZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4PStj7GAZ .inner-container {
    width: 100% !important;
  }
}
.cid-uHjXsgnCoX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uHjXsgnCoX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjXsgnCoX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjXsgnCoX .row {
  justify-content: center;
}
.cid-uHjXsgnCoX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjXsgnCoX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjXsgnCoX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjXsgnCoX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjXsgnCoX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjXsgnCoX .mbr-text_1,
.cid-uHjXsgnCoX .mbr-text_2,
.cid-uHjXsgnCoX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjXsgnCoX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjXsgnCoX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #db4af7;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjXsgnCoX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-uHjXsgnCoX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-uHjXsgnCoX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjXsgnCoX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #db4af7;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjXsgnCoX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #db4af7;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjXsgnCoX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjXsgnCoX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-uHjXsgnCoX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjXsgnCoX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjXsgnCoX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjXsgnCoX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2ls5nXRug {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2ls5nXRug .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2ls5nXRug .section-text {
  padding: 2rem 0;
}
.cid-s2ls5nXRug .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2ls5nXRug .inner-container {
    width: 100% !important;
  }
}
.cid-s2lB3UVe8K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-s2lB3UVe8K .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2lB3UVe8K .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2lB3UVe8K .mbr-text {
  color: #ff3366;
  text-align: center;
}
.cid-s2lC5JR33d {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-s2lC5JR33d .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2lC5JR33d .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2lC5JR33d .mbr-text {
  color: #ff3366;
  text-align: center;
}
.cid-s2lC2VzwTx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-s2lC2VzwTx .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2lC2VzwTx .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2lC2VzwTx .mbr-text {
  color: #ff3366;
  text-align: center;
}
.cid-spcwpNJley {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-spcwpNJley .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-spcwpNJley .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-spcwpNJley .mbr-text {
  color: #ff3366;
  text-align: center;
}
.cid-s2lDE3d0vA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-s2lDE3d0vA .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2lDE3d0vA .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2lDE3d0vA .mbr-text {
  color: #ff3366;
  text-align: center;
}
.cid-s2lDDndCVJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-s2lDDndCVJ .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2lDDndCVJ .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2lDDndCVJ .mbr-text {
  color: #ff3366;
  text-align: center;
}
.cid-s2lDCEOvnK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-s2lDCEOvnK .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2lDCEOvnK .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2lDCEOvnK .mbr-text {
  color: #ff3366;
  text-align: center;
}
.cid-s2lGYZvXRw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-s2lGYZvXRw .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2lGYZvXRw .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2lGYZvXRw .mbr-text {
  color: #ff3366;
  text-align: center;
}
.cid-s2tF9OdsR0 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s2tF9OdsR0 .mbr-text {
  color: #45505b;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2tF9OdsR0 div.b {
  padding-top: 2rem;
}
.cid-s2tF9OdsR0 H5 {
  color: #232323;
}
.cid-s2lsjmNTbt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2lsjmNTbt .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2lsjmNTbt .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2lsjmNTbt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2lsjmNTbt .inner-container {
    width: 100% !important;
  }
}
.cid-uGf029OJ5R {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGf029OJ5R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGf029OJ5R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGf029OJ5R .row {
  justify-content: center;
}
.cid-uGf029OJ5R .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uGf029OJ5R .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uGf029OJ5R .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uGf029OJ5R .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uGf029OJ5R .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uGf029OJ5R .mbr-text_1,
.cid-uGf029OJ5R .mbr-text_2,
.cid-uGf029OJ5R .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uGf029OJ5R .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf029OJ5R .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uGf029OJ5R .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-uGf029OJ5R .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-uGf029OJ5R .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf029OJ5R .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uGf029OJ5R .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uGf029OJ5R .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf029OJ5R .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-uGf029OJ5R .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGf029OJ5R .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-uGf029OJ5R .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uGf029OJ5R .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uGf03i9GBM {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uGf03i9GBM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGf03i9GBM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGf03i9GBM .row {
  justify-content: center;
}
.cid-uGf03i9GBM .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uGf03i9GBM .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uGf03i9GBM .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uGf03i9GBM .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uGf03i9GBM .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uGf03i9GBM .mbr-text_1,
.cid-uGf03i9GBM .mbr-text_2,
.cid-uGf03i9GBM .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uGf03i9GBM .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #11aaec;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf03i9GBM .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #11aaec;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uGf03i9GBM .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #11aaec;
}
.cid-uGf03i9GBM .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #11aaec;
}
.cid-uGf03i9GBM .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #11aaec;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf03i9GBM .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #11aaec;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uGf03i9GBM .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #11aaec;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uGf03i9GBM .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #11aaec;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf03i9GBM .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #11aaec;
}
.cid-uGf03i9GBM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGf03i9GBM .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uGf03i9GBM .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uGf03i9GBM .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2tLb4NDTu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2tLb4NDTu .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2tLb4NDTu .section-text {
  padding: 2rem 0;
}
.cid-s2tLb4NDTu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2tLb4NDTu .inner-container {
    width: 100% !important;
  }
}
.cid-uGf0IF1EqY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGf0IF1EqY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGf0IF1EqY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGf0IF1EqY .row {
  justify-content: center;
}
.cid-uGf0IF1EqY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uGf0IF1EqY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uGf0IF1EqY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uGf0IF1EqY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uGf0IF1EqY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uGf0IF1EqY .mbr-text_1,
.cid-uGf0IF1EqY .mbr-text_2,
.cid-uGf0IF1EqY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uGf0IF1EqY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf0IF1EqY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ff3366;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uGf0IF1EqY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ff3366;
}
.cid-uGf0IF1EqY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ff3366;
}
.cid-uGf0IF1EqY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf0IF1EqY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ff3366;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uGf0IF1EqY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ff3366;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uGf0IF1EqY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf0IF1EqY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ff3366;
}
.cid-uGf0IF1EqY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGf0IF1EqY .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-uGf0IF1EqY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uGf0IF1EqY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHjXJPsTrG {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uHjXJPsTrG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjXJPsTrG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjXJPsTrG .row {
  justify-content: center;
}
.cid-uHjXJPsTrG .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjXJPsTrG .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjXJPsTrG .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjXJPsTrG .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjXJPsTrG .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjXJPsTrG .mbr-text_1,
.cid-uHjXJPsTrG .mbr-text_2,
.cid-uHjXJPsTrG .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjXJPsTrG .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjXJPsTrG .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ff3366;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjXJPsTrG .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ff3366;
}
.cid-uHjXJPsTrG .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ff3366;
}
.cid-uHjXJPsTrG .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjXJPsTrG .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ff3366;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjXJPsTrG .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ff3366;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjXJPsTrG .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjXJPsTrG .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ff3366;
}
.cid-uHjXJPsTrG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjXJPsTrG .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjXJPsTrG .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjXJPsTrG .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2lsjnfzby {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2lsjnfzby .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2lsjnfzby .section-text {
  padding: 2rem 0;
}
.cid-s2lsjnfzby .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2lsjnfzby .inner-container {
    width: 100% !important;
  }
}
.cid-s2tLtBNJdS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2tLtBNJdS .mbr-section-subtitle {
  color: #767676;
}
.cid-s2tLtBNJdS .container-table {
  margin: 0 auto;
}
.cid-s2tLtBNJdS .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2tLtBNJdS .dataTables_wrapper {
  display: block;
}
.cid-s2tLtBNJdS .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2tLtBNJdS .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2tLtBNJdS table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2tLtBNJdS table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2tLtBNJdS table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2tLtBNJdS table td {
  border-top: 1px solid #232323;
}
.cid-s2tLtBNJdS table.table {
  background: #ffffff;
}
.cid-s2tLtBNJdS .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2tLtBNJdS .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2tLtBNJdS .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2tLtBNJdS .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2tLtBNJdS .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2tLtBNJdS .dataTables_filter {
    text-align: center;
  }
  .cid-s2tLtBNJdS .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2tLtBNJdS .mbr-section-title {
  color: #ff3366;
}
.cid-s2tLtBNJdS .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2tLtBNJdS .body-item {
  text-align: center;
}
.cid-s2tL9AY1P3 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s2tL9AY1P3 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2tL9AY1P3 div.b {
  padding-top: 2rem;
}
.cid-s2tL9AY1P3 H5 {
  color: #232323;
}
.cid-s2tL9AY1P3 H2 {
  text-align: center;
}
.cid-s2lsnJwwww {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2lsnJwwww .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2lsnJwwww .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-s2lsnJwwww .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2lsnJwwww .inner-container {
    width: 100% !important;
  }
}
.cid-uFxjzHQ9mK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uFxjzHQ9mK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFxjzHQ9mK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFxjzHQ9mK .row {
  justify-content: center;
}
.cid-uFxjzHQ9mK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFxjzHQ9mK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFxjzHQ9mK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFxjzHQ9mK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFxjzHQ9mK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFxjzHQ9mK .mbr-text_1,
.cid-uFxjzHQ9mK .mbr-text_2,
.cid-uFxjzHQ9mK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFxjzHQ9mK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFxjzHQ9mK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFxjzHQ9mK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFxjzHQ9mK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFxjzHQ9mK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFxjzHQ9mK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFxjzHQ9mK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFxjzHQ9mK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFxjzHQ9mK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFxjzHQ9mK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFxjzHQ9mK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uFxjzHQ9mK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFxjzHQ9mK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHjY33Bgan {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uHjY33Bgan .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjY33Bgan .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjY33Bgan .row {
  justify-content: center;
}
.cid-uHjY33Bgan .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjY33Bgan .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjY33Bgan .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjY33Bgan .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjY33Bgan .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjY33Bgan .mbr-text_1,
.cid-uHjY33Bgan .mbr-text_2,
.cid-uHjY33Bgan .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjY33Bgan .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjY33Bgan .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjY33Bgan .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-uHjY33Bgan .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-uHjY33Bgan .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjY33Bgan .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjY33Bgan .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjY33Bgan .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjY33Bgan .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-uHjY33Bgan .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjY33Bgan .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjY33Bgan .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjY33Bgan .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uGf3OilrTl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uGf3OilrTl .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uGf3OilrTl .section-text {
  padding: 2rem 0;
}
.cid-uGf3OilrTl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uGf3OilrTl .inner-container {
    width: 100% !important;
  }
}
.cid-uGf3Sk8QyW {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uGf3Sk8QyW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGf3Sk8QyW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGf3Sk8QyW .row {
  justify-content: center;
}
.cid-uGf3Sk8QyW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uGf3Sk8QyW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uGf3Sk8QyW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uGf3Sk8QyW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uGf3Sk8QyW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uGf3Sk8QyW .mbr-text_1,
.cid-uGf3Sk8QyW .mbr-text_2,
.cid-uGf3Sk8QyW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uGf3Sk8QyW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf3Sk8QyW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uGf3Sk8QyW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-uGf3Sk8QyW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-uGf3Sk8QyW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf3Sk8QyW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uGf3Sk8QyW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uGf3Sk8QyW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf3Sk8QyW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-uGf3Sk8QyW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGf3Sk8QyW .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-uGf3Sk8QyW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uGf3Sk8QyW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJzTT8hCU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJzTT8hCU .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJzTT8hCU .container-table {
  margin: 0 auto;
}
.cid-tJJzTT8hCU .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJzTT8hCU .dataTables_wrapper {
  display: block;
}
.cid-tJJzTT8hCU .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJzTT8hCU .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJzTT8hCU table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJzTT8hCU table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJzTT8hCU table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJzTT8hCU table td {
  border-top: 1px solid #232323;
}
.cid-tJJzTT8hCU table.table {
  background: #ffffff;
}
.cid-tJJzTT8hCU .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJzTT8hCU .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJzTT8hCU .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJzTT8hCU .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJzTT8hCU .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJzTT8hCU .dataTables_filter {
    text-align: center;
  }
  .cid-tJJzTT8hCU .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJzTT8hCU .mbr-section-title {
  color: #ff3366;
}
.cid-tJJzTT8hCU .head-item {
  text-align: center;
}
.cid-tJJzTT8hCU .body-item {
  text-align: center;
}
.cid-s2t0kTMWgd {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2t0kTMWgd .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2t0kTMWgd div.b {
  padding-top: 2rem;
}
.cid-s2lspZhCVX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2lspZhCVX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2lspZhCVX .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2lspZhCVX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2lspZhCVX .inner-container {
    width: 100% !important;
  }
}
.cid-uGf30zUCCt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGf30zUCCt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGf30zUCCt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGf30zUCCt .row {
  justify-content: center;
}
.cid-uGf30zUCCt .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uGf30zUCCt .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uGf30zUCCt .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uGf30zUCCt .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uGf30zUCCt .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uGf30zUCCt .mbr-text_1,
.cid-uGf30zUCCt .mbr-text_2,
.cid-uGf30zUCCt .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uGf30zUCCt .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf30zUCCt .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uGf30zUCCt .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uGf30zUCCt .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uGf30zUCCt .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf30zUCCt .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uGf30zUCCt .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uGf30zUCCt .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf30zUCCt .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uGf30zUCCt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGf30zUCCt .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-uGf30zUCCt .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uGf30zUCCt .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHjYmugdzT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uHjYmugdzT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjYmugdzT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjYmugdzT .row {
  justify-content: center;
}
.cid-uHjYmugdzT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjYmugdzT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjYmugdzT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjYmugdzT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjYmugdzT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjYmugdzT .mbr-text_1,
.cid-uHjYmugdzT .mbr-text_2,
.cid-uHjYmugdzT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjYmugdzT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjYmugdzT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjYmugdzT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-uHjYmugdzT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-uHjYmugdzT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjYmugdzT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjYmugdzT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjYmugdzT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjYmugdzT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-uHjYmugdzT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjYmugdzT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjYmugdzT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjYmugdzT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uGf4pwph1D {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uGf4pwph1D .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uGf4pwph1D .section-text {
  padding: 2rem 0;
}
.cid-uGf4pwph1D .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uGf4pwph1D .inner-container {
    width: 100% !important;
  }
}
.cid-uGf4qY9uZj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGf4qY9uZj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGf4qY9uZj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGf4qY9uZj .row {
  justify-content: center;
}
.cid-uGf4qY9uZj .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uGf4qY9uZj .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uGf4qY9uZj .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uGf4qY9uZj .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uGf4qY9uZj .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uGf4qY9uZj .mbr-text_1,
.cid-uGf4qY9uZj .mbr-text_2,
.cid-uGf4qY9uZj .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uGf4qY9uZj .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf4qY9uZj .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uGf4qY9uZj .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-uGf4qY9uZj .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-uGf4qY9uZj .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf4qY9uZj .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uGf4qY9uZj .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uGf4qY9uZj .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uGf4qY9uZj .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-uGf4qY9uZj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGf4qY9uZj .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-uGf4qY9uZj .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uGf4qY9uZj .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2sUbjrwKy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2sUbjrwKy .mbr-section-subtitle {
  color: #767676;
}
.cid-s2sUbjrwKy .container-table {
  margin: 0 auto;
}
.cid-s2sUbjrwKy .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2sUbjrwKy .dataTables_wrapper {
  display: block;
}
.cid-s2sUbjrwKy .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2sUbjrwKy .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2sUbjrwKy table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2sUbjrwKy table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2sUbjrwKy table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2sUbjrwKy table td {
  border-top: 1px solid #232323;
}
.cid-s2sUbjrwKy table.table {
  background: #ffffff;
}
.cid-s2sUbjrwKy .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2sUbjrwKy .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2sUbjrwKy .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2sUbjrwKy .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2sUbjrwKy .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2sUbjrwKy .dataTables_filter {
    text-align: center;
  }
  .cid-s2sUbjrwKy .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2sUbjrwKy .mbr-section-title {
  color: #232323;
}
.cid-s2sUbjrwKy .head-item {
  text-align: center;
  color: #496ede;
}
.cid-s2sUbjrwKy .body-item {
  text-align: center;
}
.cid-s2sUqqkXvO {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s2sUqqkXvO .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2sUqqkXvO div.b {
  padding-top: 2rem;
}
.cid-s2lsN1R352 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ff7f9f;
}
.cid-s2lsN1R352 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2lsN1R352 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2lsN1R352 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2lsN1R352 .inner-container {
    width: 100% !important;
  }
}
.cid-uFy0yxSwk9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ff7f9f;
}
.cid-uFy0yxSwk9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFy0yxSwk9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFy0yxSwk9 .row {
  justify-content: center;
}
.cid-uFy0yxSwk9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFy0yxSwk9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFy0yxSwk9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFy0yxSwk9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFy0yxSwk9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFy0yxSwk9 .mbr-text_1,
.cid-uFy0yxSwk9 .mbr-text_2,
.cid-uFy0yxSwk9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFy0yxSwk9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy0yxSwk9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFy0yxSwk9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy0yxSwk9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy0yxSwk9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy0yxSwk9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFy0yxSwk9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFy0yxSwk9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy0yxSwk9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFy0yxSwk9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFy0yxSwk9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uFy0yxSwk9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFy0yxSwk9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHjYz2Tos5 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ff7f9f;
}
.cid-uHjYz2Tos5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjYz2Tos5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjYz2Tos5 .row {
  justify-content: center;
}
.cid-uHjYz2Tos5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjYz2Tos5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjYz2Tos5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjYz2Tos5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjYz2Tos5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjYz2Tos5 .mbr-text_1,
.cid-uHjYz2Tos5 .mbr-text_2,
.cid-uHjYz2Tos5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjYz2Tos5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjYz2Tos5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjYz2Tos5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjYz2Tos5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjYz2Tos5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjYz2Tos5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjYz2Tos5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjYz2Tos5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjYz2Tos5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjYz2Tos5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjYz2Tos5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjYz2Tos5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjYz2Tos5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2lsN2nxVY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ff7f9f;
}
.cid-s2lsN2nxVY .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2lsN2nxVY .section-text {
  padding: 2rem 0;
}
.cid-s2lsN2nxVY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2lsN2nxVY .inner-container {
    width: 100% !important;
  }
}
.cid-s2lsN2wqc3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ff7f9f;
}
.cid-s2lsN2wqc3 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2lsN2wqc3 .section-text {
  padding: 2rem 0;
}
.cid-s2lsN2wqc3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2lsN2wqc3 .inner-container {
    width: 100% !important;
  }
}
.cid-s2tQjk47na {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ff7f9f;
}
.cid-s2tQjk47na .mbr-section-subtitle {
  color: #767676;
}
.cid-s2tQjk47na .container-table {
  margin: 0 auto;
}
.cid-s2tQjk47na .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2tQjk47na .dataTables_wrapper {
  display: block;
}
.cid-s2tQjk47na .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2tQjk47na .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2tQjk47na table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2tQjk47na table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2tQjk47na table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2tQjk47na table td {
  border-top: 1px solid #232323;
}
.cid-s2tQjk47na table.table {
  background: #ff7f9f;
}
.cid-s2tQjk47na .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2tQjk47na .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2tQjk47na .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2tQjk47na .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2tQjk47na .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2tQjk47na .dataTables_filter {
    text-align: center;
  }
  .cid-s2tQjk47na .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2tQjk47na .mbr-section-title {
  color: #ff3366;
}
.cid-s2tQjk47na .head-item {
  text-align: center;
  color: #232323;
}
.cid-s2tQjk47na .body-item {
  text-align: center;
}
.cid-s2tQnq05E1 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ff7f9f;
}
.cid-s2tQnq05E1 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2tQnq05E1 div.b {
  padding-top: 2rem;
}
.cid-s2tQnq05E1 H5 {
  color: #232323;
}
.cid-s2tQnq05E1 H2 {
  text-align: center;
}
.cid-s2n2g89XyL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2n2g89XyL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2n2g89XyL .section-text {
  padding: 2rem 0;
}
.cid-s2n2g89XyL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2n2g89XyL .inner-container {
    width: 100% !important;
  }
}
.cid-vbh1IFfF1X {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-vbh1IFfF1X .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh1IFfF1X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh1IFfF1X .row {
  justify-content: center;
}
.cid-vbh1IFfF1X .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh1IFfF1X .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh1IFfF1X .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh1IFfF1X .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh1IFfF1X .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh1IFfF1X .mbr-text_1,
.cid-vbh1IFfF1X .mbr-text_2,
.cid-vbh1IFfF1X .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh1IFfF1X .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1IFfF1X .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1IFfF1X .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh1IFfF1X .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh1IFfF1X .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1IFfF1X .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1IFfF1X .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh1IFfF1X .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1IFfF1X .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh1IFfF1X .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh1IFfF1X .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh1IFfF1X .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh1IFfF1X .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vbh1JFtpx8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-vbh1JFtpx8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh1JFtpx8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh1JFtpx8 .row {
  justify-content: center;
}
.cid-vbh1JFtpx8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh1JFtpx8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh1JFtpx8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh1JFtpx8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh1JFtpx8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh1JFtpx8 .mbr-text_1,
.cid-vbh1JFtpx8 .mbr-text_2,
.cid-vbh1JFtpx8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh1JFtpx8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1JFtpx8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1JFtpx8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh1JFtpx8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh1JFtpx8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1JFtpx8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1JFtpx8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh1JFtpx8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1JFtpx8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh1JFtpx8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh1JFtpx8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh1JFtpx8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh1JFtpx8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sl7cI89Khf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-sl7cJn5NaI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sl7cJn5NaI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sl7cJn5NaI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sl7cJn5NaI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sl7cJn5NaI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sl7cJn5NaI .row > .row {
  display: block;
}
.cid-sl7cJn5NaI .mbr-gallery-item {
  width: 100%;
}
.cid-sl7cJn5NaI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sl7cJn5NaI .mbr-gallery-item > div {
  position: relative;
}
.cid-sl7cJn5NaI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sl7cJn5NaI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sl7cJn5NaI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sl7cJn5NaI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2n4fQznVb {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2n4fQznVb .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2n4fQznVb div.b {
  padding-top: 2rem;
}
.cid-s2nzp0q74U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3bec15;
}
.cid-s2nzp0q74U .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2nzp0q74U .section-text {
  padding: 2rem 0;
}
.cid-s2nzp0q74U .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2nzp0q74U .inner-container {
    width: 100% !important;
  }
}
.cid-vbh30FANxV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-vbh30FANxV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh30FANxV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh30FANxV .row {
  justify-content: center;
}
.cid-vbh30FANxV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh30FANxV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh30FANxV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh30FANxV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh30FANxV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh30FANxV .mbr-text_1,
.cid-vbh30FANxV .mbr-text_2,
.cid-vbh30FANxV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh30FANxV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh30FANxV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh30FANxV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh30FANxV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh30FANxV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh30FANxV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh30FANxV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh30FANxV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh30FANxV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh30FANxV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh30FANxV .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh30FANxV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh30FANxV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vbh31EwsB6 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-vbh31EwsB6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh31EwsB6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh31EwsB6 .row {
  justify-content: center;
}
.cid-vbh31EwsB6 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh31EwsB6 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh31EwsB6 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh31EwsB6 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh31EwsB6 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh31EwsB6 .mbr-text_1,
.cid-vbh31EwsB6 .mbr-text_2,
.cid-vbh31EwsB6 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh31EwsB6 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh31EwsB6 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh31EwsB6 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh31EwsB6 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh31EwsB6 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh31EwsB6 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh31EwsB6 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh31EwsB6 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh31EwsB6 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh31EwsB6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh31EwsB6 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh31EwsB6 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh31EwsB6 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sl9k4aBxaE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-sl9k59HE5s {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sl9k59HE5s .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sl9k59HE5s .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sl9k59HE5s .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sl9k59HE5s .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sl9k59HE5s .row > .row {
  display: block;
}
.cid-sl9k59HE5s .mbr-gallery-item {
  width: 100%;
}
.cid-sl9k59HE5s .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sl9k59HE5s .mbr-gallery-item > div {
  position: relative;
}
.cid-sl9k59HE5s .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sl9k59HE5s .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sl9k59HE5s .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sl9k59HE5s .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2nzp1YasT {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2nzp1YasT .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2nzp1YasT div.b {
  padding-top: 2rem;
}
.cid-s2nBwhvFyH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2nBwhvFyH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2nBwhvFyH .section-text {
  padding: 2rem 0;
}
.cid-s2nBwhvFyH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2nBwhvFyH .inner-container {
    width: 100% !important;
  }
}
.cid-vbh2mUbr5Y {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-vbh2mUbr5Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh2mUbr5Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh2mUbr5Y .row {
  justify-content: center;
}
.cid-vbh2mUbr5Y .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh2mUbr5Y .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh2mUbr5Y .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh2mUbr5Y .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh2mUbr5Y .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh2mUbr5Y .mbr-text_1,
.cid-vbh2mUbr5Y .mbr-text_2,
.cid-vbh2mUbr5Y .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh2mUbr5Y .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2mUbr5Y .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2mUbr5Y .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2mUbr5Y .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2mUbr5Y .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2mUbr5Y .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2mUbr5Y .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh2mUbr5Y .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2mUbr5Y .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2mUbr5Y .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh2mUbr5Y .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh2mUbr5Y .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh2mUbr5Y .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vbh2o5iywL {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-vbh2o5iywL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh2o5iywL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh2o5iywL .row {
  justify-content: center;
}
.cid-vbh2o5iywL .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh2o5iywL .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh2o5iywL .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh2o5iywL .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh2o5iywL .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh2o5iywL .mbr-text_1,
.cid-vbh2o5iywL .mbr-text_2,
.cid-vbh2o5iywL .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh2o5iywL .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2o5iywL .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2o5iywL .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2o5iywL .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2o5iywL .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2o5iywL .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2o5iywL .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh2o5iywL .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2o5iywL .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2o5iywL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh2o5iywL .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh2o5iywL .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh2o5iywL .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sl9cB368mI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-sl9cCao09a {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sl9cCao09a .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sl9cCao09a .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sl9cCao09a .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sl9cCao09a .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sl9cCao09a .row > .row {
  display: block;
}
.cid-sl9cCao09a .mbr-gallery-item {
  width: 100%;
}
.cid-sl9cCao09a .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sl9cCao09a .mbr-gallery-item > div {
  position: relative;
}
.cid-sl9cCao09a .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sl9cCao09a .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sl9cCao09a .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sl9cCao09a .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uye9HKpcET {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-uye9HKpcET .mbr-section-subtitle {
  color: #232323;
  font-weight: 300;
}
.cid-uye9HKpcET .number-wrap {
  color: #232323;
  border-color: rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 15px 13px 10px;
  margin: 0;
  min-width: 118px;
  border-radius: 2px;
  max-width: 100%;
}
.cid-uye9HKpcET .number {
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #232323;
}
.cid-uye9HKpcET .period {
  display: block;
  padding-top: 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-uye9HKpcET .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: block;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  font-size: 5px;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #232323;
}
.cid-uye9HKpcET .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uye9HKpcET .dot {
    display: none;
  }
}
@media (max-width: 543px) {
  .cid-uye9HKpcET .number-wrap {
    margin-bottom: 15px;
  }
}
@media (max-width: 550px) {
  .cid-uye9HKpcET .col-xs-3 {
    padding-left: 0;
    padding-right: 0;
    max-width: 25%;
    flex: 0 0 25%;
  }
  .cid-uye9HKpcET .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-uye9HKpcET .number,
  .cid-uye9HKpcET .dot {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-uye9HKpcET .period {
    font-size: 0.8rem;
  }
}
.cid-uye9HKpcET H2 {
  color: #232323;
  text-align: center;
}
.cid-s2nBwiOw8t {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2nBwiOw8t .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2nBwiOw8t div.b {
  padding-top: 2rem;
}
.cid-s2xfmLY25s {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2xfmLY25s .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2xfmLY25s .section-text {
  padding: 2rem 0;
}
.cid-s2xfmLY25s .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2xfmLY25s .inner-container {
    width: 100% !important;
  }
}
.cid-vbh2NLkDcO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-vbh2NLkDcO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh2NLkDcO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh2NLkDcO .row {
  justify-content: center;
}
.cid-vbh2NLkDcO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh2NLkDcO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh2NLkDcO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh2NLkDcO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh2NLkDcO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh2NLkDcO .mbr-text_1,
.cid-vbh2NLkDcO .mbr-text_2,
.cid-vbh2NLkDcO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh2NLkDcO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2NLkDcO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2NLkDcO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2NLkDcO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2NLkDcO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2NLkDcO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2NLkDcO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh2NLkDcO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2NLkDcO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2NLkDcO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh2NLkDcO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh2NLkDcO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh2NLkDcO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vbh2OA84hE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-vbh2OA84hE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh2OA84hE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh2OA84hE .row {
  justify-content: center;
}
.cid-vbh2OA84hE .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh2OA84hE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh2OA84hE .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh2OA84hE .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh2OA84hE .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh2OA84hE .mbr-text_1,
.cid-vbh2OA84hE .mbr-text_2,
.cid-vbh2OA84hE .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh2OA84hE .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2OA84hE .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2OA84hE .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2OA84hE .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2OA84hE .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2OA84hE .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2OA84hE .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh2OA84hE .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2OA84hE .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2OA84hE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh2OA84hE .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh2OA84hE .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh2OA84hE .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sl9hVnQAmn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-sl9i0kacpI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sl9i0kacpI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sl9i0kacpI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sl9i0kacpI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sl9i0kacpI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sl9i0kacpI .row > .row {
  display: block;
}
.cid-sl9i0kacpI .mbr-gallery-item {
  width: 100%;
}
.cid-sl9i0kacpI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sl9i0kacpI .mbr-gallery-item > div {
  position: relative;
}
.cid-sl9i0kacpI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sl9i0kacpI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sl9i0kacpI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sl9i0kacpI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2xfmN3n4f {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2xfmN3n4f .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2xfmN3n4f div.b {
  padding-top: 2rem;
}
.cid-s2xgMcTsFe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2xgMcTsFe .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2xgMcTsFe .section-text {
  padding: 2rem 0;
}
.cid-s2xgMcTsFe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2xgMcTsFe .inner-container {
    width: 100% !important;
  }
}
.cid-vbh2fdpQZA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-vbh2fdpQZA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh2fdpQZA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh2fdpQZA .row {
  justify-content: center;
}
.cid-vbh2fdpQZA .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh2fdpQZA .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh2fdpQZA .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh2fdpQZA .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh2fdpQZA .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh2fdpQZA .mbr-text_1,
.cid-vbh2fdpQZA .mbr-text_2,
.cid-vbh2fdpQZA .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh2fdpQZA .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2fdpQZA .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2fdpQZA .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2fdpQZA .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2fdpQZA .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2fdpQZA .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2fdpQZA .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh2fdpQZA .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2fdpQZA .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2fdpQZA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh2fdpQZA .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh2fdpQZA .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh2fdpQZA .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vbh2gcoeYY {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-vbh2gcoeYY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh2gcoeYY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh2gcoeYY .row {
  justify-content: center;
}
.cid-vbh2gcoeYY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh2gcoeYY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh2gcoeYY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh2gcoeYY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh2gcoeYY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh2gcoeYY .mbr-text_1,
.cid-vbh2gcoeYY .mbr-text_2,
.cid-vbh2gcoeYY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh2gcoeYY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2gcoeYY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2gcoeYY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2gcoeYY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2gcoeYY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2gcoeYY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2gcoeYY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh2gcoeYY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2gcoeYY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2gcoeYY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh2gcoeYY .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh2gcoeYY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh2gcoeYY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sl9b9uwg4U {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-sl9bcd6Q67 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sl9bcd6Q67 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sl9bcd6Q67 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sl9bcd6Q67 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sl9bcd6Q67 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sl9bcd6Q67 .row > .row {
  display: block;
}
.cid-sl9bcd6Q67 .mbr-gallery-item {
  width: 100%;
}
.cid-sl9bcd6Q67 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sl9bcd6Q67 .mbr-gallery-item > div {
  position: relative;
}
.cid-sl9bcd6Q67 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sl9bcd6Q67 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sl9bcd6Q67 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sl9bcd6Q67 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2xgMegMv6 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2xgMegMv6 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2xgMegMv6 div.b {
  padding-top: 2rem;
}
.cid-s2xiJGKyio {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2xiJGKyio .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2xiJGKyio .section-text {
  padding: 2rem 0;
}
.cid-s2xiJGKyio .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2xiJGKyio .inner-container {
    width: 100% !important;
  }
}
.cid-vbh2uJGOLK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-vbh2uJGOLK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh2uJGOLK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh2uJGOLK .row {
  justify-content: center;
}
.cid-vbh2uJGOLK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh2uJGOLK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh2uJGOLK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh2uJGOLK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh2uJGOLK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh2uJGOLK .mbr-text_1,
.cid-vbh2uJGOLK .mbr-text_2,
.cid-vbh2uJGOLK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh2uJGOLK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2uJGOLK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2uJGOLK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2uJGOLK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2uJGOLK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2uJGOLK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2uJGOLK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh2uJGOLK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2uJGOLK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2uJGOLK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh2uJGOLK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh2uJGOLK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh2uJGOLK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vbh2vQNGFV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-vbh2vQNGFV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh2vQNGFV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh2vQNGFV .row {
  justify-content: center;
}
.cid-vbh2vQNGFV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh2vQNGFV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh2vQNGFV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh2vQNGFV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh2vQNGFV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh2vQNGFV .mbr-text_1,
.cid-vbh2vQNGFV .mbr-text_2,
.cid-vbh2vQNGFV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh2vQNGFV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2vQNGFV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2vQNGFV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2vQNGFV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2vQNGFV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2vQNGFV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2vQNGFV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh2vQNGFV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2vQNGFV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2vQNGFV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh2vQNGFV .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh2vQNGFV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh2vQNGFV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sl9fZ8L8X8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-sl9g0gjacw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sl9g0gjacw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sl9g0gjacw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sl9g0gjacw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sl9g0gjacw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sl9g0gjacw .row > .row {
  display: block;
}
.cid-sl9g0gjacw .mbr-gallery-item {
  width: 100%;
}
.cid-sl9g0gjacw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sl9g0gjacw .mbr-gallery-item > div {
  position: relative;
}
.cid-sl9g0gjacw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sl9g0gjacw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sl9g0gjacw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sl9g0gjacw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2xiJI3oJS {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2xiJI3oJS .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2xiJI3oJS div.b {
  padding-top: 2rem;
}
.cid-s2xCDVxToO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2xCDVxToO .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2xCDVxToO .section-text {
  padding: 2rem 0;
}
.cid-s2xCDVxToO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2xCDVxToO .inner-container {
    width: 100% !important;
  }
}
.cid-vbh2TW2dcY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-vbh2TW2dcY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh2TW2dcY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh2TW2dcY .row {
  justify-content: center;
}
.cid-vbh2TW2dcY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh2TW2dcY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh2TW2dcY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh2TW2dcY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh2TW2dcY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh2TW2dcY .mbr-text_1,
.cid-vbh2TW2dcY .mbr-text_2,
.cid-vbh2TW2dcY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh2TW2dcY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2TW2dcY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2TW2dcY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2TW2dcY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2TW2dcY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2TW2dcY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2TW2dcY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh2TW2dcY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2TW2dcY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2TW2dcY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh2TW2dcY .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh2TW2dcY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh2TW2dcY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vbh2ULAjz1 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-vbh2ULAjz1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh2ULAjz1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh2ULAjz1 .row {
  justify-content: center;
}
.cid-vbh2ULAjz1 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh2ULAjz1 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh2ULAjz1 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh2ULAjz1 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh2ULAjz1 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh2ULAjz1 .mbr-text_1,
.cid-vbh2ULAjz1 .mbr-text_2,
.cid-vbh2ULAjz1 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh2ULAjz1 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2ULAjz1 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2ULAjz1 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2ULAjz1 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2ULAjz1 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2ULAjz1 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2ULAjz1 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh2ULAjz1 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2ULAjz1 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2ULAjz1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh2ULAjz1 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh2ULAjz1 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh2ULAjz1 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sl9iMrfyRZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-sl9iNh6Iev {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sl9iNh6Iev .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sl9iNh6Iev .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sl9iNh6Iev .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sl9iNh6Iev .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sl9iNh6Iev .row > .row {
  display: block;
}
.cid-sl9iNh6Iev .mbr-gallery-item {
  width: 100%;
}
.cid-sl9iNh6Iev .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sl9iNh6Iev .mbr-gallery-item > div {
  position: relative;
}
.cid-sl9iNh6Iev .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sl9iNh6Iev .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sl9iNh6Iev .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sl9iNh6Iev .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2xCDWA2pr {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2xCDWA2pr .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2xCDWA2pr div.b {
  padding-top: 2rem;
}
.cid-s2xHRb56gu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2xHRb56gu .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2xHRb56gu .section-text {
  padding: 2rem 0;
}
.cid-s2xHRb56gu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2xHRb56gu .inner-container {
    width: 100% !important;
  }
}
.cid-vbh1XdR28X {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-vbh1XdR28X .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh1XdR28X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh1XdR28X .row {
  justify-content: center;
}
.cid-vbh1XdR28X .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh1XdR28X .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh1XdR28X .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh1XdR28X .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh1XdR28X .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh1XdR28X .mbr-text_1,
.cid-vbh1XdR28X .mbr-text_2,
.cid-vbh1XdR28X .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh1XdR28X .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1XdR28X .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1XdR28X .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh1XdR28X .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh1XdR28X .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1XdR28X .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1XdR28X .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh1XdR28X .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1XdR28X .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh1XdR28X .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh1XdR28X .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh1XdR28X .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh1XdR28X .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vbh1YjpUpm {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-vbh1YjpUpm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh1YjpUpm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh1YjpUpm .row {
  justify-content: center;
}
.cid-vbh1YjpUpm .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh1YjpUpm .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh1YjpUpm .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh1YjpUpm .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh1YjpUpm .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh1YjpUpm .mbr-text_1,
.cid-vbh1YjpUpm .mbr-text_2,
.cid-vbh1YjpUpm .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh1YjpUpm .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1YjpUpm .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1YjpUpm .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh1YjpUpm .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh1YjpUpm .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1YjpUpm .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1YjpUpm .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh1YjpUpm .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1YjpUpm .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh1YjpUpm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh1YjpUpm .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh1YjpUpm .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh1YjpUpm .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sl7iEBkkyg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-sl7iFY3B7G {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sl7iFY3B7G .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sl7iFY3B7G .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sl7iFY3B7G .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sl7iFY3B7G .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sl7iFY3B7G .row > .row {
  display: block;
}
.cid-sl7iFY3B7G .mbr-gallery-item {
  width: 100%;
}
.cid-sl7iFY3B7G .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sl7iFY3B7G .mbr-gallery-item > div {
  position: relative;
}
.cid-sl7iFY3B7G .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sl7iFY3B7G .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sl7iFY3B7G .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sl7iFY3B7G .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2xHRcr5Qy {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2xHRcr5Qy .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2xHRcr5Qy div.b {
  padding-top: 2rem;
}
.cid-s2xLuFFj5B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2xLuFFj5B .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2xLuFFj5B .section-text {
  padding: 2rem 0;
}
.cid-s2xLuFFj5B .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2xLuFFj5B .inner-container {
    width: 100% !important;
  }
}
.cid-vbh1Q826oO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-vbh1Q826oO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh1Q826oO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh1Q826oO .row {
  justify-content: center;
}
.cid-vbh1Q826oO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh1Q826oO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh1Q826oO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh1Q826oO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh1Q826oO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh1Q826oO .mbr-text_1,
.cid-vbh1Q826oO .mbr-text_2,
.cid-vbh1Q826oO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh1Q826oO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1Q826oO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1Q826oO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh1Q826oO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh1Q826oO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1Q826oO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1Q826oO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh1Q826oO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1Q826oO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh1Q826oO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh1Q826oO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh1Q826oO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh1Q826oO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vbh1R61KEX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-vbh1R61KEX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh1R61KEX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh1R61KEX .row {
  justify-content: center;
}
.cid-vbh1R61KEX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh1R61KEX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh1R61KEX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh1R61KEX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh1R61KEX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh1R61KEX .mbr-text_1,
.cid-vbh1R61KEX .mbr-text_2,
.cid-vbh1R61KEX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh1R61KEX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1R61KEX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1R61KEX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh1R61KEX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh1R61KEX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1R61KEX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1R61KEX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh1R61KEX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1R61KEX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh1R61KEX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh1R61KEX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh1R61KEX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh1R61KEX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sl7gf67Rfw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-sl7gg3NPG5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sl7gg3NPG5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sl7gg3NPG5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sl7gg3NPG5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sl7gg3NPG5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sl7gg3NPG5 .row > .row {
  display: block;
}
.cid-sl7gg3NPG5 .mbr-gallery-item {
  width: 100%;
}
.cid-sl7gg3NPG5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sl7gg3NPG5 .mbr-gallery-item > div {
  position: relative;
}
.cid-sl7gg3NPG5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sl7gg3NPG5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sl7gg3NPG5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sl7gg3NPG5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2xLuH0ZeO {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2xLuH0ZeO .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2xLuH0ZeO div.b {
  padding-top: 2rem;
}
.cid-s2xNDLLLPC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2xNDLLLPC .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2xNDLLLPC .section-text {
  padding: 2rem 0;
}
.cid-s2xNDLLLPC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2xNDLLLPC .inner-container {
    width: 100% !important;
  }
}
.cid-vbh2BDiGhW {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-vbh2BDiGhW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh2BDiGhW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh2BDiGhW .row {
  justify-content: center;
}
.cid-vbh2BDiGhW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh2BDiGhW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh2BDiGhW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh2BDiGhW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh2BDiGhW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh2BDiGhW .mbr-text_1,
.cid-vbh2BDiGhW .mbr-text_2,
.cid-vbh2BDiGhW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh2BDiGhW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2BDiGhW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2BDiGhW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2BDiGhW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2BDiGhW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2BDiGhW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2BDiGhW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh2BDiGhW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2BDiGhW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh2BDiGhW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh2BDiGhW .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh2BDiGhW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh2BDiGhW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vbh2CAYVd5 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-vbh2CAYVd5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh2CAYVd5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh2CAYVd5 .row {
  justify-content: center;
}
.cid-vbh2CAYVd5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh2CAYVd5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh2CAYVd5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh2CAYVd5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh2CAYVd5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh2CAYVd5 .mbr-text_1,
.cid-vbh2CAYVd5 .mbr-text_2,
.cid-vbh2CAYVd5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh2CAYVd5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2CAYVd5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2CAYVd5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2CAYVd5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2CAYVd5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2CAYVd5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh2CAYVd5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh2CAYVd5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh2CAYVd5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh2CAYVd5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh2CAYVd5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh2CAYVd5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh2CAYVd5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sl9ha953sR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-sl9hbfm54z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sl9hbfm54z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sl9hbfm54z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sl9hbfm54z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sl9hbfm54z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sl9hbfm54z .row > .row {
  display: block;
}
.cid-sl9hbfm54z .mbr-gallery-item {
  width: 100%;
}
.cid-sl9hbfm54z .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sl9hbfm54z .mbr-gallery-item > div {
  position: relative;
}
.cid-sl9hbfm54z .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sl9hbfm54z .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sl9hbfm54z .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sl9hbfm54z .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2xNDNAzid {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2xNDNAzid .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2xNDNAzid div.b {
  padding-top: 2rem;
}
.cid-s2ypSYcrsf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2ypSYcrsf .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2ypSYcrsf .section-text {
  padding: 2rem 0;
}
.cid-s2ypSYcrsf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2ypSYcrsf .inner-container {
    width: 100% !important;
  }
}
.cid-vbh1lWmY65 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-vbh1lWmY65 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh1lWmY65 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh1lWmY65 .row {
  justify-content: center;
}
.cid-vbh1lWmY65 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh1lWmY65 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh1lWmY65 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh1lWmY65 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh1lWmY65 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh1lWmY65 .mbr-text_1,
.cid-vbh1lWmY65 .mbr-text_2,
.cid-vbh1lWmY65 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh1lWmY65 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1lWmY65 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1lWmY65 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh1lWmY65 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh1lWmY65 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1lWmY65 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1lWmY65 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh1lWmY65 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1lWmY65 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh1lWmY65 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh1lWmY65 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh1lWmY65 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh1lWmY65 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vbh1mZLFPs {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-vbh1mZLFPs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh1mZLFPs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh1mZLFPs .row {
  justify-content: center;
}
.cid-vbh1mZLFPs .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh1mZLFPs .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh1mZLFPs .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh1mZLFPs .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh1mZLFPs .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh1mZLFPs .mbr-text_1,
.cid-vbh1mZLFPs .mbr-text_2,
.cid-vbh1mZLFPs .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh1mZLFPs .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1mZLFPs .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1mZLFPs .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh1mZLFPs .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh1mZLFPs .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1mZLFPs .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh1mZLFPs .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh1mZLFPs .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh1mZLFPs .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh1mZLFPs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh1mZLFPs .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh1mZLFPs .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh1mZLFPs .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sl7a9LvFH9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-sl7awyGwY8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sl7awyGwY8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sl7awyGwY8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sl7awyGwY8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sl7awyGwY8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sl7awyGwY8 .row > .row {
  display: block;
}
.cid-sl7awyGwY8 .mbr-gallery-item {
  width: 100%;
}
.cid-sl7awyGwY8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sl7awyGwY8 .mbr-gallery-item > div {
  position: relative;
}
.cid-sl7awyGwY8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sl7awyGwY8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sl7awyGwY8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sl7awyGwY8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2ypT09rfx {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2ypT09rfx .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2ypT09rfx div.b {
  padding-top: 2rem;
}
.cid-s2yrjFv1za {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2yrjFv1za .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2yrjFv1za .section-text {
  padding: 2rem 0;
}
.cid-s2yrjFv1za .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2yrjFv1za .inner-container {
    width: 100% !important;
  }
}
.cid-vbh23XldoE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-vbh23XldoE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh23XldoE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh23XldoE .row {
  justify-content: center;
}
.cid-vbh23XldoE .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh23XldoE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh23XldoE .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh23XldoE .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh23XldoE .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh23XldoE .mbr-text_1,
.cid-vbh23XldoE .mbr-text_2,
.cid-vbh23XldoE .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh23XldoE .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh23XldoE .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh23XldoE .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh23XldoE .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh23XldoE .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh23XldoE .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh23XldoE .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh23XldoE .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh23XldoE .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vbh23XldoE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh23XldoE .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh23XldoE .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh23XldoE .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vbh24ZNcmq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-vbh24ZNcmq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbh24ZNcmq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbh24ZNcmq .row {
  justify-content: center;
}
.cid-vbh24ZNcmq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vbh24ZNcmq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vbh24ZNcmq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vbh24ZNcmq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vbh24ZNcmq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vbh24ZNcmq .mbr-text_1,
.cid-vbh24ZNcmq .mbr-text_2,
.cid-vbh24ZNcmq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vbh24ZNcmq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh24ZNcmq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vbh24ZNcmq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh24ZNcmq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh24ZNcmq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh24ZNcmq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vbh24ZNcmq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vbh24ZNcmq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vbh24ZNcmq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vbh24ZNcmq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vbh24ZNcmq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vbh24ZNcmq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vbh24ZNcmq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sl99AmwSr7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3bec15;
}
.cid-sl99BtNRbX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sl99BtNRbX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sl99BtNRbX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sl99BtNRbX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sl99BtNRbX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sl99BtNRbX .row > .row {
  display: block;
}
.cid-sl99BtNRbX .mbr-gallery-item {
  width: 100%;
}
.cid-sl99BtNRbX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sl99BtNRbX .mbr-gallery-item > div {
  position: relative;
}
.cid-sl99BtNRbX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sl99BtNRbX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sl99BtNRbX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sl99BtNRbX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2yrjGGmxH {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2yrjGGmxH .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2yrjGGmxH div.b {
  padding-top: 2rem;
}
.cid-s2ysTpKbUf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2ysTpKbUf .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2ysTpKbUf .section-text {
  padding: 2rem 0;
}
.cid-s2ysTpKbUf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2ysTpKbUf .inner-container {
    width: 100% !important;
  }
}
.cid-v7bAPIdbw4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7bAPIdbw4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bAPIdbw4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bAPIdbw4 .row {
  justify-content: center;
}
.cid-v7bAPIdbw4 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bAPIdbw4 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bAPIdbw4 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bAPIdbw4 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bAPIdbw4 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bAPIdbw4 .mbr-text_1,
.cid-v7bAPIdbw4 .mbr-text_2,
.cid-v7bAPIdbw4 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bAPIdbw4 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bAPIdbw4 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bAPIdbw4 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bAPIdbw4 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bAPIdbw4 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bAPIdbw4 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bAPIdbw4 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bAPIdbw4 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bAPIdbw4 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bAPIdbw4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bAPIdbw4 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bAPIdbw4 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bAPIdbw4 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bAkpg6iM {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7bAkpg6iM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bAkpg6iM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bAkpg6iM .row {
  justify-content: center;
}
.cid-v7bAkpg6iM .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bAkpg6iM .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bAkpg6iM .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bAkpg6iM .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bAkpg6iM .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bAkpg6iM .mbr-text_1,
.cid-v7bAkpg6iM .mbr-text_2,
.cid-v7bAkpg6iM .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bAkpg6iM .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bAkpg6iM .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bAkpg6iM .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bAkpg6iM .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bAkpg6iM .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bAkpg6iM .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bAkpg6iM .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bAkpg6iM .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bAkpg6iM .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bAkpg6iM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bAkpg6iM .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bAkpg6iM .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bAkpg6iM .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bBdn8hxc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-v7bBdn8hxc .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7bBdn8hxc .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-v7bBdn8hxc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7bBdn8hxc .inner-container {
    width: 100% !important;
  }
}
.cid-s2ysTpYVB9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
@media (min-width: 992px) {
  .cid-s2ysTpYVB9 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2ysTpYVB9 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2ysTpYVB9 .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-s2ysTqMngy {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2ysTqMngy .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2ysTqMngy div.b {
  padding-top: 2rem;
}
.cid-s2yuIaPi0n {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2yuIaPi0n .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2yuIaPi0n .section-text {
  padding: 2rem 0;
}
.cid-s2yuIaPi0n .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2yuIaPi0n .inner-container {
    width: 100% !important;
  }
}
.cid-v7bBsaPzWp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7bBsaPzWp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bBsaPzWp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bBsaPzWp .row {
  justify-content: center;
}
.cid-v7bBsaPzWp .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bBsaPzWp .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bBsaPzWp .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bBsaPzWp .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bBsaPzWp .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bBsaPzWp .mbr-text_1,
.cid-v7bBsaPzWp .mbr-text_2,
.cid-v7bBsaPzWp .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bBsaPzWp .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bBsaPzWp .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bBsaPzWp .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bBsaPzWp .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bBsaPzWp .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bBsaPzWp .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bBsaPzWp .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bBsaPzWp .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bBsaPzWp .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bBsaPzWp .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bBsaPzWp .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bBsaPzWp .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bBsaPzWp .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bBt8PSeC {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7bBt8PSeC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bBt8PSeC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bBt8PSeC .row {
  justify-content: center;
}
.cid-v7bBt8PSeC .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bBt8PSeC .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bBt8PSeC .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bBt8PSeC .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bBt8PSeC .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bBt8PSeC .mbr-text_1,
.cid-v7bBt8PSeC .mbr-text_2,
.cid-v7bBt8PSeC .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bBt8PSeC .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bBt8PSeC .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bBt8PSeC .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bBt8PSeC .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bBt8PSeC .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bBt8PSeC .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bBt8PSeC .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bBt8PSeC .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bBt8PSeC .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bBt8PSeC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bBt8PSeC .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bBt8PSeC .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bBt8PSeC .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bBuf8Q3J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-v7bBuf8Q3J .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7bBuf8Q3J .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-v7bBuf8Q3J .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7bBuf8Q3J .inner-container {
    width: 100% !important;
  }
}
.cid-s2yuIb4yHo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
@media (min-width: 992px) {
  .cid-s2yuIb4yHo .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2yuIb4yHo .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2yuIb4yHo .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-s2yuIbsuPB {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2yuIbsuPB .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2yuIbsuPB div.b {
  padding-top: 2rem;
}
.cid-s2yuTWemyT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2yuTWemyT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2yuTWemyT .section-text {
  padding: 2rem 0;
}
.cid-s2yuTWemyT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2yuTWemyT .inner-container {
    width: 100% !important;
  }
}
.cid-v7bBHetxL3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7bBHetxL3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bBHetxL3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bBHetxL3 .row {
  justify-content: center;
}
.cid-v7bBHetxL3 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bBHetxL3 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bBHetxL3 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bBHetxL3 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bBHetxL3 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bBHetxL3 .mbr-text_1,
.cid-v7bBHetxL3 .mbr-text_2,
.cid-v7bBHetxL3 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bBHetxL3 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bBHetxL3 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bBHetxL3 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bBHetxL3 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bBHetxL3 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bBHetxL3 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bBHetxL3 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bBHetxL3 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bBHetxL3 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bBHetxL3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bBHetxL3 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bBHetxL3 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bBHetxL3 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bBIahLDk {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7bBIahLDk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bBIahLDk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bBIahLDk .row {
  justify-content: center;
}
.cid-v7bBIahLDk .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bBIahLDk .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bBIahLDk .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bBIahLDk .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bBIahLDk .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bBIahLDk .mbr-text_1,
.cid-v7bBIahLDk .mbr-text_2,
.cid-v7bBIahLDk .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bBIahLDk .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bBIahLDk .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bBIahLDk .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bBIahLDk .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bBIahLDk .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bBIahLDk .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bBIahLDk .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bBIahLDk .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bBIahLDk .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bBIahLDk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bBIahLDk .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bBIahLDk .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bBIahLDk .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bBJ76KA9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-v7bBJ76KA9 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7bBJ76KA9 .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-v7bBJ76KA9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7bBJ76KA9 .inner-container {
    width: 100% !important;
  }
}
.cid-s2yuTWsSBv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
@media (min-width: 992px) {
  .cid-s2yuTWsSBv .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2yuTWsSBv .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2yuTWsSBv .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-s2yuTWPok6 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2yuTWPok6 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2yuTWPok6 div.b {
  padding-top: 2rem;
}
.cid-s2yv0DO8SC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2yv0DO8SC .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2yv0DO8SC .section-text {
  padding: 2rem 0;
}
.cid-s2yv0DO8SC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2yv0DO8SC .inner-container {
    width: 100% !important;
  }
}
.cid-v72jCMeJ0d {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v72jCMeJ0d .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72jCMeJ0d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72jCMeJ0d .row {
  justify-content: center;
}
.cid-v72jCMeJ0d .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72jCMeJ0d .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72jCMeJ0d .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72jCMeJ0d .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72jCMeJ0d .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72jCMeJ0d .mbr-text_1,
.cid-v72jCMeJ0d .mbr-text_2,
.cid-v72jCMeJ0d .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72jCMeJ0d .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72jCMeJ0d .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72jCMeJ0d .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72jCMeJ0d .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72jCMeJ0d .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72jCMeJ0d .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72jCMeJ0d .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72jCMeJ0d .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72jCMeJ0d .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72jCMeJ0d .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72jCMeJ0d .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72jCMeJ0d .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72jCMeJ0d .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72jEsoKVi {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v72jEsoKVi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72jEsoKVi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72jEsoKVi .row {
  justify-content: center;
}
.cid-v72jEsoKVi .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72jEsoKVi .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72jEsoKVi .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72jEsoKVi .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72jEsoKVi .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72jEsoKVi .mbr-text_1,
.cid-v72jEsoKVi .mbr-text_2,
.cid-v72jEsoKVi .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72jEsoKVi .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72jEsoKVi .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72jEsoKVi .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72jEsoKVi .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72jEsoKVi .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72jEsoKVi .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72jEsoKVi .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72jEsoKVi .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72jEsoKVi .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72jEsoKVi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72jEsoKVi .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72jEsoKVi .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72jEsoKVi .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72jwDbnbi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-v72jwDbnbi .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v72jwDbnbi .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-v72jwDbnbi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v72jwDbnbi .inner-container {
    width: 100% !important;
  }
}
.cid-s2yv0E4jH1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
@media (min-width: 992px) {
  .cid-s2yv0E4jH1 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2yv0E4jH1 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2yv0E4jH1 .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-s2yv0Eo3u5 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2yv0Eo3u5 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2yv0Eo3u5 div.b {
  padding-top: 2rem;
}
.cid-s2yvaBSkqn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2yvaBSkqn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2yvaBSkqn .section-text {
  padding: 2rem 0;
}
.cid-s2yvaBSkqn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2yvaBSkqn .inner-container {
    width: 100% !important;
  }
}
.cid-v7bCaZtP2p {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7bCaZtP2p .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bCaZtP2p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bCaZtP2p .row {
  justify-content: center;
}
.cid-v7bCaZtP2p .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bCaZtP2p .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bCaZtP2p .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bCaZtP2p .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bCaZtP2p .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bCaZtP2p .mbr-text_1,
.cid-v7bCaZtP2p .mbr-text_2,
.cid-v7bCaZtP2p .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bCaZtP2p .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCaZtP2p .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bCaZtP2p .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bCaZtP2p .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bCaZtP2p .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCaZtP2p .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bCaZtP2p .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bCaZtP2p .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCaZtP2p .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bCaZtP2p .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bCaZtP2p .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bCaZtP2p .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bCaZtP2p .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bCc8Un1Q {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7bCc8Un1Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bCc8Un1Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bCc8Un1Q .row {
  justify-content: center;
}
.cid-v7bCc8Un1Q .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bCc8Un1Q .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bCc8Un1Q .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bCc8Un1Q .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bCc8Un1Q .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bCc8Un1Q .mbr-text_1,
.cid-v7bCc8Un1Q .mbr-text_2,
.cid-v7bCc8Un1Q .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bCc8Un1Q .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCc8Un1Q .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bCc8Un1Q .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bCc8Un1Q .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bCc8Un1Q .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCc8Un1Q .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bCc8Un1Q .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bCc8Un1Q .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCc8Un1Q .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bCc8Un1Q .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bCc8Un1Q .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bCc8Un1Q .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bCc8Un1Q .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bCd3eUlz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-v7bCd3eUlz .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7bCd3eUlz .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-v7bCd3eUlz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7bCd3eUlz .inner-container {
    width: 100% !important;
  }
}
.cid-s2yvaC5BrJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
@media (min-width: 992px) {
  .cid-s2yvaC5BrJ .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2yvaC5BrJ .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2yvaC5BrJ .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-s2yvaCqBPB {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2yvaCqBPB .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2yvaCqBPB div.b {
  padding-top: 2rem;
}
.cid-s2yve8IDMB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2yve8IDMB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2yve8IDMB .section-text {
  padding: 2rem 0;
}
.cid-s2yve8IDMB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2yve8IDMB .inner-container {
    width: 100% !important;
  }
}
.cid-v7bCAHcm4f {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7bCAHcm4f .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bCAHcm4f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bCAHcm4f .row {
  justify-content: center;
}
.cid-v7bCAHcm4f .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bCAHcm4f .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bCAHcm4f .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bCAHcm4f .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bCAHcm4f .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bCAHcm4f .mbr-text_1,
.cid-v7bCAHcm4f .mbr-text_2,
.cid-v7bCAHcm4f .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bCAHcm4f .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCAHcm4f .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bCAHcm4f .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bCAHcm4f .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bCAHcm4f .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCAHcm4f .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bCAHcm4f .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bCAHcm4f .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCAHcm4f .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bCAHcm4f .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bCAHcm4f .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bCAHcm4f .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bCAHcm4f .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bCBvblPB {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7bCBvblPB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bCBvblPB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bCBvblPB .row {
  justify-content: center;
}
.cid-v7bCBvblPB .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bCBvblPB .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bCBvblPB .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bCBvblPB .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bCBvblPB .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bCBvblPB .mbr-text_1,
.cid-v7bCBvblPB .mbr-text_2,
.cid-v7bCBvblPB .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bCBvblPB .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCBvblPB .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bCBvblPB .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bCBvblPB .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bCBvblPB .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCBvblPB .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bCBvblPB .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bCBvblPB .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCBvblPB .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bCBvblPB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bCBvblPB .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bCBvblPB .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bCBvblPB .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bCCtgNtP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-v7bCCtgNtP .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7bCCtgNtP .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-v7bCCtgNtP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7bCCtgNtP .inner-container {
    width: 100% !important;
  }
}
.cid-s2yve8RPSr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
@media (min-width: 992px) {
  .cid-s2yve8RPSr .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2yve8RPSr .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2yve8RPSr .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-s2yve9dN7k {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2yve9dN7k .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2yve9dN7k div.b {
  padding-top: 2rem;
}
.cid-s2yvnI5cB2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2yvnI5cB2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2yvnI5cB2 .section-text {
  padding: 2rem 0;
}
.cid-s2yvnI5cB2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2yvnI5cB2 .inner-container {
    width: 100% !important;
  }
}
.cid-v7bCZvWcF4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7bCZvWcF4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bCZvWcF4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bCZvWcF4 .row {
  justify-content: center;
}
.cid-v7bCZvWcF4 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bCZvWcF4 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bCZvWcF4 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bCZvWcF4 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bCZvWcF4 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bCZvWcF4 .mbr-text_1,
.cid-v7bCZvWcF4 .mbr-text_2,
.cid-v7bCZvWcF4 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bCZvWcF4 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCZvWcF4 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bCZvWcF4 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bCZvWcF4 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bCZvWcF4 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCZvWcF4 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bCZvWcF4 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bCZvWcF4 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bCZvWcF4 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bCZvWcF4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bCZvWcF4 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bCZvWcF4 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bCZvWcF4 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bD0nrtqi {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7bD0nrtqi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bD0nrtqi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bD0nrtqi .row {
  justify-content: center;
}
.cid-v7bD0nrtqi .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bD0nrtqi .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bD0nrtqi .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bD0nrtqi .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bD0nrtqi .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bD0nrtqi .mbr-text_1,
.cid-v7bD0nrtqi .mbr-text_2,
.cid-v7bD0nrtqi .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bD0nrtqi .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bD0nrtqi .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bD0nrtqi .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bD0nrtqi .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bD0nrtqi .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bD0nrtqi .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bD0nrtqi .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bD0nrtqi .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bD0nrtqi .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bD0nrtqi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bD0nrtqi .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bD0nrtqi .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bD0nrtqi .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bD1co0a5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-v7bD1co0a5 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7bD1co0a5 .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-v7bD1co0a5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7bD1co0a5 .inner-container {
    width: 100% !important;
  }
}
.cid-spcA3SOtFo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
@media (min-width: 992px) {
  .cid-spcA3SOtFo .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-spcA3SOtFo .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-spcA3SOtFo .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-s2yvnIM8hN {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2yvnIM8hN .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2yvnIM8hN div.b {
  padding-top: 2rem;
}
.cid-s2yvr1wssi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2yvr1wssi .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2yvr1wssi .section-text {
  padding: 2rem 0;
}
.cid-s2yvr1wssi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2yvr1wssi .inner-container {
    width: 100% !important;
  }
}
.cid-v7bDmvRHXD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7bDmvRHXD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bDmvRHXD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bDmvRHXD .row {
  justify-content: center;
}
.cid-v7bDmvRHXD .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bDmvRHXD .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bDmvRHXD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bDmvRHXD .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bDmvRHXD .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bDmvRHXD .mbr-text_1,
.cid-v7bDmvRHXD .mbr-text_2,
.cid-v7bDmvRHXD .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bDmvRHXD .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDmvRHXD .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bDmvRHXD .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bDmvRHXD .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bDmvRHXD .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDmvRHXD .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bDmvRHXD .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bDmvRHXD .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDmvRHXD .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bDmvRHXD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bDmvRHXD .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bDmvRHXD .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bDmvRHXD .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bDnjUNna {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7bDnjUNna .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bDnjUNna .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bDnjUNna .row {
  justify-content: center;
}
.cid-v7bDnjUNna .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bDnjUNna .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bDnjUNna .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bDnjUNna .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bDnjUNna .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bDnjUNna .mbr-text_1,
.cid-v7bDnjUNna .mbr-text_2,
.cid-v7bDnjUNna .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bDnjUNna .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDnjUNna .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bDnjUNna .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bDnjUNna .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bDnjUNna .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDnjUNna .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bDnjUNna .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bDnjUNna .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDnjUNna .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bDnjUNna .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bDnjUNna .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bDnjUNna .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bDnjUNna .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bDotInPX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-v7bDotInPX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7bDotInPX .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-v7bDotInPX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7bDotInPX .inner-container {
    width: 100% !important;
  }
}
.cid-spczq1PYWV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
@media (min-width: 992px) {
  .cid-spczq1PYWV .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-spczq1PYWV .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-spczq1PYWV .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-s2yvr22QPF {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2yvr22QPF .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2yvr22QPF div.b {
  padding-top: 2rem;
}
.cid-s2yvBMr4Sc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2yvBMr4Sc .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2yvBMr4Sc .section-text {
  padding: 2rem 0;
}
.cid-s2yvBMr4Sc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2yvBMr4Sc .inner-container {
    width: 100% !important;
  }
}
.cid-v7bDAY8Qxi {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7bDAY8Qxi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bDAY8Qxi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bDAY8Qxi .row {
  justify-content: center;
}
.cid-v7bDAY8Qxi .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bDAY8Qxi .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bDAY8Qxi .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bDAY8Qxi .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bDAY8Qxi .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bDAY8Qxi .mbr-text_1,
.cid-v7bDAY8Qxi .mbr-text_2,
.cid-v7bDAY8Qxi .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bDAY8Qxi .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDAY8Qxi .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bDAY8Qxi .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bDAY8Qxi .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bDAY8Qxi .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDAY8Qxi .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bDAY8Qxi .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bDAY8Qxi .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDAY8Qxi .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bDAY8Qxi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bDAY8Qxi .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bDAY8Qxi .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bDAY8Qxi .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bDBSKhae {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7bDBSKhae .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bDBSKhae .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bDBSKhae .row {
  justify-content: center;
}
.cid-v7bDBSKhae .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bDBSKhae .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bDBSKhae .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bDBSKhae .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bDBSKhae .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bDBSKhae .mbr-text_1,
.cid-v7bDBSKhae .mbr-text_2,
.cid-v7bDBSKhae .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bDBSKhae .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDBSKhae .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bDBSKhae .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bDBSKhae .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bDBSKhae .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDBSKhae .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bDBSKhae .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bDBSKhae .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDBSKhae .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bDBSKhae .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bDBSKhae .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bDBSKhae .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bDBSKhae .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bDCK9Drb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-v7bDCK9Drb .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7bDCK9Drb .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-v7bDCK9Drb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7bDCK9Drb .inner-container {
    width: 100% !important;
  }
}
.cid-s2yvBMAqDp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
@media (min-width: 992px) {
  .cid-s2yvBMAqDp .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2yvBMAqDp .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2yvBMAqDp .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-s2yvBMYLxC {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2yvBMYLxC .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2yvBMYLxC div.b {
  padding-top: 2rem;
}
.cid-s2yvF3Gboy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2yvF3Gboy .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2yvF3Gboy .section-text {
  padding: 2rem 0;
}
.cid-s2yvF3Gboy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2yvF3Gboy .inner-container {
    width: 100% !important;
  }
}
.cid-v7bDOyqFb3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7bDOyqFb3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bDOyqFb3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bDOyqFb3 .row {
  justify-content: center;
}
.cid-v7bDOyqFb3 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bDOyqFb3 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bDOyqFb3 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bDOyqFb3 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bDOyqFb3 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bDOyqFb3 .mbr-text_1,
.cid-v7bDOyqFb3 .mbr-text_2,
.cid-v7bDOyqFb3 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bDOyqFb3 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDOyqFb3 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bDOyqFb3 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bDOyqFb3 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bDOyqFb3 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDOyqFb3 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bDOyqFb3 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bDOyqFb3 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDOyqFb3 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bDOyqFb3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bDOyqFb3 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bDOyqFb3 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bDOyqFb3 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bDPiVFhl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7bDPiVFhl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bDPiVFhl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bDPiVFhl .row {
  justify-content: center;
}
.cid-v7bDPiVFhl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bDPiVFhl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bDPiVFhl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bDPiVFhl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bDPiVFhl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bDPiVFhl .mbr-text_1,
.cid-v7bDPiVFhl .mbr-text_2,
.cid-v7bDPiVFhl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bDPiVFhl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDPiVFhl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bDPiVFhl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bDPiVFhl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bDPiVFhl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDPiVFhl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bDPiVFhl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bDPiVFhl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bDPiVFhl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bDPiVFhl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bDPiVFhl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bDPiVFhl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bDPiVFhl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bDQxMEGC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-v7bDQxMEGC .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7bDQxMEGC .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-v7bDQxMEGC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7bDQxMEGC .inner-container {
    width: 100% !important;
  }
}
.cid-s2yvF3Pk0L {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
@media (min-width: 992px) {
  .cid-s2yvF3Pk0L .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2yvF3Pk0L .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2yvF3Pk0L .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-s2yvF4bRR1 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2yvF4bRR1 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2yvF4bRR1 div.b {
  padding-top: 2rem;
}
.cid-s2yvJN1Xyi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2yvJN1Xyi .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2yvJN1Xyi .section-text {
  padding: 2rem 0;
}
.cid-s2yvJN1Xyi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2yvJN1Xyi .inner-container {
    width: 100% !important;
  }
}
.cid-v7bE0tbquU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7bE0tbquU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bE0tbquU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bE0tbquU .row {
  justify-content: center;
}
.cid-v7bE0tbquU .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bE0tbquU .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bE0tbquU .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bE0tbquU .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bE0tbquU .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bE0tbquU .mbr-text_1,
.cid-v7bE0tbquU .mbr-text_2,
.cid-v7bE0tbquU .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bE0tbquU .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bE0tbquU .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bE0tbquU .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bE0tbquU .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bE0tbquU .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bE0tbquU .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bE0tbquU .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bE0tbquU .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bE0tbquU .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bE0tbquU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bE0tbquU .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bE0tbquU .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bE0tbquU .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bE1mqoXN {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7bE1mqoXN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bE1mqoXN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bE1mqoXN .row {
  justify-content: center;
}
.cid-v7bE1mqoXN .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bE1mqoXN .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bE1mqoXN .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bE1mqoXN .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bE1mqoXN .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bE1mqoXN .mbr-text_1,
.cid-v7bE1mqoXN .mbr-text_2,
.cid-v7bE1mqoXN .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bE1mqoXN .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bE1mqoXN .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bE1mqoXN .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bE1mqoXN .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bE1mqoXN .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bE1mqoXN .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bE1mqoXN .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bE1mqoXN .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bE1mqoXN .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bE1mqoXN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bE1mqoXN .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bE1mqoXN .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bE1mqoXN .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bE2vpzEc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-v7bE2vpzEc .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7bE2vpzEc .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-v7bE2vpzEc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7bE2vpzEc .inner-container {
    width: 100% !important;
  }
}
.cid-s2yvJNa4Ci {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
@media (min-width: 992px) {
  .cid-s2yvJNa4Ci .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2yvJNa4Ci .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2yvJNa4Ci .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-s2yvJNvNa7 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2yvJNvNa7 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2yvJNvNa7 div.b {
  padding-top: 2rem;
}
.cid-s2yvU4ktyj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2yvU4ktyj .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2yvU4ktyj .section-text {
  padding: 2rem 0;
}
.cid-s2yvU4ktyj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2yvU4ktyj .inner-container {
    width: 100% !important;
  }
}
.cid-v7bEfZg7JY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7bEfZg7JY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bEfZg7JY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bEfZg7JY .row {
  justify-content: center;
}
.cid-v7bEfZg7JY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bEfZg7JY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bEfZg7JY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bEfZg7JY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bEfZg7JY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bEfZg7JY .mbr-text_1,
.cid-v7bEfZg7JY .mbr-text_2,
.cid-v7bEfZg7JY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bEfZg7JY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bEfZg7JY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bEfZg7JY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bEfZg7JY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bEfZg7JY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bEfZg7JY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bEfZg7JY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bEfZg7JY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bEfZg7JY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7bEfZg7JY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bEfZg7JY .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bEfZg7JY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bEfZg7JY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bEgSCtyA {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7bEgSCtyA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7bEgSCtyA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7bEgSCtyA .row {
  justify-content: center;
}
.cid-v7bEgSCtyA .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7bEgSCtyA .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7bEgSCtyA .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7bEgSCtyA .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7bEgSCtyA .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7bEgSCtyA .mbr-text_1,
.cid-v7bEgSCtyA .mbr-text_2,
.cid-v7bEgSCtyA .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7bEgSCtyA .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bEgSCtyA .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7bEgSCtyA .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bEgSCtyA .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bEgSCtyA .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bEgSCtyA .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7bEgSCtyA .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7bEgSCtyA .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7bEgSCtyA .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7bEgSCtyA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7bEgSCtyA .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7bEgSCtyA .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7bEgSCtyA .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7bEhLs7DP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-v7bEhLs7DP .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7bEhLs7DP .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-v7bEhLs7DP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7bEhLs7DP .inner-container {
    width: 100% !important;
  }
}
.cid-spcyAfeq5R {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
@media (min-width: 992px) {
  .cid-spcyAfeq5R .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-spcyAfeq5R .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-spcyAfeq5R .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-s2yvU4SZM7 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2yvU4SZM7 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2yvU4SZM7 div.b {
  padding-top: 2rem;
}
.cid-s2yvYWfJBZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s2yvYWfJBZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2yvYWfJBZ .section-text {
  padding: 2rem 0;
}
.cid-s2yvYWfJBZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2yvYWfJBZ .inner-container {
    width: 100% !important;
  }
}
.cid-svFUXyYTSN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-svFUXyYTSN .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFUXyYTSN .section-text {
  padding: 2rem 0;
}
.cid-svFUXyYTSN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFUXyYTSN .inner-container {
    width: 100% !important;
  }
}
.cid-v72ksvgeFe {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v72ksvgeFe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72ksvgeFe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72ksvgeFe .row {
  justify-content: center;
}
.cid-v72ksvgeFe .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72ksvgeFe .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72ksvgeFe .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72ksvgeFe .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72ksvgeFe .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72ksvgeFe .mbr-text_1,
.cid-v72ksvgeFe .mbr-text_2,
.cid-v72ksvgeFe .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72ksvgeFe .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72ksvgeFe .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72ksvgeFe .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72ksvgeFe .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72ksvgeFe .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72ksvgeFe .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72ksvgeFe .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72ksvgeFe .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72ksvgeFe .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72ksvgeFe .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72ksvgeFe .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72ksvgeFe .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72ksvgeFe .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72ktD5CBd {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v72ktD5CBd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72ktD5CBd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72ktD5CBd .row {
  justify-content: center;
}
.cid-v72ktD5CBd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72ktD5CBd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72ktD5CBd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72ktD5CBd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72ktD5CBd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72ktD5CBd .mbr-text_1,
.cid-v72ktD5CBd .mbr-text_2,
.cid-v72ktD5CBd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72ktD5CBd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72ktD5CBd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72ktD5CBd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72ktD5CBd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72ktD5CBd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72ktD5CBd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72ktD5CBd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72ktD5CBd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72ktD5CBd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72ktD5CBd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72ktD5CBd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72ktD5CBd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72ktD5CBd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72kqiEkPW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-v72kqiEkPW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v72kqiEkPW .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-v72kqiEkPW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v72kqiEkPW .inner-container {
    width: 100% !important;
  }
}
.cid-s2yvYWrbfF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
@media (min-width: 992px) {
  .cid-s2yvYWrbfF .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-s2yvYWrbfF .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s2yvYWrbfF .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-s2yvYWPRRE {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s2yvYWPRRE .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2yvYWPRRE div.b {
  padding-top: 2rem;
}
.cid-s2C4wQlMFu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s2C4wQlMFu .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2C4wQlMFu .section-text {
  padding: 2rem 0;
}
.cid-s2C4wQlMFu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2C4wQlMFu .inner-container {
    width: 100% !important;
  }
}
.cid-v78CDDDnda {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #15ece0;
}
.cid-v78CDDDnda .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78CDDDnda .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78CDDDnda .row {
  justify-content: center;
}
.cid-v78CDDDnda .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78CDDDnda .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78CDDDnda .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78CDDDnda .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78CDDDnda .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78CDDDnda .mbr-text_1,
.cid-v78CDDDnda .mbr-text_2,
.cid-v78CDDDnda .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78CDDDnda .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78CDDDnda .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78CDDDnda .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78CDDDnda .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78CDDDnda .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78CDDDnda .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78CDDDnda .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78CDDDnda .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78CDDDnda .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78CDDDnda .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78CDDDnda .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78CDDDnda .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78CDDDnda .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78CELuxui {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #15ece0;
}
.cid-v78CELuxui .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78CELuxui .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78CELuxui .row {
  justify-content: center;
}
.cid-v78CELuxui .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78CELuxui .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78CELuxui .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78CELuxui .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78CELuxui .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78CELuxui .mbr-text_1,
.cid-v78CELuxui .mbr-text_2,
.cid-v78CELuxui .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78CELuxui .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78CELuxui .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78CELuxui .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78CELuxui .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78CELuxui .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78CELuxui .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78CELuxui .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78CELuxui .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78CELuxui .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78CELuxui .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78CELuxui .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78CELuxui .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78CELuxui .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78CGx5W09 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78CGx5W09 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v78CGx5W09 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v78CGx5W09 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v78CGx5W09 .inner-container {
    width: 100% !important;
  }
}
.cid-v78CI0cfL7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78CI0cfL7 .mbr-section-subtitle {
  color: #767676;
}
.cid-v78CI0cfL7 .container-table {
  margin: 0 auto;
}
.cid-v78CI0cfL7 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v78CI0cfL7 .dataTables_wrapper {
  display: block;
}
.cid-v78CI0cfL7 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v78CI0cfL7 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v78CI0cfL7 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v78CI0cfL7 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v78CI0cfL7 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v78CI0cfL7 table td {
  border-top: 1px solid #232323;
}
.cid-v78CI0cfL7 table.table {
  background: #15ece0;
}
.cid-v78CI0cfL7 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v78CI0cfL7 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v78CI0cfL7 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v78CI0cfL7 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v78CI0cfL7 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v78CI0cfL7 .dataTables_filter {
    text-align: center;
  }
  .cid-v78CI0cfL7 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v78CI0cfL7 .mbr-section-title {
  color: #232323;
}
.cid-v78CI0cfL7 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v78CI0cfL7 .body-item {
  text-align: center;
}
.cid-s3vd2DXgku {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-s3vd2DXgku .image-block {
  margin: auto;
}
.cid-s3vd2DXgku figcaption {
  position: relative;
}
.cid-s3vd2DXgku figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-s3vd2DXgku .image-block {
    width: 100% !important;
  }
}
.cid-s4xOjH8zp3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s4xOjH8zp3 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4xOjH8zp3 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s4xOjH8zp3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4xOjH8zp3 .inner-container {
    width: 100% !important;
  }
}
.cid-sfuSxYEwz3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sfuSioVvDa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sfuSioVvDa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sfuSioVvDa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sfuSioVvDa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sfuSioVvDa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sfuSioVvDa .row > .row {
  display: block;
}
.cid-sfuSioVvDa .mbr-gallery-item {
  width: 100%;
}
.cid-sfuSioVvDa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sfuSioVvDa .mbr-gallery-item > div {
  position: relative;
}
.cid-sfuSioVvDa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sfuSioVvDa .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sfuSioVvDa .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sfuSioVvDa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sfuSTsaDEO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sfuSVsE0cl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sfuSVsE0cl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sfuSVsE0cl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sfuSVsE0cl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sfuSVsE0cl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sfuSVsE0cl .row > .row {
  display: block;
}
.cid-sfuSVsE0cl .mbr-gallery-item {
  width: 100%;
}
.cid-sfuSVsE0cl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sfuSVsE0cl .mbr-gallery-item > div {
  position: relative;
}
.cid-sfuSVsE0cl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sfuSVsE0cl .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sfuSVsE0cl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sfuSVsE0cl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sfuTaR1FVB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sfuTdwa29R {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sfuTdwa29R .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sfuTdwa29R .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sfuTdwa29R .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sfuTdwa29R .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sfuTdwa29R .row > .row {
  display: block;
}
.cid-sfuTdwa29R .mbr-gallery-item {
  width: 100%;
}
.cid-sfuTdwa29R .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sfuTdwa29R .mbr-gallery-item > div {
  position: relative;
}
.cid-sfuTdwa29R .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sfuTdwa29R .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sfuTdwa29R .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sfuTdwa29R .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sfuZe1kR0U {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sfuTrtHrg0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sfuTuGx9Fr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sfuTuGx9Fr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sfuTuGx9Fr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sfuTuGx9Fr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sfuTuGx9Fr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sfuTuGx9Fr .row > .row {
  display: block;
}
.cid-sfuTuGx9Fr .mbr-gallery-item {
  width: 100%;
}
.cid-sfuTuGx9Fr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sfuTuGx9Fr .mbr-gallery-item > div {
  position: relative;
}
.cid-sfuTuGx9Fr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sfuTuGx9Fr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sfuTuGx9Fr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sfuTuGx9Fr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sfuTt4lezT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sfuTw4qcDU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sfuTw4qcDU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sfuTw4qcDU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sfuTw4qcDU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sfuTw4qcDU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sfuTw4qcDU .row > .row {
  display: block;
}
.cid-sfuTw4qcDU .mbr-gallery-item {
  width: 100%;
}
.cid-sfuTw4qcDU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sfuTw4qcDU .mbr-gallery-item > div {
  position: relative;
}
.cid-sfuTw4qcDU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sfuTw4qcDU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sfuTw4qcDU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sfuTw4qcDU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sfuU3BgT2z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sfuU9LQhjA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-s8knwCeqsh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-s8knyHocq8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s8knyHocq8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s8knyHocq8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s8knyHocq8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s8knyHocq8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s8knyHocq8 .row > .row {
  display: block;
}
.cid-s8knyHocq8 .mbr-gallery-item {
  width: 100%;
}
.cid-s8knyHocq8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s8knyHocq8 .mbr-gallery-item > div {
  position: relative;
}
.cid-s8knyHocq8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s8knyHocq8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s8knyHocq8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s8knyHocq8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8kozkk0tv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-s8knCzrswx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s8knCzrswx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s8knCzrswx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s8knCzrswx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s8knCzrswx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s8knCzrswx .row > .row {
  display: block;
}
.cid-s8knCzrswx .mbr-gallery-item {
  width: 100%;
}
.cid-s8knCzrswx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s8knCzrswx .mbr-gallery-item > div {
  position: relative;
}
.cid-s8knCzrswx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s8knCzrswx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s8knCzrswx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s8knCzrswx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8koAqC1LO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-s8knEF7U12 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s8knEF7U12 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s8knEF7U12 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s8knEF7U12 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s8knEF7U12 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s8knEF7U12 .row > .row {
  display: block;
}
.cid-s8knEF7U12 .mbr-gallery-item {
  width: 100%;
}
.cid-s8knEF7U12 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s8knEF7U12 .mbr-gallery-item > div {
  position: relative;
}
.cid-s8knEF7U12 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s8knEF7U12 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s8knEF7U12 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s8knEF7U12 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8koBedk0D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-s8knGujNdv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s8knGujNdv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s8knGujNdv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s8knGujNdv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s8knGujNdv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s8knGujNdv .row > .row {
  display: block;
}
.cid-s8knGujNdv .mbr-gallery-item {
  width: 100%;
}
.cid-s8knGujNdv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s8knGujNdv .mbr-gallery-item > div {
  position: relative;
}
.cid-s8knGujNdv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s8knGujNdv .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s8knGujNdv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s8knGujNdv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2C4wRDpfd {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #15ece0;
}
.cid-s2C4wRDpfd .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2C4wRDpfd div.b {
  padding-top: 2rem;
}
.cid-s2C4wRDpfd H5 {
  color: #232323;
}
.cid-s2C4PMHxDv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s2C4PMHxDv .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2C4PMHxDv .section-text {
  padding: 2rem 0;
}
.cid-s2C4PMHxDv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2C4PMHxDv .inner-container {
    width: 100% !important;
  }
}
.cid-s2C4PMSnlM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s2C4PMSnlM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2C4PMSnlM .section-text {
  padding: 2rem 0;
}
.cid-s2C4PMSnlM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2C4PMSnlM .inner-container {
    width: 100% !important;
  }
}
.cid-s44is2bszY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s44is2bszY .mbr-section-subtitle {
  color: #767676;
}
.cid-s44is2bszY .container-table {
  margin: 0 auto;
}
.cid-s44is2bszY .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s44is2bszY .dataTables_wrapper {
  display: block;
}
.cid-s44is2bszY .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s44is2bszY .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s44is2bszY table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s44is2bszY table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s44is2bszY table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s44is2bszY table td {
  border-top: 1px solid #232323;
}
.cid-s44is2bszY table.table {
  background: #3eddea;
}
.cid-s44is2bszY .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s44is2bszY .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s44is2bszY .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s44is2bszY .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s44is2bszY .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s44is2bszY .dataTables_filter {
    text-align: center;
  }
  .cid-s44is2bszY .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s44is2bszY .mbr-section-title {
  color: #232323;
}
.cid-s44is2bszY .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-s44is2bszY .body-item {
  text-align: center;
}
.cid-s2C4PNzkea {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s2C4PNzkea .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2C4PNzkea div.b {
  padding-top: 2rem;
}
.cid-s2C4PNzkea H5 {
  color: #232323;
}
.cid-s2EAXWNuGK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0e23f0;
}
.cid-s2EAXWNuGK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2EAXWNuGK .section-text {
  padding: 2rem 0;
}
.cid-s2EAXWNuGK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2EAXWNuGK .inner-container {
    width: 100% !important;
  }
}
.cid-s2EAXXbZJf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0e23f0;
}
.cid-s2EAXXbZJf .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2EAXXbZJf .section-text {
  padding: 2rem 0;
  color: #f7ed4a;
}
.cid-s2EAXXbZJf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2EAXXbZJf .inner-container {
    width: 100% !important;
  }
}
.cid-uFy4c2iTo8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #0e23f0;
}
.cid-uFy4c2iTo8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFy4c2iTo8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFy4c2iTo8 .row {
  justify-content: center;
}
.cid-uFy4c2iTo8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFy4c2iTo8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFy4c2iTo8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFy4c2iTo8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFy4c2iTo8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFy4c2iTo8 .mbr-text_1,
.cid-uFy4c2iTo8 .mbr-text_2,
.cid-uFy4c2iTo8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFy4c2iTo8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy4c2iTo8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFy4c2iTo8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-uFy4c2iTo8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-uFy4c2iTo8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy4c2iTo8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFy4c2iTo8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFy4c2iTo8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFy4c2iTo8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-uFy4c2iTo8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFy4c2iTo8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uFy4c2iTo8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFy4c2iTo8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHk1iQqjxy {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #0e23f0;
}
.cid-uHk1iQqjxy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHk1iQqjxy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHk1iQqjxy .row {
  justify-content: center;
}
.cid-uHk1iQqjxy .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHk1iQqjxy .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHk1iQqjxy .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHk1iQqjxy .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHk1iQqjxy .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHk1iQqjxy .mbr-text_1,
.cid-uHk1iQqjxy .mbr-text_2,
.cid-uHk1iQqjxy .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHk1iQqjxy .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk1iQqjxy .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHk1iQqjxy .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk1iQqjxy .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk1iQqjxy .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk1iQqjxy .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHk1iQqjxy .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHk1iQqjxy .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk1iQqjxy .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk1iQqjxy .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHk1iQqjxy .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHk1iQqjxy .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHk1iQqjxy .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7fw77CU9C {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #0e23f0;
}
.cid-v7fw77CU9C .mbr-section-subtitle {
  color: #767676;
}
.cid-v7fw77CU9C .container-table {
  margin: 0 auto;
}
.cid-v7fw77CU9C .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7fw77CU9C .dataTables_wrapper {
  display: block;
}
.cid-v7fw77CU9C .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7fw77CU9C .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7fw77CU9C table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7fw77CU9C table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7fw77CU9C table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7fw77CU9C table td {
  border-top: 1px solid #232323;
}
.cid-v7fw77CU9C table.table {
  background: #f9f9f9;
}
.cid-v7fw77CU9C .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7fw77CU9C .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7fw77CU9C .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7fw77CU9C .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7fw77CU9C .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7fw77CU9C .dataTables_filter {
    text-align: center;
  }
  .cid-v7fw77CU9C .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7fw77CU9C .mbr-section-title {
  color: #232323;
}
.cid-v7fw77CU9C .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7fw77CU9C .body-item {
  text-align: center;
}
.cid-s2EAXYM3Ef {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #0e23f0;
}
.cid-s2EAXYM3Ef .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2EAXYM3Ef div.b {
  padding-top: 2rem;
}
.cid-s2EAXYM3Ef H5 {
  color: #f7ed4a;
}
.cid-s2GnrE18L0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s2GnrE18L0 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2GnrE18L0 .section-text {
  padding: 2rem 0;
}
.cid-s2GnrE18L0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2GnrE18L0 .inner-container {
    width: 100% !important;
  }
}
.cid-uFIJgfhGPn {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-uFIJgfhGPn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFIJgfhGPn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFIJgfhGPn .row {
  justify-content: center;
}
.cid-uFIJgfhGPn .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFIJgfhGPn .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFIJgfhGPn .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFIJgfhGPn .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFIJgfhGPn .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFIJgfhGPn .mbr-text_1,
.cid-uFIJgfhGPn .mbr-text_2,
.cid-uFIJgfhGPn .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFIJgfhGPn .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIJgfhGPn .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #db4af7;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFIJgfhGPn .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFIJgfhGPn .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFIJgfhGPn .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIJgfhGPn .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #db4af7;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFIJgfhGPn .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #db4af7;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFIJgfhGPn .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIJgfhGPn .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFIJgfhGPn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFIJgfhGPn .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-uFIJgfhGPn .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFIJgfhGPn .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHk2ovHM84 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-uHk2ovHM84 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHk2ovHM84 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHk2ovHM84 .row {
  justify-content: center;
}
.cid-uHk2ovHM84 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHk2ovHM84 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHk2ovHM84 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHk2ovHM84 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHk2ovHM84 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHk2ovHM84 .mbr-text_1,
.cid-uHk2ovHM84 .mbr-text_2,
.cid-uHk2ovHM84 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHk2ovHM84 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk2ovHM84 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHk2ovHM84 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-uHk2ovHM84 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-uHk2ovHM84 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk2ovHM84 .cards_2 .card-wrapper:nth-child(2) .btn {
  width: 100%;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
}
.cid-uHk2ovHM84 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHk2ovHM84 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHk2ovHM84 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk2ovHM84 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-uHk2ovHM84 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHk2ovHM84 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHk2ovHM84 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHk2ovHM84 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHk2ovHM84 .modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cid-uHk2ovHM84 .modal-header {
  border-bottom: 1px solid #eee;
  background-color: #f8f9fa;
  border-radius: 15px 15px 0 0;
}
.cid-uHk2ovHM84 .modal-title {
  color: #333;
  font-weight: 600;
}
.cid-uHk2ovHM84 .modal-body {
  padding: 2rem;
}
.cid-uHk2ovHM84 .form-label {
  color: #555;
  font-weight: 500;
}
.cid-uHk2ovHM84 .form-control {
  border-radius: 8px;
  border: 2px solid #ddd;
  padding: 12px 15px;
  font-size: 1rem;
}
.cid-uHk2ovHM84 .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.cid-uHk2ovHM84 .btn-primary {
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  background: linear-gradient(45deg, #007bff, #0056b3);
  border: none;
}
.cid-uHk2ovHM84 .btn-primary:hover {
  background: linear-gradient(45deg, #0056b3, #004085);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}
@media (max-width: 576px) {
  .cid-uHk2ovHM84 .modal-dialog {
    margin: 1rem;
  }
  .cid-uHk2ovHM84 .modal-body {
    padding: 1.5rem;
  }
}
.cid-s2GnrEPVR7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s2GnrEPVR7 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2GnrEPVR7 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2GnrEPVR7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2GnrEPVR7 .inner-container {
    width: 100% !important;
  }
}
.cid-s2GnrECdS0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s2GnrECdS0 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2GnrECdS0 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2GnrECdS0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2GnrECdS0 .inner-container {
    width: 100% !important;
  }
}
.cid-uHwNCiIRBA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uHwNCiIRBA .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uHwNCiIRBA .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-uHwNCiIRBA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uHwNCiIRBA .inner-container {
    width: 100% !important;
  }
}
.cid-vcv11nNFsy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-vcv11nNFsy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-vcv11nNFsy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vcv11nNFsy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vcv11nNFsy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-vcv11nNFsy .row > .row {
  display: block;
}
.cid-vcv11nNFsy .mbr-gallery-item {
  width: 100%;
}
.cid-vcv11nNFsy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-vcv11nNFsy .mbr-gallery-item > div {
  position: relative;
}
.cid-vcv11nNFsy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-vcv11nNFsy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-vcv11nNFsy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-vcv11nNFsy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-vfaPskQUdA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-vfaPskQUdA .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vfaPskQUdA .section-text {
  padding: 2rem 0;
}
.cid-vfaPskQUdA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vfaPskQUdA .inner-container {
    width: 100% !important;
  }
}
.cid-s2GnrF1E8k {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s2GnrF1E8k .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2GnrF1E8k div.b {
  padding-top: 2rem;
}
.cid-s2GnrF1E8k H5 {
  color: #232323;
}
.cid-tmcW5k4axU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tmcW5k4axU .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tmcW5k4axU .section-text {
  padding: 2rem 0;
}
.cid-tmcW5k4axU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tmcW5k4axU .inner-container {
    width: 100% !important;
  }
}
.cid-tmcW5k4axU .section-text DIV {
  text-align: center;
}
.cid-s2Gnz5Wby9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s2Gnz5Wby9 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Gnz5Wby9 .section-text {
  padding: 2rem 0;
}
.cid-s2Gnz5Wby9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Gnz5Wby9 .inner-container {
    width: 100% !important;
  }
}
.cid-v6Wx7gZQv9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v6Wx7gZQv9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Wx7gZQv9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Wx7gZQv9 .row {
  justify-content: center;
}
.cid-v6Wx7gZQv9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Wx7gZQv9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Wx7gZQv9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Wx7gZQv9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Wx7gZQv9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Wx7gZQv9 .mbr-text_1,
.cid-v6Wx7gZQv9 .mbr-text_2,
.cid-v6Wx7gZQv9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Wx7gZQv9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wx7gZQv9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Wx7gZQv9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Wx7gZQv9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Wx7gZQv9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wx7gZQv9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Wx7gZQv9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Wx7gZQv9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wx7gZQv9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Wx7gZQv9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Wx7gZQv9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Wx7gZQv9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Wx7gZQv9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6Wxa0SWMp {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v6Wxa0SWMp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Wxa0SWMp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Wxa0SWMp .row {
  justify-content: center;
}
.cid-v6Wxa0SWMp .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Wxa0SWMp .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Wxa0SWMp .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Wxa0SWMp .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Wxa0SWMp .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Wxa0SWMp .mbr-text_1,
.cid-v6Wxa0SWMp .mbr-text_2,
.cid-v6Wxa0SWMp .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Wxa0SWMp .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wxa0SWMp .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Wxa0SWMp .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Wxa0SWMp .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Wxa0SWMp .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wxa0SWMp .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Wxa0SWMp .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Wxa0SWMp .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wxa0SWMp .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Wxa0SWMp .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Wxa0SWMp .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Wxa0SWMp .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Wxa0SWMp .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2Gnz6C6yj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s2Gnz6C6yj .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Gnz6C6yj .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2Gnz6C6yj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Gnz6C6yj .inner-container {
    width: 100% !important;
  }
}
.cid-s2Gnz6PAlh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s2Gnz6PAlh .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Gnz6PAlh .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2Gnz6PAlh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Gnz6PAlh .inner-container {
    width: 100% !important;
  }
}
.cid-s3vURUlFcP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s3vURUlFcP .mbr-section-subtitle {
  color: #767676;
}
.cid-s3vURUlFcP .container-table {
  margin: 0 auto;
}
.cid-s3vURUlFcP .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s3vURUlFcP .dataTables_wrapper {
  display: block;
}
.cid-s3vURUlFcP .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s3vURUlFcP .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s3vURUlFcP table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s3vURUlFcP table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s3vURUlFcP table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s3vURUlFcP table td {
  border-top: 1px solid #232323;
}
.cid-s3vURUlFcP .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s3vURUlFcP .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s3vURUlFcP .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s3vURUlFcP .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s3vURUlFcP .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s3vURUlFcP .dataTables_filter {
    text-align: center;
  }
  .cid-s3vURUlFcP .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s3vURUlFcP .mbr-section-title {
  color: #232323;
}
.cid-s3vURUlFcP .head-item {
  text-align: center;
  color: #232323;
}
.cid-s3vURUlFcP .body-item {
  text-align: center;
}
.cid-s2Gnz6Y8Z7 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s2Gnz6Y8Z7 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2Gnz6Y8Z7 div.b {
  padding-top: 2rem;
}
.cid-s2Gnz6Y8Z7 H5 {
  color: #232323;
}
.cid-s2GnEgHdC9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s2GnEgHdC9 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2GnEgHdC9 .section-text {
  padding: 2rem 0;
}
.cid-s2GnEgHdC9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2GnEgHdC9 .inner-container {
    width: 100% !important;
  }
}
.cid-uFIIiCXdFv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-uFIIiCXdFv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFIIiCXdFv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFIIiCXdFv .row {
  justify-content: center;
}
.cid-uFIIiCXdFv .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFIIiCXdFv .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFIIiCXdFv .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFIIiCXdFv .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFIIiCXdFv .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFIIiCXdFv .mbr-text_1,
.cid-uFIIiCXdFv .mbr-text_2,
.cid-uFIIiCXdFv .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFIIiCXdFv .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIIiCXdFv .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFIIiCXdFv .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFIIiCXdFv .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFIIiCXdFv .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIIiCXdFv .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFIIiCXdFv .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFIIiCXdFv .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIIiCXdFv .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFIIiCXdFv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFIIiCXdFv .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-uFIIiCXdFv .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFIIiCXdFv .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHk2CGCIfP {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-uHk2CGCIfP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHk2CGCIfP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHk2CGCIfP .row {
  justify-content: center;
}
.cid-uHk2CGCIfP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHk2CGCIfP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHk2CGCIfP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHk2CGCIfP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHk2CGCIfP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHk2CGCIfP .mbr-text_1,
.cid-uHk2CGCIfP .mbr-text_2,
.cid-uHk2CGCIfP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHk2CGCIfP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk2CGCIfP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHk2CGCIfP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk2CGCIfP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk2CGCIfP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk2CGCIfP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHk2CGCIfP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHk2CGCIfP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk2CGCIfP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk2CGCIfP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHk2CGCIfP .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHk2CGCIfP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHk2CGCIfP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2GnEhokf8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s2GnEhokf8 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2GnEhokf8 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2GnEhokf8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2GnEhokf8 .inner-container {
    width: 100% !important;
  }
}
.cid-s2GnEhcQW1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s2GnEhcQW1 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2GnEhcQW1 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2GnEhcQW1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2GnEhcQW1 .inner-container {
    width: 100% !important;
  }
}
.cid-uUwin3EMhz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uUwin3EMhz .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uUwin3EMhz .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-uUwin3EMhz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uUwin3EMhz .inner-container {
    width: 100% !important;
  }
}
.cid-v8atlIpEqC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8atlIpEqC .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v8atlIpEqC .section-text {
  padding: 2rem 0;
}
.cid-v8atlIpEqC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v8atlIpEqC .inner-container {
    width: 100% !important;
  }
}
.cid-v8atoaqZSW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8atoaqZSW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v8atoaqZSW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v8atoaqZSW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v8atoaqZSW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v8atoaqZSW .row > .row {
  display: block;
}
.cid-v8atoaqZSW .mbr-gallery-item {
  width: 100%;
}
.cid-v8atoaqZSW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v8atoaqZSW .mbr-gallery-item > div {
  position: relative;
}
.cid-v8atoaqZSW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v8atoaqZSW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v8atoaqZSW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v8atoaqZSW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2GnEhARMN {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s2GnEhARMN .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2GnEhARMN div.b {
  padding-top: 2rem;
}
.cid-s2GnEhARMN H5 {
  color: #232323;
}
.cid-s2GnI3hqTL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s2GnI3hqTL .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2GnI3hqTL .section-text {
  padding: 2rem 0;
}
.cid-s2GnI3hqTL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2GnI3hqTL .inner-container {
    width: 100% !important;
  }
}
.cid-uFIIHPftW1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-uFIIHPftW1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFIIHPftW1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFIIHPftW1 .row {
  justify-content: center;
}
.cid-uFIIHPftW1 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uFIIHPftW1 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uFIIHPftW1 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uFIIHPftW1 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uFIIHPftW1 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uFIIHPftW1 .mbr-text_1,
.cid-uFIIHPftW1 .mbr-text_2,
.cid-uFIIHPftW1 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uFIIHPftW1 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIIHPftW1 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #db4af7;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uFIIHPftW1 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFIIHPftW1 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFIIHPftW1 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIIHPftW1 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #db4af7;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uFIIHPftW1 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #db4af7;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uFIIHPftW1 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uFIIHPftW1 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uFIIHPftW1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFIIHPftW1 .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-uFIIHPftW1 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uFIIHPftW1 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHk2MAd0bO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-uHk2MAd0bO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHk2MAd0bO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHk2MAd0bO .row {
  justify-content: center;
}
.cid-uHk2MAd0bO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHk2MAd0bO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHk2MAd0bO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHk2MAd0bO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHk2MAd0bO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHk2MAd0bO .mbr-text_1,
.cid-uHk2MAd0bO .mbr-text_2,
.cid-uHk2MAd0bO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHk2MAd0bO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk2MAd0bO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHk2MAd0bO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk2MAd0bO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk2MAd0bO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk2MAd0bO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHk2MAd0bO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHk2MAd0bO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk2MAd0bO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk2MAd0bO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHk2MAd0bO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHk2MAd0bO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHk2MAd0bO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2GnI3TlGa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s2GnI3TlGa .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2GnI3TlGa .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2GnI3TlGa .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2GnI3TlGa .inner-container {
    width: 100% !important;
  }
}
.cid-s2GnI3KGAl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s2GnI3KGAl .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2GnI3KGAl .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2GnI3KGAl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2GnI3KGAl .inner-container {
    width: 100% !important;
  }
}
.cid-tLtwg2JGna {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtwg2JGna .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtwg2JGna .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tLtwg2JGna .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtwg2JGna .inner-container {
    width: 100% !important;
  }
}
.cid-s2GnI43Ndp {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s2GnI43Ndp .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2GnI43Ndp div.b {
  padding-top: 2rem;
}
.cid-s2GnI43Ndp H5 {
  color: #232323;
}
.cid-s2HUR89iLq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2HUR89iLq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2HUR89iLq .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-s2HUR89iLq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2HUR89iLq .inner-container {
    width: 100% !important;
  }
}
.cid-v7dHeooNbP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dHeooNbP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dHeooNbP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dHeooNbP .row {
  justify-content: center;
}
.cid-v7dHeooNbP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dHeooNbP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dHeooNbP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dHeooNbP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dHeooNbP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dHeooNbP .mbr-text_1,
.cid-v7dHeooNbP .mbr-text_2,
.cid-v7dHeooNbP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dHeooNbP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHeooNbP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHeooNbP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dHeooNbP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dHeooNbP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHeooNbP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHeooNbP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dHeooNbP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHeooNbP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dHeooNbP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dHeooNbP .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dHeooNbP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dHeooNbP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dHflzvIg {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dHflzvIg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dHflzvIg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dHflzvIg .row {
  justify-content: center;
}
.cid-v7dHflzvIg .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dHflzvIg .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dHflzvIg .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dHflzvIg .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dHflzvIg .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dHflzvIg .mbr-text_1,
.cid-v7dHflzvIg .mbr-text_2,
.cid-v7dHflzvIg .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dHflzvIg .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHflzvIg .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHflzvIg .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dHflzvIg .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dHflzvIg .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHflzvIg .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHflzvIg .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dHflzvIg .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHflzvIg .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dHflzvIg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dHflzvIg .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dHflzvIg .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dHflzvIg .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2HUR8HAsj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2HUR8HAsj .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2HUR8HAsj .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2HUR8HAsj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2HUR8HAsj .inner-container {
    width: 100% !important;
  }
}
.cid-v7dHhma2Ux {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dHhma2Ux .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dHhma2Ux .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dHhma2Ux .row {
  justify-content: center;
}
.cid-v7dHhma2Ux .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dHhma2Ux .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dHhma2Ux .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dHhma2Ux .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dHhma2Ux .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dHhma2Ux .mbr-text_1,
.cid-v7dHhma2Ux .mbr-text_2,
.cid-v7dHhma2Ux .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dHhma2Ux .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHhma2Ux .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHhma2Ux .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dHhma2Ux .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dHhma2Ux .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHhma2Ux .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHhma2Ux .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dHhma2Ux .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHhma2Ux .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dHhma2Ux .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dHhma2Ux .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dHhma2Ux .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dHhma2Ux .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJwzPrVNa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJwzPrVNa .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJwzPrVNa .container-table {
  margin: 0 auto;
}
.cid-tJJwzPrVNa .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJwzPrVNa .dataTables_wrapper {
  display: block;
}
.cid-tJJwzPrVNa .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJwzPrVNa .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJwzPrVNa table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJwzPrVNa table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJwzPrVNa table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJwzPrVNa table td {
  border-top: 1px solid #232323;
}
.cid-tJJwzPrVNa table.table {
  background: #ffffff;
}
.cid-tJJwzPrVNa .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJwzPrVNa .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJwzPrVNa .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJwzPrVNa .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJwzPrVNa .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJwzPrVNa .dataTables_filter {
    text-align: center;
  }
  .cid-tJJwzPrVNa .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJwzPrVNa .mbr-section-title {
  color: #ff3366;
}
.cid-tJJwzPrVNa .head-item {
  text-align: center;
}
.cid-tJJwzPrVNa .body-item {
  text-align: center;
}
.cid-svHTQ4QMrN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHTR5pAEg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svHTR5pAEg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svHTR5pAEg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svHTR5pAEg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svHTR5pAEg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svHTR5pAEg .row > .row {
  display: block;
}
.cid-svHTR5pAEg .mbr-gallery-item {
  width: 100%;
}
.cid-svHTR5pAEg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svHTR5pAEg .mbr-gallery-item > div {
  position: relative;
}
.cid-svHTR5pAEg .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svHTR5pAEg .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svHTR5pAEg .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svHTR5pAEg .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2HUR9J915 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2HUR9J915 .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2HUR9J915 div.b {
  padding-top: 2rem;
}
.cid-v7dHdIWxSF {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dHdIWxSF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dHdIWxSF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dHdIWxSF .row {
  justify-content: center;
}
.cid-v7dHdIWxSF .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dHdIWxSF .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dHdIWxSF .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dHdIWxSF .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dHdIWxSF .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dHdIWxSF .mbr-text_1,
.cid-v7dHdIWxSF .mbr-text_2,
.cid-v7dHdIWxSF .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dHdIWxSF .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHdIWxSF .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHdIWxSF .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dHdIWxSF .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dHdIWxSF .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHdIWxSF .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHdIWxSF .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dHdIWxSF .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHdIWxSF .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dHdIWxSF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dHdIWxSF .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dHdIWxSF .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dHdIWxSF .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2HWPBd4pE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2HWPBd4pE .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2HWPBd4pE .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-s2HWPBd4pE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2HWPBd4pE .inner-container {
    width: 100% !important;
  }
}
.cid-v7dHABWP2Q {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dHABWP2Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dHABWP2Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dHABWP2Q .row {
  justify-content: center;
}
.cid-v7dHABWP2Q .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dHABWP2Q .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dHABWP2Q .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dHABWP2Q .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dHABWP2Q .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dHABWP2Q .mbr-text_1,
.cid-v7dHABWP2Q .mbr-text_2,
.cid-v7dHABWP2Q .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dHABWP2Q .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHABWP2Q .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHABWP2Q .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dHABWP2Q .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dHABWP2Q .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHABWP2Q .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHABWP2Q .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dHABWP2Q .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHABWP2Q .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dHABWP2Q .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dHABWP2Q .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dHABWP2Q .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dHABWP2Q .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dHBviCsV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dHBviCsV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dHBviCsV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dHBviCsV .row {
  justify-content: center;
}
.cid-v7dHBviCsV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dHBviCsV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dHBviCsV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dHBviCsV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dHBviCsV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dHBviCsV .mbr-text_1,
.cid-v7dHBviCsV .mbr-text_2,
.cid-v7dHBviCsV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dHBviCsV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHBviCsV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHBviCsV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dHBviCsV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dHBviCsV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHBviCsV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHBviCsV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dHBviCsV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHBviCsV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dHBviCsV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dHBviCsV .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dHBviCsV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dHBviCsV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2HWPBMOna {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2HWPBMOna .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2HWPBMOna .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2HWPBMOna .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2HWPBMOna .inner-container {
    width: 100% !important;
  }
}
.cid-v7dHCiQxyA {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dHCiQxyA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dHCiQxyA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dHCiQxyA .row {
  justify-content: center;
}
.cid-v7dHCiQxyA .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dHCiQxyA .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dHCiQxyA .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dHCiQxyA .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dHCiQxyA .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dHCiQxyA .mbr-text_1,
.cid-v7dHCiQxyA .mbr-text_2,
.cid-v7dHCiQxyA .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dHCiQxyA .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHCiQxyA .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHCiQxyA .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dHCiQxyA .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dHCiQxyA .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHCiQxyA .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHCiQxyA .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dHCiQxyA .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHCiQxyA .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dHCiQxyA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dHCiQxyA .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dHCiQxyA .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dHCiQxyA .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJwFkSTok {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJwFkSTok .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJwFkSTok .container-table {
  margin: 0 auto;
}
.cid-tJJwFkSTok .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJwFkSTok .dataTables_wrapper {
  display: block;
}
.cid-tJJwFkSTok .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJwFkSTok .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJwFkSTok table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJwFkSTok table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJwFkSTok table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJwFkSTok table td {
  border-top: 1px solid #232323;
}
.cid-tJJwFkSTok table.table {
  background: #ffffff;
}
.cid-tJJwFkSTok .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJwFkSTok .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJwFkSTok .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJwFkSTok .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJwFkSTok .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJwFkSTok .dataTables_filter {
    text-align: center;
  }
  .cid-tJJwFkSTok .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJwFkSTok .mbr-section-title {
  color: #ff3366;
}
.cid-tJJwFkSTok .head-item {
  text-align: center;
}
.cid-tJJwFkSTok .body-item {
  text-align: center;
}
.cid-svHSjA8xgg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHSkrPJFe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svHSkrPJFe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svHSkrPJFe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svHSkrPJFe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svHSkrPJFe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svHSkrPJFe .row > .row {
  display: block;
}
.cid-svHSkrPJFe .mbr-gallery-item {
  width: 100%;
}
.cid-svHSkrPJFe .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svHSkrPJFe .mbr-gallery-item > div {
  position: relative;
}
.cid-svHSkrPJFe .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svHSkrPJFe .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svHSkrPJFe .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svHSkrPJFe .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2HWPDrObv {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2HWPDrObv .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2HWPDrObv div.b {
  padding-top: 2rem;
}
.cid-s2Jep7auob {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2Jep7auob .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Jep7auob .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-s2Jep7auob .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Jep7auob .inner-container {
    width: 100% !important;
  }
}
.cid-v7dHUA7AKd {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dHUA7AKd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dHUA7AKd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dHUA7AKd .row {
  justify-content: center;
}
.cid-v7dHUA7AKd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dHUA7AKd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dHUA7AKd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dHUA7AKd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dHUA7AKd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dHUA7AKd .mbr-text_1,
.cid-v7dHUA7AKd .mbr-text_2,
.cid-v7dHUA7AKd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dHUA7AKd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHUA7AKd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHUA7AKd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dHUA7AKd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dHUA7AKd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHUA7AKd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHUA7AKd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dHUA7AKd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHUA7AKd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dHUA7AKd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dHUA7AKd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dHUA7AKd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dHUA7AKd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dHVn5U90 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dHVn5U90 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dHVn5U90 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dHVn5U90 .row {
  justify-content: center;
}
.cid-v7dHVn5U90 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dHVn5U90 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dHVn5U90 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dHVn5U90 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dHVn5U90 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dHVn5U90 .mbr-text_1,
.cid-v7dHVn5U90 .mbr-text_2,
.cid-v7dHVn5U90 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dHVn5U90 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHVn5U90 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHVn5U90 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dHVn5U90 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dHVn5U90 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHVn5U90 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHVn5U90 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dHVn5U90 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHVn5U90 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dHVn5U90 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dHVn5U90 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dHVn5U90 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dHVn5U90 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2Jep7FSKL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2Jep7FSKL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Jep7FSKL .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2Jep7FSKL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Jep7FSKL .inner-container {
    width: 100% !important;
  }
}
.cid-v7dHWjXbbX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dHWjXbbX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dHWjXbbX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dHWjXbbX .row {
  justify-content: center;
}
.cid-v7dHWjXbbX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dHWjXbbX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dHWjXbbX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dHWjXbbX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dHWjXbbX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dHWjXbbX .mbr-text_1,
.cid-v7dHWjXbbX .mbr-text_2,
.cid-v7dHWjXbbX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dHWjXbbX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHWjXbbX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHWjXbbX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dHWjXbbX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dHWjXbbX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHWjXbbX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dHWjXbbX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dHWjXbbX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dHWjXbbX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dHWjXbbX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dHWjXbbX .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dHWjXbbX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dHWjXbbX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJwKrIagA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJwKrIagA .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJwKrIagA .container-table {
  margin: 0 auto;
}
.cid-tJJwKrIagA .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJwKrIagA .dataTables_wrapper {
  display: block;
}
.cid-tJJwKrIagA .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJwKrIagA .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJwKrIagA table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJwKrIagA table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJwKrIagA table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJwKrIagA table td {
  border-top: 1px solid #232323;
}
.cid-tJJwKrIagA table.table {
  background: #ffffff;
}
.cid-tJJwKrIagA .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJwKrIagA .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJwKrIagA .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJwKrIagA .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJwKrIagA .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJwKrIagA .dataTables_filter {
    text-align: center;
  }
  .cid-tJJwKrIagA .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJwKrIagA .mbr-section-title {
  color: #ff3366;
}
.cid-tJJwKrIagA .head-item {
  text-align: center;
}
.cid-tJJwKrIagA .body-item {
  text-align: center;
}
.cid-svHTrwV236 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHTsj15cc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svHTsj15cc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svHTsj15cc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svHTsj15cc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svHTsj15cc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svHTsj15cc .row > .row {
  display: block;
}
.cid-svHTsj15cc .mbr-gallery-item {
  width: 100%;
}
.cid-svHTsj15cc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svHTsj15cc .mbr-gallery-item > div {
  position: relative;
}
.cid-svHTsj15cc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svHTsj15cc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svHTsj15cc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svHTsj15cc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2Jep9ikj2 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2Jep9ikj2 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2Jep9ikj2 div.b {
  padding-top: 2rem;
}
.cid-s2JeZGlfsN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JeZGlfsN .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JeZGlfsN .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-s2JeZGlfsN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JeZGlfsN .inner-container {
    width: 100% !important;
  }
}
.cid-v7dJAIQrUm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dJAIQrUm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dJAIQrUm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dJAIQrUm .row {
  justify-content: center;
}
.cid-v7dJAIQrUm .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dJAIQrUm .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dJAIQrUm .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dJAIQrUm .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dJAIQrUm .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dJAIQrUm .mbr-text_1,
.cid-v7dJAIQrUm .mbr-text_2,
.cid-v7dJAIQrUm .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dJAIQrUm .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJAIQrUm .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJAIQrUm .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dJAIQrUm .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dJAIQrUm .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJAIQrUm .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJAIQrUm .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dJAIQrUm .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJAIQrUm .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dJAIQrUm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dJAIQrUm .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dJAIQrUm .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dJAIQrUm .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dJBEkjr1 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dJBEkjr1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dJBEkjr1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dJBEkjr1 .row {
  justify-content: center;
}
.cid-v7dJBEkjr1 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dJBEkjr1 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dJBEkjr1 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dJBEkjr1 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dJBEkjr1 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dJBEkjr1 .mbr-text_1,
.cid-v7dJBEkjr1 .mbr-text_2,
.cid-v7dJBEkjr1 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dJBEkjr1 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJBEkjr1 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJBEkjr1 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dJBEkjr1 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dJBEkjr1 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJBEkjr1 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJBEkjr1 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dJBEkjr1 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJBEkjr1 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dJBEkjr1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dJBEkjr1 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dJBEkjr1 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dJBEkjr1 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2JeZGSudi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JeZGSudi .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JeZGSudi .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2JeZGSudi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JeZGSudi .inner-container {
    width: 100% !important;
  }
}
.cid-v7dJCDXAWK {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dJCDXAWK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dJCDXAWK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dJCDXAWK .row {
  justify-content: center;
}
.cid-v7dJCDXAWK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dJCDXAWK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dJCDXAWK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dJCDXAWK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dJCDXAWK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dJCDXAWK .mbr-text_1,
.cid-v7dJCDXAWK .mbr-text_2,
.cid-v7dJCDXAWK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dJCDXAWK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJCDXAWK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJCDXAWK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dJCDXAWK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dJCDXAWK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJCDXAWK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJCDXAWK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dJCDXAWK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJCDXAWK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dJCDXAWK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dJCDXAWK .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dJCDXAWK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dJCDXAWK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJx0mruZG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJx0mruZG .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJx0mruZG .container-table {
  margin: 0 auto;
}
.cid-tJJx0mruZG .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJx0mruZG .dataTables_wrapper {
  display: block;
}
.cid-tJJx0mruZG .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJx0mruZG .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJx0mruZG table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJx0mruZG table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJx0mruZG table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJx0mruZG table td {
  border-top: 1px solid #232323;
}
.cid-tJJx0mruZG table.table {
  background: #ffffff;
}
.cid-tJJx0mruZG .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJx0mruZG .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJx0mruZG .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJx0mruZG .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJx0mruZG .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJx0mruZG .dataTables_filter {
    text-align: center;
  }
  .cid-tJJx0mruZG .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJx0mruZG .mbr-section-title {
  color: #ff3366;
}
.cid-tJJx0mruZG .head-item {
  text-align: center;
}
.cid-tJJx0mruZG .body-item {
  text-align: center;
}
.cid-svHUB51IxJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHUBKUVIw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svHUBKUVIw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svHUBKUVIw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svHUBKUVIw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svHUBKUVIw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svHUBKUVIw .row > .row {
  display: block;
}
.cid-svHUBKUVIw .mbr-gallery-item {
  width: 100%;
}
.cid-svHUBKUVIw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svHUBKUVIw .mbr-gallery-item > div {
  position: relative;
}
.cid-svHUBKUVIw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svHUBKUVIw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svHUBKUVIw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svHUBKUVIw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2JeZIuOLQ {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2JeZIuOLQ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2JeZIuOLQ div.b {
  padding-top: 2rem;
}
.cid-s2JfzAmwVz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JfzAmwVz .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JfzAmwVz .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-s2JfzAmwVz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JfzAmwVz .inner-container {
    width: 100% !important;
  }
}
.cid-v7dJTsHpqq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dJTsHpqq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dJTsHpqq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dJTsHpqq .row {
  justify-content: center;
}
.cid-v7dJTsHpqq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dJTsHpqq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dJTsHpqq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dJTsHpqq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dJTsHpqq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dJTsHpqq .mbr-text_1,
.cid-v7dJTsHpqq .mbr-text_2,
.cid-v7dJTsHpqq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dJTsHpqq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJTsHpqq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJTsHpqq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dJTsHpqq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dJTsHpqq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJTsHpqq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJTsHpqq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dJTsHpqq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJTsHpqq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dJTsHpqq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dJTsHpqq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dJTsHpqq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dJTsHpqq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dJUmQIRg {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dJUmQIRg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dJUmQIRg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dJUmQIRg .row {
  justify-content: center;
}
.cid-v7dJUmQIRg .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dJUmQIRg .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dJUmQIRg .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dJUmQIRg .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dJUmQIRg .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dJUmQIRg .mbr-text_1,
.cid-v7dJUmQIRg .mbr-text_2,
.cid-v7dJUmQIRg .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dJUmQIRg .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJUmQIRg .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJUmQIRg .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dJUmQIRg .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dJUmQIRg .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJUmQIRg .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJUmQIRg .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dJUmQIRg .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJUmQIRg .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dJUmQIRg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dJUmQIRg .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dJUmQIRg .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dJUmQIRg .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2JfzAS0mw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JfzAS0mw .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JfzAS0mw .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2JfzAS0mw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JfzAS0mw .inner-container {
    width: 100% !important;
  }
}
.cid-v7dJVKNBTq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dJVKNBTq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dJVKNBTq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dJVKNBTq .row {
  justify-content: center;
}
.cid-v7dJVKNBTq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dJVKNBTq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dJVKNBTq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dJVKNBTq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dJVKNBTq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dJVKNBTq .mbr-text_1,
.cid-v7dJVKNBTq .mbr-text_2,
.cid-v7dJVKNBTq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dJVKNBTq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJVKNBTq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJVKNBTq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dJVKNBTq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dJVKNBTq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJVKNBTq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJVKNBTq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dJVKNBTq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJVKNBTq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dJVKNBTq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dJVKNBTq .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dJVKNBTq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dJVKNBTq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJx5Bj5D2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJx5Bj5D2 .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJx5Bj5D2 .container-table {
  margin: 0 auto;
}
.cid-tJJx5Bj5D2 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJx5Bj5D2 .dataTables_wrapper {
  display: block;
}
.cid-tJJx5Bj5D2 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJx5Bj5D2 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJx5Bj5D2 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJx5Bj5D2 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJx5Bj5D2 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJx5Bj5D2 table td {
  border-top: 1px solid #232323;
}
.cid-tJJx5Bj5D2 table.table {
  background: #ffffff;
}
.cid-tJJx5Bj5D2 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJx5Bj5D2 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJx5Bj5D2 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJx5Bj5D2 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJx5Bj5D2 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJx5Bj5D2 .dataTables_filter {
    text-align: center;
  }
  .cid-tJJx5Bj5D2 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJx5Bj5D2 .mbr-section-title {
  color: #ff3366;
}
.cid-tJJx5Bj5D2 .head-item {
  text-align: center;
}
.cid-tJJx5Bj5D2 .body-item {
  text-align: center;
}
.cid-svHVhEXo4X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHVijn3cr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svHVijn3cr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svHVijn3cr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svHVijn3cr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svHVijn3cr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svHVijn3cr .row > .row {
  display: block;
}
.cid-svHVijn3cr .mbr-gallery-item {
  width: 100%;
}
.cid-svHVijn3cr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svHVijn3cr .mbr-gallery-item > div {
  position: relative;
}
.cid-svHVijn3cr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svHVijn3cr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svHVijn3cr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svHVijn3cr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2JfzCqWGw {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2JfzCqWGw .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2JfzCqWGw div.b {
  padding-top: 2rem;
}
.cid-s2Jg9pqyaH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2Jg9pqyaH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Jg9pqyaH .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-s2Jg9pqyaH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Jg9pqyaH .inner-container {
    width: 100% !important;
  }
}
.cid-v7dKmgjxbI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dKmgjxbI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dKmgjxbI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dKmgjxbI .row {
  justify-content: center;
}
.cid-v7dKmgjxbI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dKmgjxbI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dKmgjxbI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dKmgjxbI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dKmgjxbI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dKmgjxbI .mbr-text_1,
.cid-v7dKmgjxbI .mbr-text_2,
.cid-v7dKmgjxbI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dKmgjxbI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKmgjxbI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dKmgjxbI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dKmgjxbI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dKmgjxbI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKmgjxbI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dKmgjxbI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dKmgjxbI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKmgjxbI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dKmgjxbI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dKmgjxbI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dKmgjxbI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dKmgjxbI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dKmZIqYl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dKmZIqYl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dKmZIqYl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dKmZIqYl .row {
  justify-content: center;
}
.cid-v7dKmZIqYl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dKmZIqYl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dKmZIqYl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dKmZIqYl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dKmZIqYl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dKmZIqYl .mbr-text_1,
.cid-v7dKmZIqYl .mbr-text_2,
.cid-v7dKmZIqYl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dKmZIqYl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKmZIqYl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dKmZIqYl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dKmZIqYl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dKmZIqYl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKmZIqYl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dKmZIqYl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dKmZIqYl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKmZIqYl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dKmZIqYl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dKmZIqYl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dKmZIqYl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dKmZIqYl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2Jg9pXq9i {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2Jg9pXq9i .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Jg9pXq9i .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2Jg9pXq9i .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Jg9pXq9i .inner-container {
    width: 100% !important;
  }
}
.cid-v7dKoKemjL {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dKoKemjL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dKoKemjL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dKoKemjL .row {
  justify-content: center;
}
.cid-v7dKoKemjL .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dKoKemjL .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dKoKemjL .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dKoKemjL .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dKoKemjL .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dKoKemjL .mbr-text_1,
.cid-v7dKoKemjL .mbr-text_2,
.cid-v7dKoKemjL .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dKoKemjL .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKoKemjL .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dKoKemjL .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dKoKemjL .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dKoKemjL .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKoKemjL .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dKoKemjL .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dKoKemjL .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKoKemjL .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dKoKemjL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dKoKemjL .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dKoKemjL .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dKoKemjL .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJxaxa5R4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJxaxa5R4 .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJxaxa5R4 .container-table {
  margin: 0 auto;
}
.cid-tJJxaxa5R4 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJxaxa5R4 .dataTables_wrapper {
  display: block;
}
.cid-tJJxaxa5R4 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJxaxa5R4 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJxaxa5R4 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJxaxa5R4 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJxaxa5R4 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJxaxa5R4 table td {
  border-top: 1px solid #232323;
}
.cid-tJJxaxa5R4 table.table {
  background: #ffffff;
}
.cid-tJJxaxa5R4 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJxaxa5R4 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJxaxa5R4 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJxaxa5R4 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJxaxa5R4 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJxaxa5R4 .dataTables_filter {
    text-align: center;
  }
  .cid-tJJxaxa5R4 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJxaxa5R4 .mbr-section-title {
  color: #ff3366;
}
.cid-tJJxaxa5R4 .head-item {
  text-align: center;
}
.cid-tJJxaxa5R4 .body-item {
  text-align: center;
}
.cid-svHVVXeitX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHVWCebVP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svHVWCebVP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svHVWCebVP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svHVWCebVP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svHVWCebVP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svHVWCebVP .row > .row {
  display: block;
}
.cid-svHVWCebVP .mbr-gallery-item {
  width: 100%;
}
.cid-svHVWCebVP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svHVWCebVP .mbr-gallery-item > div {
  position: relative;
}
.cid-svHVWCebVP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svHVWCebVP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svHVWCebVP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svHVWCebVP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2Jg9rAIT3 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2Jg9rAIT3 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2Jg9rAIT3 div.b {
  padding-top: 2rem;
}
.cid-s2JgvjTyLD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JgvjTyLD .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JgvjTyLD .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-s2JgvjTyLD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JgvjTyLD .inner-container {
    width: 100% !important;
  }
}
.cid-v7dKRWkmwe {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dKRWkmwe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dKRWkmwe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dKRWkmwe .row {
  justify-content: center;
}
.cid-v7dKRWkmwe .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dKRWkmwe .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dKRWkmwe .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dKRWkmwe .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dKRWkmwe .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dKRWkmwe .mbr-text_1,
.cid-v7dKRWkmwe .mbr-text_2,
.cid-v7dKRWkmwe .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dKRWkmwe .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKRWkmwe .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dKRWkmwe .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dKRWkmwe .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dKRWkmwe .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKRWkmwe .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dKRWkmwe .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dKRWkmwe .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKRWkmwe .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dKRWkmwe .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dKRWkmwe .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dKRWkmwe .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dKRWkmwe .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dKSDRY26 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dKSDRY26 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dKSDRY26 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dKSDRY26 .row {
  justify-content: center;
}
.cid-v7dKSDRY26 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dKSDRY26 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dKSDRY26 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dKSDRY26 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dKSDRY26 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dKSDRY26 .mbr-text_1,
.cid-v7dKSDRY26 .mbr-text_2,
.cid-v7dKSDRY26 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dKSDRY26 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKSDRY26 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dKSDRY26 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dKSDRY26 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dKSDRY26 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKSDRY26 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dKSDRY26 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dKSDRY26 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKSDRY26 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dKSDRY26 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dKSDRY26 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dKSDRY26 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dKSDRY26 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2JgvkoYpo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JgvkoYpo .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JgvkoYpo .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2JgvkoYpo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JgvkoYpo .inner-container {
    width: 100% !important;
  }
}
.cid-v7dKTXfx32 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dKTXfx32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dKTXfx32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dKTXfx32 .row {
  justify-content: center;
}
.cid-v7dKTXfx32 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dKTXfx32 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dKTXfx32 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dKTXfx32 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dKTXfx32 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dKTXfx32 .mbr-text_1,
.cid-v7dKTXfx32 .mbr-text_2,
.cid-v7dKTXfx32 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dKTXfx32 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKTXfx32 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dKTXfx32 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dKTXfx32 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dKTXfx32 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKTXfx32 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dKTXfx32 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dKTXfx32 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dKTXfx32 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dKTXfx32 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dKTXfx32 .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dKTXfx32 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dKTXfx32 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJxftmTiF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJxftmTiF .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJxftmTiF .container-table {
  margin: 0 auto;
}
.cid-tJJxftmTiF .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJxftmTiF .dataTables_wrapper {
  display: block;
}
.cid-tJJxftmTiF .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJxftmTiF .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJxftmTiF table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJxftmTiF table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJxftmTiF table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJxftmTiF table td {
  border-top: 1px solid #232323;
}
.cid-tJJxftmTiF table.table {
  background: #ffffff;
}
.cid-tJJxftmTiF .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJxftmTiF .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJxftmTiF .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJxftmTiF .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJxftmTiF .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJxftmTiF .dataTables_filter {
    text-align: center;
  }
  .cid-tJJxftmTiF .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJxftmTiF .mbr-section-title {
  color: #ff3366;
}
.cid-tJJxftmTiF .head-item {
  text-align: center;
}
.cid-tJJxftmTiF .body-item {
  text-align: center;
}
.cid-svHWgo7MoF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s2Jgvlty1Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2Jgvlty1Q .item {
  padding-bottom: 2rem;
}
.cid-s2Jgvlty1Q .item-wrapper {
  height: 100%;
}
.cid-s2Jgvlty1Q .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s2Jgvlty1Q .carousel-control,
.cid-s2Jgvlty1Q .close {
  background: #1b1b1b;
}
.cid-s2Jgvlty1Q .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s2Jgvlty1Q .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s2Jgvlty1Q .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s2Jgvlty1Q .close::before {
  content: '\e91a';
}
.cid-s2Jgvlty1Q .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s2Jgvlty1Q .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s2Jgvlty1Q .carousel-inner > .active {
  display: block;
}
.cid-s2Jgvlty1Q .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s2Jgvlty1Q .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s2Jgvlty1Q .carousel-control .icon-next,
.cid-s2Jgvlty1Q .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s2Jgvlty1Q .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s2Jgvlty1Q .carousel-control,
  .cid-s2Jgvlty1Q .carousel-indicators,
  .cid-s2Jgvlty1Q .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s2Jgvlty1Q .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s2Jgvlty1Q .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s2Jgvlty1Q .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s2Jgvlty1Q .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s2Jgvlty1Q .carousel-indicators {
    display: none;
  }
}
.cid-s2Jgvlty1Q .carousel-indicators .active,
.cid-s2Jgvlty1Q .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s2Jgvlty1Q .carousel-indicators .active {
  background: #fff;
}
.cid-s2Jgvlty1Q .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s2Jgvlty1Q .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s2Jgvlty1Q .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s2Jgvlty1Q .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s2Jgvlty1Q .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s2Jgvlty1Q .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s2Jgvlty1Q .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s2Jgvlty1Q .carousel {
  width: 100%;
}
.cid-s2Jgvlty1Q .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s2Jgvlty1Q .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s2Jgvlty1Q .modal.fade .modal-dialog,
.cid-s2Jgvlty1Q .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s2Jgvlty1Q .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s2Jgvlty1Q a {
  display: block;
}
.cid-s2Jgvlty1Q a.img {
  pointer-events: none;
}
.cid-s2JgvlTgCJ {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2JgvlTgCJ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2JgvlTgCJ div.b {
  padding-top: 2rem;
}
.cid-s2JhBZbiYl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JhBZbiYl .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JhBZbiYl .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-s2JhBZbiYl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JhBZbiYl .inner-container {
    width: 100% !important;
  }
}
.cid-v7dLpWySi6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dLpWySi6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dLpWySi6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dLpWySi6 .row {
  justify-content: center;
}
.cid-v7dLpWySi6 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dLpWySi6 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dLpWySi6 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dLpWySi6 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dLpWySi6 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dLpWySi6 .mbr-text_1,
.cid-v7dLpWySi6 .mbr-text_2,
.cid-v7dLpWySi6 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dLpWySi6 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLpWySi6 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dLpWySi6 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dLpWySi6 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dLpWySi6 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLpWySi6 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dLpWySi6 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dLpWySi6 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLpWySi6 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dLpWySi6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dLpWySi6 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dLpWySi6 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dLpWySi6 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dLqGAxy4 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dLqGAxy4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dLqGAxy4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dLqGAxy4 .row {
  justify-content: center;
}
.cid-v7dLqGAxy4 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dLqGAxy4 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dLqGAxy4 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dLqGAxy4 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dLqGAxy4 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dLqGAxy4 .mbr-text_1,
.cid-v7dLqGAxy4 .mbr-text_2,
.cid-v7dLqGAxy4 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dLqGAxy4 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLqGAxy4 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dLqGAxy4 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dLqGAxy4 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dLqGAxy4 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLqGAxy4 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dLqGAxy4 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dLqGAxy4 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLqGAxy4 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dLqGAxy4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dLqGAxy4 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dLqGAxy4 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dLqGAxy4 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2JhBZGEcM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JhBZGEcM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JhBZGEcM .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2JhBZGEcM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JhBZGEcM .inner-container {
    width: 100% !important;
  }
}
.cid-v7dLsQkvxP {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dLsQkvxP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dLsQkvxP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dLsQkvxP .row {
  justify-content: center;
}
.cid-v7dLsQkvxP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dLsQkvxP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dLsQkvxP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dLsQkvxP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dLsQkvxP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dLsQkvxP .mbr-text_1,
.cid-v7dLsQkvxP .mbr-text_2,
.cid-v7dLsQkvxP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dLsQkvxP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLsQkvxP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dLsQkvxP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dLsQkvxP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dLsQkvxP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLsQkvxP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dLsQkvxP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dLsQkvxP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLsQkvxP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dLsQkvxP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dLsQkvxP .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dLsQkvxP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dLsQkvxP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJxkJzvLE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJxkJzvLE .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJxkJzvLE .container-table {
  margin: 0 auto;
}
.cid-tJJxkJzvLE .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJxkJzvLE .dataTables_wrapper {
  display: block;
}
.cid-tJJxkJzvLE .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJxkJzvLE .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJxkJzvLE table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJxkJzvLE table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJxkJzvLE table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJxkJzvLE table td {
  border-top: 1px solid #232323;
}
.cid-tJJxkJzvLE table.table {
  background: #ffffff;
}
.cid-tJJxkJzvLE .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJxkJzvLE .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJxkJzvLE .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJxkJzvLE .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJxkJzvLE .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJxkJzvLE .dataTables_filter {
    text-align: center;
  }
  .cid-tJJxkJzvLE .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJxkJzvLE .mbr-section-title {
  color: #ff3366;
}
.cid-tJJxkJzvLE .head-item {
  text-align: center;
}
.cid-tJJxkJzvLE .body-item {
  text-align: center;
}
.cid-svHWGZsoCl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHWHHqaLA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svHWHHqaLA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svHWHHqaLA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svHWHHqaLA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svHWHHqaLA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svHWHHqaLA .row > .row {
  display: block;
}
.cid-svHWHHqaLA .mbr-gallery-item {
  width: 100%;
}
.cid-svHWHHqaLA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svHWHHqaLA .mbr-gallery-item > div {
  position: relative;
}
.cid-svHWHHqaLA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svHWHHqaLA .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svHWHHqaLA .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svHWHHqaLA .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2JhC1fTqT {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2JhC1fTqT .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2JhC1fTqT div.b {
  padding-top: 2rem;
}
.cid-s2Jivrmd4O {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2Jivrmd4O .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Jivrmd4O .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-s2Jivrmd4O .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Jivrmd4O .inner-container {
    width: 100% !important;
  }
}
.cid-v7dLJsy0tu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dLJsy0tu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dLJsy0tu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dLJsy0tu .row {
  justify-content: center;
}
.cid-v7dLJsy0tu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dLJsy0tu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dLJsy0tu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dLJsy0tu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dLJsy0tu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dLJsy0tu .mbr-text_1,
.cid-v7dLJsy0tu .mbr-text_2,
.cid-v7dLJsy0tu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dLJsy0tu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLJsy0tu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dLJsy0tu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dLJsy0tu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dLJsy0tu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLJsy0tu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dLJsy0tu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dLJsy0tu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLJsy0tu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dLJsy0tu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dLJsy0tu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dLJsy0tu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dLJsy0tu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dLKdjz1A {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dLKdjz1A .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dLKdjz1A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dLKdjz1A .row {
  justify-content: center;
}
.cid-v7dLKdjz1A .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dLKdjz1A .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dLKdjz1A .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dLKdjz1A .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dLKdjz1A .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dLKdjz1A .mbr-text_1,
.cid-v7dLKdjz1A .mbr-text_2,
.cid-v7dLKdjz1A .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dLKdjz1A .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLKdjz1A .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dLKdjz1A .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dLKdjz1A .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dLKdjz1A .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLKdjz1A .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dLKdjz1A .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dLKdjz1A .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLKdjz1A .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dLKdjz1A .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dLKdjz1A .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dLKdjz1A .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dLKdjz1A .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2JivrNBCB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JivrNBCB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JivrNBCB .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2JivrNBCB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JivrNBCB .inner-container {
    width: 100% !important;
  }
}
.cid-v7dLLz4KO5 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dLLz4KO5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dLLz4KO5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dLLz4KO5 .row {
  justify-content: center;
}
.cid-v7dLLz4KO5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dLLz4KO5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dLLz4KO5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dLLz4KO5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dLLz4KO5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dLLz4KO5 .mbr-text_1,
.cid-v7dLLz4KO5 .mbr-text_2,
.cid-v7dLLz4KO5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dLLz4KO5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLLz4KO5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dLLz4KO5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dLLz4KO5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dLLz4KO5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLLz4KO5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dLLz4KO5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dLLz4KO5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dLLz4KO5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dLLz4KO5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dLLz4KO5 .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dLLz4KO5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dLLz4KO5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJxoTBxJa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJxoTBxJa .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJxoTBxJa .container-table {
  margin: 0 auto;
}
.cid-tJJxoTBxJa .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJxoTBxJa .dataTables_wrapper {
  display: block;
}
.cid-tJJxoTBxJa .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJxoTBxJa .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJxoTBxJa table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJxoTBxJa table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJxoTBxJa table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJxoTBxJa table td {
  border-top: 1px solid #232323;
}
.cid-tJJxoTBxJa table.table {
  background: #ffffff;
}
.cid-tJJxoTBxJa .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJxoTBxJa .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJxoTBxJa .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJxoTBxJa .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJxoTBxJa .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJxoTBxJa .dataTables_filter {
    text-align: center;
  }
  .cid-tJJxoTBxJa .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJxoTBxJa .mbr-section-title {
  color: #ff3366;
}
.cid-tJJxoTBxJa .head-item {
  text-align: center;
}
.cid-tJJxoTBxJa .body-item {
  text-align: center;
}
.cid-svHX78Puuk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHX7QcQzN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svHX7QcQzN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svHX7QcQzN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svHX7QcQzN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svHX7QcQzN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svHX7QcQzN .row > .row {
  display: block;
}
.cid-svHX7QcQzN .mbr-gallery-item {
  width: 100%;
}
.cid-svHX7QcQzN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svHX7QcQzN .mbr-gallery-item > div {
  position: relative;
}
.cid-svHX7QcQzN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svHX7QcQzN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svHX7QcQzN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svHX7QcQzN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2Jivt8LpG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2Jivt8LpG .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2Jivt8LpG div.b {
  padding-top: 2rem;
}
.cid-s2JiZ32Q2e {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JiZ32Q2e .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JiZ32Q2e .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-s2JiZ32Q2e .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JiZ32Q2e .inner-container {
    width: 100% !important;
  }
}
.cid-v7dM5XtJna {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dM5XtJna .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dM5XtJna .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dM5XtJna .row {
  justify-content: center;
}
.cid-v7dM5XtJna .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dM5XtJna .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dM5XtJna .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dM5XtJna .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dM5XtJna .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dM5XtJna .mbr-text_1,
.cid-v7dM5XtJna .mbr-text_2,
.cid-v7dM5XtJna .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dM5XtJna .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dM5XtJna .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dM5XtJna .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dM5XtJna .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dM5XtJna .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dM5XtJna .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dM5XtJna .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dM5XtJna .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dM5XtJna .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dM5XtJna .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dM5XtJna .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dM5XtJna .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dM5XtJna .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dM6K90xh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dM6K90xh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dM6K90xh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dM6K90xh .row {
  justify-content: center;
}
.cid-v7dM6K90xh .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dM6K90xh .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dM6K90xh .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dM6K90xh .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dM6K90xh .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dM6K90xh .mbr-text_1,
.cid-v7dM6K90xh .mbr-text_2,
.cid-v7dM6K90xh .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dM6K90xh .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dM6K90xh .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dM6K90xh .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dM6K90xh .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dM6K90xh .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dM6K90xh .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dM6K90xh .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dM6K90xh .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dM6K90xh .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dM6K90xh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dM6K90xh .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dM6K90xh .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dM6K90xh .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2JiZ3A9iZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JiZ3A9iZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JiZ3A9iZ .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2JiZ3A9iZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JiZ3A9iZ .inner-container {
    width: 100% !important;
  }
}
.cid-v7dM8aofiS {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dM8aofiS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dM8aofiS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dM8aofiS .row {
  justify-content: center;
}
.cid-v7dM8aofiS .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dM8aofiS .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dM8aofiS .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dM8aofiS .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dM8aofiS .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dM8aofiS .mbr-text_1,
.cid-v7dM8aofiS .mbr-text_2,
.cid-v7dM8aofiS .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dM8aofiS .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dM8aofiS .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dM8aofiS .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dM8aofiS .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dM8aofiS .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dM8aofiS .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dM8aofiS .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dM8aofiS .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dM8aofiS .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dM8aofiS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dM8aofiS .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dM8aofiS .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dM8aofiS .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJxyFynE4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJxyFynE4 .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJxyFynE4 .container-table {
  margin: 0 auto;
}
.cid-tJJxyFynE4 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJxyFynE4 .dataTables_wrapper {
  display: block;
}
.cid-tJJxyFynE4 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJxyFynE4 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJxyFynE4 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJxyFynE4 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJxyFynE4 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJxyFynE4 table td {
  border-top: 1px solid #232323;
}
.cid-tJJxyFynE4 table.table {
  background: #ffffff;
}
.cid-tJJxyFynE4 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJxyFynE4 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJxyFynE4 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJxyFynE4 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJxyFynE4 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJxyFynE4 .dataTables_filter {
    text-align: center;
  }
  .cid-tJJxyFynE4 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJxyFynE4 .mbr-section-title {
  color: #ff3366;
}
.cid-tJJxyFynE4 .head-item {
  text-align: center;
}
.cid-tJJxyFynE4 .body-item {
  text-align: center;
}
.cid-svHXq8dvhr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHXqKATfQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svHXqKATfQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svHXqKATfQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svHXqKATfQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svHXqKATfQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svHXqKATfQ .row > .row {
  display: block;
}
.cid-svHXqKATfQ .mbr-gallery-item {
  width: 100%;
}
.cid-svHXqKATfQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svHXqKATfQ .mbr-gallery-item > div {
  position: relative;
}
.cid-svHXqKATfQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svHXqKATfQ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svHXqKATfQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svHXqKATfQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2JiZ51EJA {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2JiZ51EJA .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2JiZ51EJA div.b {
  padding-top: 2rem;
}
.cid-s2JjqU2snH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JjqU2snH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JjqU2snH .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-s2JjqU2snH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JjqU2snH .inner-container {
    width: 100% !important;
  }
}
.cid-v7dMrD3pWo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dMrD3pWo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dMrD3pWo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dMrD3pWo .row {
  justify-content: center;
}
.cid-v7dMrD3pWo .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dMrD3pWo .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dMrD3pWo .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dMrD3pWo .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dMrD3pWo .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dMrD3pWo .mbr-text_1,
.cid-v7dMrD3pWo .mbr-text_2,
.cid-v7dMrD3pWo .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dMrD3pWo .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMrD3pWo .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dMrD3pWo .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dMrD3pWo .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dMrD3pWo .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMrD3pWo .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dMrD3pWo .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dMrD3pWo .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMrD3pWo .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dMrD3pWo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dMrD3pWo .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dMrD3pWo .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dMrD3pWo .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dMsuZgvr {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dMsuZgvr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dMsuZgvr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dMsuZgvr .row {
  justify-content: center;
}
.cid-v7dMsuZgvr .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dMsuZgvr .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dMsuZgvr .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dMsuZgvr .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dMsuZgvr .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dMsuZgvr .mbr-text_1,
.cid-v7dMsuZgvr .mbr-text_2,
.cid-v7dMsuZgvr .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dMsuZgvr .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMsuZgvr .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dMsuZgvr .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dMsuZgvr .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dMsuZgvr .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMsuZgvr .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dMsuZgvr .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dMsuZgvr .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMsuZgvr .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dMsuZgvr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dMsuZgvr .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dMsuZgvr .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dMsuZgvr .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2JjqUA7Iu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JjqUA7Iu .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JjqUA7Iu .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2JjqUA7Iu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JjqUA7Iu .inner-container {
    width: 100% !important;
  }
}
.cid-v7dMtSz6dC {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dMtSz6dC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dMtSz6dC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dMtSz6dC .row {
  justify-content: center;
}
.cid-v7dMtSz6dC .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dMtSz6dC .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dMtSz6dC .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dMtSz6dC .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dMtSz6dC .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dMtSz6dC .mbr-text_1,
.cid-v7dMtSz6dC .mbr-text_2,
.cid-v7dMtSz6dC .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dMtSz6dC .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMtSz6dC .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dMtSz6dC .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dMtSz6dC .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dMtSz6dC .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMtSz6dC .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dMtSz6dC .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dMtSz6dC .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMtSz6dC .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dMtSz6dC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dMtSz6dC .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dMtSz6dC .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dMtSz6dC .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJxDLoCUG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJxDLoCUG .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJxDLoCUG .container-table {
  margin: 0 auto;
}
.cid-tJJxDLoCUG .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJxDLoCUG .dataTables_wrapper {
  display: block;
}
.cid-tJJxDLoCUG .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJxDLoCUG .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJxDLoCUG table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJxDLoCUG table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJxDLoCUG table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJxDLoCUG table td {
  border-top: 1px solid #232323;
}
.cid-tJJxDLoCUG table.table {
  background: #ffffff;
}
.cid-tJJxDLoCUG .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJxDLoCUG .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJxDLoCUG .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJxDLoCUG .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJxDLoCUG .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJxDLoCUG .dataTables_filter {
    text-align: center;
  }
  .cid-tJJxDLoCUG .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJxDLoCUG .mbr-section-title {
  color: #ff3366;
}
.cid-tJJxDLoCUG .head-item {
  text-align: center;
}
.cid-tJJxDLoCUG .body-item {
  text-align: center;
}
.cid-svHXMvUH6D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHXNbcwde {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svHXNbcwde .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svHXNbcwde .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svHXNbcwde .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svHXNbcwde .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svHXNbcwde .row > .row {
  display: block;
}
.cid-svHXNbcwde .mbr-gallery-item {
  width: 100%;
}
.cid-svHXNbcwde .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svHXNbcwde .mbr-gallery-item > div {
  position: relative;
}
.cid-svHXNbcwde .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svHXNbcwde .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svHXNbcwde .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svHXNbcwde .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2JjqW64c8 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2JjqW64c8 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2JjqW64c8 div.b {
  padding-top: 2rem;
}
.cid-s2Jk1iAsIP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2Jk1iAsIP .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Jk1iAsIP .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-s2Jk1iAsIP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Jk1iAsIP .inner-container {
    width: 100% !important;
  }
}
.cid-v7dMLuUm31 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dMLuUm31 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dMLuUm31 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dMLuUm31 .row {
  justify-content: center;
}
.cid-v7dMLuUm31 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dMLuUm31 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dMLuUm31 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dMLuUm31 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dMLuUm31 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dMLuUm31 .mbr-text_1,
.cid-v7dMLuUm31 .mbr-text_2,
.cid-v7dMLuUm31 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dMLuUm31 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMLuUm31 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dMLuUm31 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dMLuUm31 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dMLuUm31 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMLuUm31 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dMLuUm31 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dMLuUm31 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMLuUm31 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dMLuUm31 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dMLuUm31 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dMLuUm31 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dMLuUm31 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dMMis7Tq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dMMis7Tq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dMMis7Tq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dMMis7Tq .row {
  justify-content: center;
}
.cid-v7dMMis7Tq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dMMis7Tq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dMMis7Tq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dMMis7Tq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dMMis7Tq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dMMis7Tq .mbr-text_1,
.cid-v7dMMis7Tq .mbr-text_2,
.cid-v7dMMis7Tq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dMMis7Tq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMMis7Tq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dMMis7Tq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dMMis7Tq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dMMis7Tq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMMis7Tq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dMMis7Tq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dMMis7Tq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMMis7Tq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dMMis7Tq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dMMis7Tq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dMMis7Tq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dMMis7Tq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2Jk1jdiZV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2Jk1jdiZV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Jk1jdiZV .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2Jk1jdiZV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Jk1jdiZV .inner-container {
    width: 100% !important;
  }
}
.cid-v7dMNoe7yV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dMNoe7yV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dMNoe7yV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dMNoe7yV .row {
  justify-content: center;
}
.cid-v7dMNoe7yV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dMNoe7yV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dMNoe7yV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dMNoe7yV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dMNoe7yV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dMNoe7yV .mbr-text_1,
.cid-v7dMNoe7yV .mbr-text_2,
.cid-v7dMNoe7yV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dMNoe7yV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMNoe7yV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dMNoe7yV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dMNoe7yV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dMNoe7yV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMNoe7yV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dMNoe7yV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dMNoe7yV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dMNoe7yV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dMNoe7yV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dMNoe7yV .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dMNoe7yV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dMNoe7yV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJxHS7XzI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJxHS7XzI .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJxHS7XzI .container-table {
  margin: 0 auto;
}
.cid-tJJxHS7XzI .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJxHS7XzI .dataTables_wrapper {
  display: block;
}
.cid-tJJxHS7XzI .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJxHS7XzI .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJxHS7XzI table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJxHS7XzI table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJxHS7XzI table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJxHS7XzI table td {
  border-top: 1px solid #232323;
}
.cid-tJJxHS7XzI table.table {
  background: #ffffff;
}
.cid-tJJxHS7XzI .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJxHS7XzI .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJxHS7XzI .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJxHS7XzI .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJxHS7XzI .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJxHS7XzI .dataTables_filter {
    text-align: center;
  }
  .cid-tJJxHS7XzI .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJxHS7XzI .mbr-section-title {
  color: #ff3366;
}
.cid-tJJxHS7XzI .head-item {
  text-align: center;
}
.cid-tJJxHS7XzI .body-item {
  text-align: center;
}
.cid-svHYgWrkHN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHYhJHKm1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svHYhJHKm1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svHYhJHKm1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svHYhJHKm1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svHYhJHKm1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svHYhJHKm1 .row > .row {
  display: block;
}
.cid-svHYhJHKm1 .mbr-gallery-item {
  width: 100%;
}
.cid-svHYhJHKm1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svHYhJHKm1 .mbr-gallery-item > div {
  position: relative;
}
.cid-svHYhJHKm1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svHYhJHKm1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svHYhJHKm1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svHYhJHKm1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svHYnZ54vl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-svHYnZ54vl .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svHYnZ54vl .section-text {
  padding: 2rem 0;
}
.cid-svHYnZ54vl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svHYnZ54vl .inner-container {
    width: 100% !important;
  }
}
.cid-svHYnZ54vl .section-text DIV {
  text-align: center;
}
.cid-s2Jk1l0KeP {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2Jk1l0KeP .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2Jk1l0KeP div.b {
  padding-top: 2rem;
}
.cid-s2JkJlmLdK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JkJlmLdK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JkJlmLdK .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-s2JkJlmLdK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JkJlmLdK .inner-container {
    width: 100% !important;
  }
}
.cid-v7dNgp1Px5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dNgp1Px5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dNgp1Px5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dNgp1Px5 .row {
  justify-content: center;
}
.cid-v7dNgp1Px5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dNgp1Px5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dNgp1Px5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dNgp1Px5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dNgp1Px5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dNgp1Px5 .mbr-text_1,
.cid-v7dNgp1Px5 .mbr-text_2,
.cid-v7dNgp1Px5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dNgp1Px5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dNgp1Px5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dNgp1Px5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dNgp1Px5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dNgp1Px5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dNgp1Px5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dNgp1Px5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dNgp1Px5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dNgp1Px5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dNgp1Px5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dNgp1Px5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dNgp1Px5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dNgp1Px5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dNhk4X0D {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dNhk4X0D .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dNhk4X0D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dNhk4X0D .row {
  justify-content: center;
}
.cid-v7dNhk4X0D .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dNhk4X0D .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dNhk4X0D .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dNhk4X0D .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dNhk4X0D .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dNhk4X0D .mbr-text_1,
.cid-v7dNhk4X0D .mbr-text_2,
.cid-v7dNhk4X0D .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dNhk4X0D .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dNhk4X0D .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dNhk4X0D .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dNhk4X0D .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dNhk4X0D .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dNhk4X0D .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dNhk4X0D .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dNhk4X0D .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dNhk4X0D .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dNhk4X0D .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dNhk4X0D .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dNhk4X0D .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dNhk4X0D .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2JkJlQsTA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JkJlQsTA .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JkJlQsTA .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2JkJlQsTA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JkJlQsTA .inner-container {
    width: 100% !important;
  }
}
.cid-v7dNj9X2VE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dNj9X2VE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dNj9X2VE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dNj9X2VE .row {
  justify-content: center;
}
.cid-v7dNj9X2VE .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dNj9X2VE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dNj9X2VE .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dNj9X2VE .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dNj9X2VE .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dNj9X2VE .mbr-text_1,
.cid-v7dNj9X2VE .mbr-text_2,
.cid-v7dNj9X2VE .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dNj9X2VE .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dNj9X2VE .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dNj9X2VE .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dNj9X2VE .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dNj9X2VE .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dNj9X2VE .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dNj9X2VE .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dNj9X2VE .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dNj9X2VE .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dNj9X2VE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dNj9X2VE .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dNj9X2VE .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dNj9X2VE .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJxNSNox6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJxNSNox6 .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJxNSNox6 .container-table {
  margin: 0 auto;
}
.cid-tJJxNSNox6 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJxNSNox6 .dataTables_wrapper {
  display: block;
}
.cid-tJJxNSNox6 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJxNSNox6 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJxNSNox6 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJxNSNox6 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJxNSNox6 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJxNSNox6 table td {
  border-top: 1px solid #232323;
}
.cid-tJJxNSNox6 table.table {
  background: #ffffff;
}
.cid-tJJxNSNox6 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJxNSNox6 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJxNSNox6 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJxNSNox6 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJxNSNox6 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJxNSNox6 .dataTables_filter {
    text-align: center;
  }
  .cid-tJJxNSNox6 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJxNSNox6 .mbr-section-title {
  color: #ff3366;
}
.cid-tJJxNSNox6 .head-item {
  text-align: center;
}
.cid-tJJxNSNox6 .body-item {
  text-align: center;
}
.cid-su1hTzgM3J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-su1hTzgM3J .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-su1hTzgM3J .section-text {
  padding: 2rem 0;
}
.cid-su1hTzgM3J .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-su1hTzgM3J .inner-container {
    width: 100% !important;
  }
}
.cid-su1gbQePw2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-su1jxciy6J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-su1jxciy6J .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-su1jxciy6J .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-su1jxciy6J .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-su1jxciy6J .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-su1jxciy6J .row > .row {
  display: block;
}
.cid-su1jxciy6J .mbr-gallery-item {
  width: 100%;
}
.cid-su1jxciy6J .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-su1jxciy6J .mbr-gallery-item > div {
  position: relative;
}
.cid-su1jxciy6J .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-su1jxciy6J .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-su1jxciy6J .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-su1jxciy6J .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-su1gdTnItQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-su1jwa2jNY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-su1jwa2jNY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-su1jwa2jNY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-su1jwa2jNY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-su1jwa2jNY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-su1jwa2jNY .row > .row {
  display: block;
}
.cid-su1jwa2jNY .mbr-gallery-item {
  width: 100%;
}
.cid-su1jwa2jNY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-su1jwa2jNY .mbr-gallery-item > div {
  position: relative;
}
.cid-su1jwa2jNY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-su1jwa2jNY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-su1jwa2jNY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-su1jwa2jNY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2JkJnp0eg {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s2JkJnp0eg .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2JkJnp0eg div.b {
  padding-top: 2rem;
}
.cid-s2JmHCsCQw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JmHCsCQw .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JmHCsCQw .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2JmHCsCQw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JmHCsCQw .inner-container {
    width: 100% !important;
  }
}
.cid-v7e4lU8Io6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7e4lU8Io6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e4lU8Io6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e4lU8Io6 .row {
  justify-content: center;
}
.cid-v7e4lU8Io6 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e4lU8Io6 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e4lU8Io6 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e4lU8Io6 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e4lU8Io6 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e4lU8Io6 .mbr-text_1,
.cid-v7e4lU8Io6 .mbr-text_2,
.cid-v7e4lU8Io6 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e4lU8Io6 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e4lU8Io6 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e4lU8Io6 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e4lU8Io6 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e4lU8Io6 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e4lU8Io6 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e4lU8Io6 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e4lU8Io6 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e4lU8Io6 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e4lU8Io6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e4lU8Io6 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e4lU8Io6 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e4lU8Io6 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7e4n3yFxS {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e4n3yFxS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e4n3yFxS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e4n3yFxS .row {
  justify-content: center;
}
.cid-v7e4n3yFxS .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e4n3yFxS .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e4n3yFxS .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e4n3yFxS .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e4n3yFxS .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e4n3yFxS .mbr-text_1,
.cid-v7e4n3yFxS .mbr-text_2,
.cid-v7e4n3yFxS .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e4n3yFxS .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e4n3yFxS .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e4n3yFxS .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e4n3yFxS .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e4n3yFxS .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e4n3yFxS .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e4n3yFxS .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e4n3yFxS .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e4n3yFxS .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e4n3yFxS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e4n3yFxS .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e4n3yFxS .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e4n3yFxS .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2JmHD5BzT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JmHD5BzT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JmHD5BzT .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2JmHD5BzT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JmHD5BzT .inner-container {
    width: 100% !important;
  }
}
.cid-v7e4pkRl9R {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e4pkRl9R .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e4pkRl9R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e4pkRl9R .row {
  justify-content: center;
}
.cid-v7e4pkRl9R .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e4pkRl9R .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e4pkRl9R .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e4pkRl9R .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e4pkRl9R .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e4pkRl9R .mbr-text_1,
.cid-v7e4pkRl9R .mbr-text_2,
.cid-v7e4pkRl9R .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e4pkRl9R .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e4pkRl9R .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e4pkRl9R .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e4pkRl9R .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e4pkRl9R .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e4pkRl9R .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e4pkRl9R .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e4pkRl9R .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e4pkRl9R .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e4pkRl9R .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e4pkRl9R .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7e4pkRl9R .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e4pkRl9R .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suIGWoDUo0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-suIH2yBE8h {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-suIH2yBE8h .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suIH2yBE8h .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suIH2yBE8h .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suIH2yBE8h .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suIH2yBE8h .row > .row {
  display: block;
}
.cid-suIH2yBE8h .mbr-gallery-item {
  width: 100%;
}
.cid-suIH2yBE8h .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suIH2yBE8h .mbr-gallery-item > div {
  position: relative;
}
.cid-suIH2yBE8h .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suIH2yBE8h .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suIH2yBE8h .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suIH2yBE8h .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2JmHEo2Lb {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s2JmHEo2Lb .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2JmHEo2Lb div.b {
  padding-top: 2rem;
}
.cid-s2JqP4Vojd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JqP4Vojd .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JqP4Vojd .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2JqP4Vojd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JqP4Vojd .inner-container {
    width: 100% !important;
  }
}
.cid-v7e6mZ6WBj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7e6mZ6WBj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e6mZ6WBj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e6mZ6WBj .row {
  justify-content: center;
}
.cid-v7e6mZ6WBj .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e6mZ6WBj .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e6mZ6WBj .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e6mZ6WBj .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e6mZ6WBj .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e6mZ6WBj .mbr-text_1,
.cid-v7e6mZ6WBj .mbr-text_2,
.cid-v7e6mZ6WBj .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e6mZ6WBj .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6mZ6WBj .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6mZ6WBj .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e6mZ6WBj .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e6mZ6WBj .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6mZ6WBj .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6mZ6WBj .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e6mZ6WBj .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6mZ6WBj .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e6mZ6WBj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e6mZ6WBj .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e6mZ6WBj .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e6mZ6WBj .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7e6nZizJQ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e6nZizJQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e6nZizJQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e6nZizJQ .row {
  justify-content: center;
}
.cid-v7e6nZizJQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e6nZizJQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e6nZizJQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e6nZizJQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e6nZizJQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e6nZizJQ .mbr-text_1,
.cid-v7e6nZizJQ .mbr-text_2,
.cid-v7e6nZizJQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e6nZizJQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6nZizJQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6nZizJQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e6nZizJQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e6nZizJQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6nZizJQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6nZizJQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e6nZizJQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6nZizJQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e6nZizJQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e6nZizJQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e6nZizJQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e6nZizJQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2JqP5ysD6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2JqP5ysD6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2JqP5ysD6 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2JqP5ysD6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2JqP5ysD6 .inner-container {
    width: 100% !important;
  }
}
.cid-v7e6pShta3 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e6pShta3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e6pShta3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e6pShta3 .row {
  justify-content: center;
}
.cid-v7e6pShta3 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e6pShta3 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e6pShta3 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e6pShta3 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e6pShta3 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e6pShta3 .mbr-text_1,
.cid-v7e6pShta3 .mbr-text_2,
.cid-v7e6pShta3 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e6pShta3 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6pShta3 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6pShta3 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e6pShta3 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e6pShta3 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6pShta3 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6pShta3 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e6pShta3 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6pShta3 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e6pShta3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e6pShta3 .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7e6pShta3 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e6pShta3 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suINFGJOPe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-suINGvs6ru {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-suINGvs6ru .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suINGvs6ru .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suINGvs6ru .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suINGvs6ru .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suINGvs6ru .row > .row {
  display: block;
}
.cid-suINGvs6ru .mbr-gallery-item {
  width: 100%;
}
.cid-suINGvs6ru .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suINGvs6ru .mbr-gallery-item > div {
  position: relative;
}
.cid-suINGvs6ru .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suINGvs6ru .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suINGvs6ru .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suINGvs6ru .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2JqP7cZVA {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s2JqP7cZVA .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2JqP7cZVA div.b {
  padding-top: 2rem;
}
.cid-s2L3fUwdEq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2L3fUwdEq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2L3fUwdEq .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2L3fUwdEq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2L3fUwdEq .inner-container {
    width: 100% !important;
  }
}
.cid-v7e6WnKgUf {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7e6WnKgUf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e6WnKgUf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e6WnKgUf .row {
  justify-content: center;
}
.cid-v7e6WnKgUf .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e6WnKgUf .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e6WnKgUf .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e6WnKgUf .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e6WnKgUf .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e6WnKgUf .mbr-text_1,
.cid-v7e6WnKgUf .mbr-text_2,
.cid-v7e6WnKgUf .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e6WnKgUf .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6WnKgUf .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6WnKgUf .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e6WnKgUf .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e6WnKgUf .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6WnKgUf .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6WnKgUf .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e6WnKgUf .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6WnKgUf .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e6WnKgUf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e6WnKgUf .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e6WnKgUf .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e6WnKgUf .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7e6XcckBl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e6XcckBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e6XcckBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e6XcckBl .row {
  justify-content: center;
}
.cid-v7e6XcckBl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e6XcckBl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e6XcckBl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e6XcckBl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e6XcckBl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e6XcckBl .mbr-text_1,
.cid-v7e6XcckBl .mbr-text_2,
.cid-v7e6XcckBl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e6XcckBl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6XcckBl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6XcckBl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e6XcckBl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e6XcckBl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6XcckBl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6XcckBl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e6XcckBl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6XcckBl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e6XcckBl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e6XcckBl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e6XcckBl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e6XcckBl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2L3fV3zAb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2L3fV3zAb .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2L3fV3zAb .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2L3fV3zAb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2L3fV3zAb .inner-container {
    width: 100% !important;
  }
}
.cid-v7e6YdIVeo {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e6YdIVeo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e6YdIVeo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e6YdIVeo .row {
  justify-content: center;
}
.cid-v7e6YdIVeo .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e6YdIVeo .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e6YdIVeo .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e6YdIVeo .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e6YdIVeo .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e6YdIVeo .mbr-text_1,
.cid-v7e6YdIVeo .mbr-text_2,
.cid-v7e6YdIVeo .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e6YdIVeo .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6YdIVeo .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6YdIVeo .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e6YdIVeo .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e6YdIVeo .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6YdIVeo .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6YdIVeo .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e6YdIVeo .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6YdIVeo .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e6YdIVeo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e6YdIVeo .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7e6YdIVeo .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e6YdIVeo .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suISrjzIhL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-suISsesmie {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-suISsesmie .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suISsesmie .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suISsesmie .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suISsesmie .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suISsesmie .row > .row {
  display: block;
}
.cid-suISsesmie .mbr-gallery-item {
  width: 100%;
}
.cid-suISsesmie .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suISsesmie .mbr-gallery-item > div {
  position: relative;
}
.cid-suISsesmie .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suISsesmie .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suISsesmie .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suISsesmie .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2L3fX7MXU {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s2L3fX7MXU .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2L3fX7MXU div.b {
  padding-top: 2rem;
}
.cid-s2L4iFKLwo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2L4iFKLwo .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2L4iFKLwo .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2L4iFKLwo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2L4iFKLwo .inner-container {
    width: 100% !important;
  }
}
.cid-v7e6H0yQgX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7e6H0yQgX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e6H0yQgX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e6H0yQgX .row {
  justify-content: center;
}
.cid-v7e6H0yQgX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e6H0yQgX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e6H0yQgX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e6H0yQgX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e6H0yQgX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e6H0yQgX .mbr-text_1,
.cid-v7e6H0yQgX .mbr-text_2,
.cid-v7e6H0yQgX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e6H0yQgX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6H0yQgX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6H0yQgX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e6H0yQgX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e6H0yQgX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6H0yQgX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6H0yQgX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e6H0yQgX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6H0yQgX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e6H0yQgX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e6H0yQgX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e6H0yQgX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e6H0yQgX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7e6HOkjaA {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e6HOkjaA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e6HOkjaA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e6HOkjaA .row {
  justify-content: center;
}
.cid-v7e6HOkjaA .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e6HOkjaA .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e6HOkjaA .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e6HOkjaA .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e6HOkjaA .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e6HOkjaA .mbr-text_1,
.cid-v7e6HOkjaA .mbr-text_2,
.cid-v7e6HOkjaA .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e6HOkjaA .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6HOkjaA .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6HOkjaA .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e6HOkjaA .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e6HOkjaA .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6HOkjaA .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6HOkjaA .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e6HOkjaA .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6HOkjaA .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e6HOkjaA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e6HOkjaA .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e6HOkjaA .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e6HOkjaA .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2L4iGfgU4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2L4iGfgU4 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2L4iGfgU4 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2L4iGfgU4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2L4iGfgU4 .inner-container {
    width: 100% !important;
  }
}
.cid-v7e6IThyZZ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e6IThyZZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e6IThyZZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e6IThyZZ .row {
  justify-content: center;
}
.cid-v7e6IThyZZ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e6IThyZZ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e6IThyZZ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e6IThyZZ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e6IThyZZ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e6IThyZZ .mbr-text_1,
.cid-v7e6IThyZZ .mbr-text_2,
.cid-v7e6IThyZZ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e6IThyZZ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6IThyZZ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6IThyZZ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e6IThyZZ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e6IThyZZ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6IThyZZ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e6IThyZZ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e6IThyZZ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e6IThyZZ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e6IThyZZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e6IThyZZ .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7e6IThyZZ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e6IThyZZ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suIRDjNROV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-suIREot4JE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-suIREot4JE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suIREot4JE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suIREot4JE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suIREot4JE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suIREot4JE .row > .row {
  display: block;
}
.cid-suIREot4JE .mbr-gallery-item {
  width: 100%;
}
.cid-suIREot4JE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suIREot4JE .mbr-gallery-item > div {
  position: relative;
}
.cid-suIREot4JE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suIREot4JE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suIREot4JE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suIREot4JE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2L4iHPZZR {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s2L4iHPZZR .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2L4iHPZZR div.b {
  padding-top: 2rem;
}
.cid-s2L4N9b8B7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2L4N9b8B7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2L4N9b8B7 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2L4N9b8B7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2L4N9b8B7 .inner-container {
    width: 100% !important;
  }
}
.cid-v7e7jBNZo8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7e7jBNZo8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e7jBNZo8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e7jBNZo8 .row {
  justify-content: center;
}
.cid-v7e7jBNZo8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e7jBNZo8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e7jBNZo8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e7jBNZo8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e7jBNZo8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e7jBNZo8 .mbr-text_1,
.cid-v7e7jBNZo8 .mbr-text_2,
.cid-v7e7jBNZo8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e7jBNZo8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7jBNZo8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e7jBNZo8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e7jBNZo8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e7jBNZo8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7jBNZo8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e7jBNZo8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e7jBNZo8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7jBNZo8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e7jBNZo8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e7jBNZo8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e7jBNZo8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e7jBNZo8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7e7ku90Ge {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e7ku90Ge .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e7ku90Ge .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e7ku90Ge .row {
  justify-content: center;
}
.cid-v7e7ku90Ge .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e7ku90Ge .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e7ku90Ge .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e7ku90Ge .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e7ku90Ge .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e7ku90Ge .mbr-text_1,
.cid-v7e7ku90Ge .mbr-text_2,
.cid-v7e7ku90Ge .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e7ku90Ge .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7ku90Ge .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e7ku90Ge .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e7ku90Ge .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e7ku90Ge .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7ku90Ge .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e7ku90Ge .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e7ku90Ge .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7ku90Ge .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e7ku90Ge .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e7ku90Ge .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e7ku90Ge .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e7ku90Ge .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2L4N9IkSd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2L4N9IkSd .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2L4N9IkSd .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2L4N9IkSd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2L4N9IkSd .inner-container {
    width: 100% !important;
  }
}
.cid-v7e7lE008M {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e7lE008M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e7lE008M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e7lE008M .row {
  justify-content: center;
}
.cid-v7e7lE008M .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e7lE008M .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e7lE008M .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e7lE008M .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e7lE008M .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e7lE008M .mbr-text_1,
.cid-v7e7lE008M .mbr-text_2,
.cid-v7e7lE008M .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e7lE008M .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7lE008M .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e7lE008M .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e7lE008M .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e7lE008M .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7lE008M .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e7lE008M .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e7lE008M .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7lE008M .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e7lE008M .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e7lE008M .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7e7lE008M .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e7lE008M .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suIT4JejYA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-suIT60MEB8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-suIT60MEB8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suIT60MEB8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suIT60MEB8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suIT60MEB8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suIT60MEB8 .row > .row {
  display: block;
}
.cid-suIT60MEB8 .mbr-gallery-item {
  width: 100%;
}
.cid-suIT60MEB8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suIT60MEB8 .mbr-gallery-item > div {
  position: relative;
}
.cid-suIT60MEB8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suIT60MEB8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suIT60MEB8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suIT60MEB8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2L4NbFG0F {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s2L4NbFG0F .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2L4NbFG0F div.b {
  padding-top: 2rem;
}
.cid-s2L655oRfo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2L655oRfo .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2L655oRfo .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2L655oRfo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2L655oRfo .inner-container {
    width: 100% !important;
  }
}
.cid-v7e7LrDrZI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7e7LrDrZI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e7LrDrZI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e7LrDrZI .row {
  justify-content: center;
}
.cid-v7e7LrDrZI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e7LrDrZI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e7LrDrZI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e7LrDrZI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e7LrDrZI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e7LrDrZI .mbr-text_1,
.cid-v7e7LrDrZI .mbr-text_2,
.cid-v7e7LrDrZI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e7LrDrZI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7LrDrZI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e7LrDrZI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e7LrDrZI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e7LrDrZI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7LrDrZI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e7LrDrZI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e7LrDrZI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7LrDrZI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e7LrDrZI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e7LrDrZI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e7LrDrZI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e7LrDrZI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7e7M9ctbP {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e7M9ctbP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e7M9ctbP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e7M9ctbP .row {
  justify-content: center;
}
.cid-v7e7M9ctbP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e7M9ctbP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e7M9ctbP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e7M9ctbP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e7M9ctbP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e7M9ctbP .mbr-text_1,
.cid-v7e7M9ctbP .mbr-text_2,
.cid-v7e7M9ctbP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e7M9ctbP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7M9ctbP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e7M9ctbP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e7M9ctbP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e7M9ctbP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7M9ctbP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e7M9ctbP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e7M9ctbP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7M9ctbP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e7M9ctbP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e7M9ctbP .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e7M9ctbP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e7M9ctbP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2L655XUfR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2L655XUfR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2L655XUfR .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2L655XUfR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2L655XUfR .inner-container {
    width: 100% !important;
  }
}
.cid-v7e7NlPsHW {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e7NlPsHW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e7NlPsHW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e7NlPsHW .row {
  justify-content: center;
}
.cid-v7e7NlPsHW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e7NlPsHW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e7NlPsHW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e7NlPsHW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e7NlPsHW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e7NlPsHW .mbr-text_1,
.cid-v7e7NlPsHW .mbr-text_2,
.cid-v7e7NlPsHW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e7NlPsHW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7NlPsHW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e7NlPsHW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e7NlPsHW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e7NlPsHW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7NlPsHW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e7NlPsHW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e7NlPsHW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e7NlPsHW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e7NlPsHW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e7NlPsHW .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7e7NlPsHW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e7NlPsHW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suIX1x80fs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-suIX2yGCPQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-suIX2yGCPQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suIX2yGCPQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suIX2yGCPQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suIX2yGCPQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suIX2yGCPQ .row > .row {
  display: block;
}
.cid-suIX2yGCPQ .mbr-gallery-item {
  width: 100%;
}
.cid-suIX2yGCPQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suIX2yGCPQ .mbr-gallery-item > div {
  position: relative;
}
.cid-suIX2yGCPQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suIX2yGCPQ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suIX2yGCPQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suIX2yGCPQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2L658UIUQ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s2L658UIUQ .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2L658UIUQ div.b {
  padding-top: 2rem;
}
.cid-s2LnJQsUwZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2LnJQsUwZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2LnJQsUwZ .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2LnJQsUwZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2LnJQsUwZ .inner-container {
    width: 100% !important;
  }
}
.cid-v7e8sf2CpM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7e8sf2CpM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e8sf2CpM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e8sf2CpM .row {
  justify-content: center;
}
.cid-v7e8sf2CpM .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e8sf2CpM .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e8sf2CpM .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e8sf2CpM .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e8sf2CpM .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e8sf2CpM .mbr-text_1,
.cid-v7e8sf2CpM .mbr-text_2,
.cid-v7e8sf2CpM .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e8sf2CpM .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8sf2CpM .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e8sf2CpM .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e8sf2CpM .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e8sf2CpM .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8sf2CpM .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e8sf2CpM .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e8sf2CpM .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8sf2CpM .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e8sf2CpM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e8sf2CpM .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e8sf2CpM .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e8sf2CpM .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7e8t1gH70 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e8t1gH70 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e8t1gH70 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e8t1gH70 .row {
  justify-content: center;
}
.cid-v7e8t1gH70 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e8t1gH70 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e8t1gH70 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e8t1gH70 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e8t1gH70 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e8t1gH70 .mbr-text_1,
.cid-v7e8t1gH70 .mbr-text_2,
.cid-v7e8t1gH70 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e8t1gH70 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8t1gH70 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e8t1gH70 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e8t1gH70 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e8t1gH70 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8t1gH70 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e8t1gH70 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e8t1gH70 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8t1gH70 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e8t1gH70 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e8t1gH70 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e8t1gH70 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e8t1gH70 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2LnJQQLTJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2LnJQQLTJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2LnJQQLTJ .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2LnJQQLTJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2LnJQQLTJ .inner-container {
    width: 100% !important;
  }
}
.cid-v7e8uaPGLP {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e8uaPGLP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e8uaPGLP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e8uaPGLP .row {
  justify-content: center;
}
.cid-v7e8uaPGLP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e8uaPGLP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e8uaPGLP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e8uaPGLP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e8uaPGLP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e8uaPGLP .mbr-text_1,
.cid-v7e8uaPGLP .mbr-text_2,
.cid-v7e8uaPGLP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e8uaPGLP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8uaPGLP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e8uaPGLP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e8uaPGLP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e8uaPGLP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8uaPGLP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e8uaPGLP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e8uaPGLP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8uaPGLP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e8uaPGLP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e8uaPGLP .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7e8uaPGLP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e8uaPGLP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suIYjR12Zr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-suIYlcEzkE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-suIYlcEzkE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suIYlcEzkE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suIYlcEzkE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suIYlcEzkE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suIYlcEzkE .row > .row {
  display: block;
}
.cid-suIYlcEzkE .mbr-gallery-item {
  width: 100%;
}
.cid-suIYlcEzkE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suIYlcEzkE .mbr-gallery-item > div {
  position: relative;
}
.cid-suIYlcEzkE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suIYlcEzkE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suIYlcEzkE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suIYlcEzkE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2LnJSPd1G {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s2LnJSPd1G .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2LnJSPd1G div.b {
  padding-top: 2rem;
}
.cid-s2LocdQPFs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2LocdQPFs .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2LocdQPFs .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2LocdQPFs .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2LocdQPFs .inner-container {
    width: 100% !important;
  }
}
.cid-v7e8LbKwyA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7e8LbKwyA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e8LbKwyA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e8LbKwyA .row {
  justify-content: center;
}
.cid-v7e8LbKwyA .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e8LbKwyA .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e8LbKwyA .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e8LbKwyA .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e8LbKwyA .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e8LbKwyA .mbr-text_1,
.cid-v7e8LbKwyA .mbr-text_2,
.cid-v7e8LbKwyA .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e8LbKwyA .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8LbKwyA .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e8LbKwyA .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e8LbKwyA .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e8LbKwyA .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8LbKwyA .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e8LbKwyA .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e8LbKwyA .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8LbKwyA .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e8LbKwyA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e8LbKwyA .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e8LbKwyA .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e8LbKwyA .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7e8M6Mp74 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e8M6Mp74 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e8M6Mp74 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e8M6Mp74 .row {
  justify-content: center;
}
.cid-v7e8M6Mp74 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e8M6Mp74 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e8M6Mp74 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e8M6Mp74 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e8M6Mp74 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e8M6Mp74 .mbr-text_1,
.cid-v7e8M6Mp74 .mbr-text_2,
.cid-v7e8M6Mp74 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e8M6Mp74 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8M6Mp74 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e8M6Mp74 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e8M6Mp74 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e8M6Mp74 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8M6Mp74 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e8M6Mp74 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e8M6Mp74 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8M6Mp74 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e8M6Mp74 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e8M6Mp74 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e8M6Mp74 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e8M6Mp74 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2LocetxmH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2LocetxmH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2LocetxmH .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2LocetxmH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2LocetxmH .inner-container {
    width: 100% !important;
  }
}
.cid-v7e8NaMnXR {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e8NaMnXR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e8NaMnXR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e8NaMnXR .row {
  justify-content: center;
}
.cid-v7e8NaMnXR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e8NaMnXR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e8NaMnXR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e8NaMnXR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e8NaMnXR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e8NaMnXR .mbr-text_1,
.cid-v7e8NaMnXR .mbr-text_2,
.cid-v7e8NaMnXR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e8NaMnXR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8NaMnXR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e8NaMnXR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e8NaMnXR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e8NaMnXR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8NaMnXR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e8NaMnXR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e8NaMnXR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e8NaMnXR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e8NaMnXR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e8NaMnXR .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7e8NaMnXR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e8NaMnXR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suJ0iP7HuP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-suJ0jHh95m {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-suJ0jHh95m .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suJ0jHh95m .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suJ0jHh95m .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suJ0jHh95m .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suJ0jHh95m .row > .row {
  display: block;
}
.cid-suJ0jHh95m .mbr-gallery-item {
  width: 100%;
}
.cid-suJ0jHh95m .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suJ0jHh95m .mbr-gallery-item > div {
  position: relative;
}
.cid-suJ0jHh95m .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suJ0jHh95m .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suJ0jHh95m .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suJ0jHh95m .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2Locgwgiw {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s2Locgwgiw .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2Locgwgiw div.b {
  padding-top: 2rem;
}
.cid-s2LoxSvxue {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2LoxSvxue .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2LoxSvxue .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2LoxSvxue .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2LoxSvxue .inner-container {
    width: 100% !important;
  }
}
.cid-v72kO5n9ME {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v72kO5n9ME .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72kO5n9ME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72kO5n9ME .row {
  justify-content: center;
}
.cid-v72kO5n9ME .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72kO5n9ME .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72kO5n9ME .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72kO5n9ME .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72kO5n9ME .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72kO5n9ME .mbr-text_1,
.cid-v72kO5n9ME .mbr-text_2,
.cid-v72kO5n9ME .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72kO5n9ME .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72kO5n9ME .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72kO5n9ME .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v72kO5n9ME .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v72kO5n9ME .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72kO5n9ME .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72kO5n9ME .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72kO5n9ME .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72kO5n9ME .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v72kO5n9ME .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72kO5n9ME .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72kO5n9ME .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72kO5n9ME .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72kOYDpOj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v72kOYDpOj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72kOYDpOj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72kOYDpOj .row {
  justify-content: center;
}
.cid-v72kOYDpOj .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72kOYDpOj .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72kOYDpOj .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72kOYDpOj .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72kOYDpOj .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72kOYDpOj .mbr-text_1,
.cid-v72kOYDpOj .mbr-text_2,
.cid-v72kOYDpOj .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72kOYDpOj .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72kOYDpOj .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72kOYDpOj .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72kOYDpOj .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72kOYDpOj .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72kOYDpOj .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72kOYDpOj .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72kOYDpOj .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72kOYDpOj .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72kOYDpOj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72kOYDpOj .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72kOYDpOj .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72kOYDpOj .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2LoxT82BB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2LoxT82BB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2LoxT82BB .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2LoxT82BB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2LoxT82BB .inner-container {
    width: 100% !important;
  }
}
.cid-v7e91u4NVO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e91u4NVO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e91u4NVO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e91u4NVO .row {
  justify-content: center;
}
.cid-v7e91u4NVO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e91u4NVO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e91u4NVO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e91u4NVO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e91u4NVO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e91u4NVO .mbr-text_1,
.cid-v7e91u4NVO .mbr-text_2,
.cid-v7e91u4NVO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e91u4NVO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e91u4NVO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e91u4NVO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e91u4NVO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e91u4NVO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e91u4NVO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e91u4NVO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e91u4NVO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e91u4NVO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e91u4NVO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e91u4NVO .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7e91u4NVO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e91u4NVO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suJ1giDqZg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-suJ1haflog {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-suJ1haflog .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suJ1haflog .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suJ1haflog .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suJ1haflog .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suJ1haflog .row > .row {
  display: block;
}
.cid-suJ1haflog .mbr-gallery-item {
  width: 100%;
}
.cid-suJ1haflog .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suJ1haflog .mbr-gallery-item > div {
  position: relative;
}
.cid-suJ1haflog .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suJ1haflog .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suJ1haflog .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suJ1haflog .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2LoxVd3BI {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s2LoxVd3BI .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2LoxVd3BI div.b {
  padding-top: 2rem;
}
.cid-s2Lp7zqSkd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2Lp7zqSkd .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Lp7zqSkd .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2Lp7zqSkd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Lp7zqSkd .inner-container {
    width: 100% !important;
  }
}
.cid-v7e9BVBXPC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7e9BVBXPC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e9BVBXPC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e9BVBXPC .row {
  justify-content: center;
}
.cid-v7e9BVBXPC .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e9BVBXPC .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e9BVBXPC .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e9BVBXPC .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e9BVBXPC .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e9BVBXPC .mbr-text_1,
.cid-v7e9BVBXPC .mbr-text_2,
.cid-v7e9BVBXPC .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e9BVBXPC .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e9BVBXPC .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e9BVBXPC .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e9BVBXPC .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e9BVBXPC .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e9BVBXPC .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e9BVBXPC .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e9BVBXPC .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e9BVBXPC .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7e9BVBXPC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e9BVBXPC .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e9BVBXPC .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e9BVBXPC .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7e9CRG7Xb {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e9CRG7Xb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e9CRG7Xb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e9CRG7Xb .row {
  justify-content: center;
}
.cid-v7e9CRG7Xb .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e9CRG7Xb .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e9CRG7Xb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e9CRG7Xb .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e9CRG7Xb .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e9CRG7Xb .mbr-text_1,
.cid-v7e9CRG7Xb .mbr-text_2,
.cid-v7e9CRG7Xb .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e9CRG7Xb .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e9CRG7Xb .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e9CRG7Xb .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e9CRG7Xb .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e9CRG7Xb .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e9CRG7Xb .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e9CRG7Xb .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e9CRG7Xb .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e9CRG7Xb .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7e9CRG7Xb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e9CRG7Xb .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7e9CRG7Xb .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e9CRG7Xb .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2Lp7zVoH7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2Lp7zVoH7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Lp7zVoH7 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2Lp7zVoH7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Lp7zVoH7 .inner-container {
    width: 100% !important;
  }
}
.cid-v7e9EylzFC {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7e9EylzFC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7e9EylzFC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7e9EylzFC .row {
  justify-content: center;
}
.cid-v7e9EylzFC .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7e9EylzFC .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7e9EylzFC .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7e9EylzFC .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7e9EylzFC .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7e9EylzFC .mbr-text_1,
.cid-v7e9EylzFC .mbr-text_2,
.cid-v7e9EylzFC .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7e9EylzFC .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e9EylzFC .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7e9EylzFC .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e9EylzFC .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e9EylzFC .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e9EylzFC .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7e9EylzFC .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7e9EylzFC .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7e9EylzFC .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7e9EylzFC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7e9EylzFC .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7e9EylzFC .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7e9EylzFC .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suJ3mJbiLS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-suJ3nzaf2h {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-suJ3nzaf2h .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suJ3nzaf2h .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suJ3nzaf2h .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suJ3nzaf2h .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suJ3nzaf2h .row > .row {
  display: block;
}
.cid-suJ3nzaf2h .mbr-gallery-item {
  width: 100%;
}
.cid-suJ3nzaf2h .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suJ3nzaf2h .mbr-gallery-item > div {
  position: relative;
}
.cid-suJ3nzaf2h .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suJ3nzaf2h .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suJ3nzaf2h .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suJ3nzaf2h .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2Lp7Boa8g {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s2Lp7Boa8g .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2Lp7Boa8g div.b {
  padding-top: 2rem;
}
.cid-s2LpugMprf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2LpugMprf .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2LpugMprf .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s2LpugMprf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2LpugMprf .inner-container {
    width: 100% !important;
  }
}
.cid-v7eaePlBTR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7eaePlBTR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7eaePlBTR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7eaePlBTR .row {
  justify-content: center;
}
.cid-v7eaePlBTR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7eaePlBTR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7eaePlBTR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7eaePlBTR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7eaePlBTR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7eaePlBTR .mbr-text_1,
.cid-v7eaePlBTR .mbr-text_2,
.cid-v7eaePlBTR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7eaePlBTR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eaePlBTR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7eaePlBTR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7eaePlBTR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7eaePlBTR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eaePlBTR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7eaePlBTR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7eaePlBTR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eaePlBTR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7eaePlBTR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7eaePlBTR .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7eaePlBTR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7eaePlBTR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7eafENcdr {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7eafENcdr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7eafENcdr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7eafENcdr .row {
  justify-content: center;
}
.cid-v7eafENcdr .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7eafENcdr .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7eafENcdr .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7eafENcdr .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7eafENcdr .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7eafENcdr .mbr-text_1,
.cid-v7eafENcdr .mbr-text_2,
.cid-v7eafENcdr .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7eafENcdr .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eafENcdr .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7eafENcdr .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7eafENcdr .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7eafENcdr .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eafENcdr .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7eafENcdr .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7eafENcdr .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eafENcdr .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7eafENcdr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7eafENcdr .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7eafENcdr .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7eafENcdr .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2LpuhrNzE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s2LpuhrNzE .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2LpuhrNzE .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s2LpuhrNzE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2LpuhrNzE .inner-container {
    width: 100% !important;
  }
}
.cid-v7eahcH9dS {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7eahcH9dS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7eahcH9dS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7eahcH9dS .row {
  justify-content: center;
}
.cid-v7eahcH9dS .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7eahcH9dS .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7eahcH9dS .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7eahcH9dS .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7eahcH9dS .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7eahcH9dS .mbr-text_1,
.cid-v7eahcH9dS .mbr-text_2,
.cid-v7eahcH9dS .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7eahcH9dS .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eahcH9dS .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7eahcH9dS .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7eahcH9dS .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7eahcH9dS .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eahcH9dS .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7eahcH9dS .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7eahcH9dS .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eahcH9dS .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7eahcH9dS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7eahcH9dS .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7eahcH9dS .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7eahcH9dS .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suqXunVnmX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-suqXs1mQPA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-suqXs1mQPA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suqXs1mQPA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suqXs1mQPA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suqXs1mQPA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suqXs1mQPA .row > .row {
  display: block;
}
.cid-suqXs1mQPA .mbr-gallery-item {
  width: 100%;
}
.cid-suqXs1mQPA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suqXs1mQPA .mbr-gallery-item > div {
  position: relative;
}
.cid-suqXs1mQPA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suqXs1mQPA .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suqXs1mQPA .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suqXs1mQPA .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2LpujhQ1j {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-s2LpujhQ1j .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2LpujhQ1j div.b {
  padding-top: 2rem;
}
.cid-s2P2rfvdEG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2P2rfvdEG .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2P2rfvdEG .section-text {
  padding: 2rem 0;
}
.cid-s2P2rfvdEG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2P2rfvdEG .inner-container {
    width: 100% !important;
  }
}
.cid-uHjZwBdxgc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-uHjZwBdxgc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjZwBdxgc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjZwBdxgc .row {
  justify-content: center;
}
.cid-uHjZwBdxgc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjZwBdxgc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjZwBdxgc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjZwBdxgc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjZwBdxgc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjZwBdxgc .mbr-text_1,
.cid-uHjZwBdxgc .mbr-text_2,
.cid-uHjZwBdxgc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjZwBdxgc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZwBdxgc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjZwBdxgc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uHjZwBdxgc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uHjZwBdxgc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZwBdxgc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjZwBdxgc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjZwBdxgc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZwBdxgc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uHjZwBdxgc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjZwBdxgc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjZwBdxgc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjZwBdxgc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHjZvySMEq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-uHjZvySMEq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjZvySMEq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjZvySMEq .row {
  justify-content: center;
}
.cid-uHjZvySMEq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjZvySMEq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjZvySMEq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjZvySMEq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjZvySMEq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjZvySMEq .mbr-text_1,
.cid-uHjZvySMEq .mbr-text_2,
.cid-uHjZvySMEq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjZvySMEq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZvySMEq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjZvySMEq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjZvySMEq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjZvySMEq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZvySMEq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjZvySMEq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjZvySMEq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZvySMEq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjZvySMEq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjZvySMEq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjZvySMEq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjZvySMEq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2P2rfU9KB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2P2rfU9KB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2P2rfU9KB .section-text {
  padding: 2rem 0;
}
.cid-s2P2rfU9KB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2P2rfU9KB .inner-container {
    width: 100% !important;
  }
}
.cid-s2P2rgl0Sb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2P2rgl0Sb .mbr-section-subtitle {
  color: #767676;
}
.cid-s2P2rgl0Sb .container-table {
  margin: 0 auto;
}
.cid-s2P2rgl0Sb .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2P2rgl0Sb .dataTables_wrapper {
  display: block;
}
.cid-s2P2rgl0Sb .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2P2rgl0Sb .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2P2rgl0Sb table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2P2rgl0Sb table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2P2rgl0Sb table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2P2rgl0Sb table td {
  border-top: 1px solid #232323;
}
.cid-s2P2rgl0Sb table.table {
  background: #ecae15;
}
.cid-s2P2rgl0Sb .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2P2rgl0Sb .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2P2rgl0Sb .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2P2rgl0Sb .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2P2rgl0Sb .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2P2rgl0Sb .dataTables_filter {
    text-align: center;
  }
  .cid-s2P2rgl0Sb .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2P2rgl0Sb .mbr-section-title {
  color: #ff3366;
}
.cid-s2P2rgl0Sb .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s2P2rgl0Sb .body-item {
  text-align: center;
}
.cid-s2P2rktcSo {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2P2rktcSo .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2P2rktcSo div.b {
  padding-top: 2rem;
}
.cid-s2P2rktcSo H5 {
  color: #232323;
}
.cid-s2P8Cy5nAB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2P8Cy5nAB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2P8Cy5nAB .section-text {
  padding: 2rem 0;
}
.cid-s2P8Cy5nAB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2P8Cy5nAB .inner-container {
    width: 100% !important;
  }
}
.cid-v7pimuwtIO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pimuwtIO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pimuwtIO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pimuwtIO .row {
  justify-content: center;
}
.cid-v7pimuwtIO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pimuwtIO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pimuwtIO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pimuwtIO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pimuwtIO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pimuwtIO .mbr-text_1,
.cid-v7pimuwtIO .mbr-text_2,
.cid-v7pimuwtIO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pimuwtIO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pimuwtIO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pimuwtIO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pimuwtIO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pimuwtIO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pimuwtIO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pimuwtIO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pimuwtIO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pimuwtIO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pimuwtIO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pimuwtIO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pimuwtIO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pimuwtIO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7piwVMNlX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7piwVMNlX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7piwVMNlX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7piwVMNlX .row {
  justify-content: center;
}
.cid-v7piwVMNlX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7piwVMNlX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7piwVMNlX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7piwVMNlX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7piwVMNlX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7piwVMNlX .mbr-text_1,
.cid-v7piwVMNlX .mbr-text_2,
.cid-v7piwVMNlX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7piwVMNlX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piwVMNlX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7piwVMNlX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7piwVMNlX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7piwVMNlX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piwVMNlX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7piwVMNlX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7piwVMNlX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piwVMNlX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7piwVMNlX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7piwVMNlX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7piwVMNlX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7piwVMNlX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2P8Cyv37x {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2P8Cyv37x .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2P8Cyv37x .section-text {
  padding: 2rem 0;
}
.cid-s2P8Cyv37x .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2P8Cyv37x .inner-container {
    width: 100% !important;
  }
}
.cid-s2P9IG7oHl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2P9IG7oHl .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2P9IG7oHl .section-text {
  padding: 2rem 0;
}
.cid-s2P9IG7oHl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2P9IG7oHl .inner-container {
    width: 100% !important;
  }
}
.cid-twikyoJq21 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twikyoJq21 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twikyoJq21 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twikyoJq21 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twikyoJq21 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twikyoJq21 .row > .row {
  display: block;
}
.cid-twikyoJq21 .mbr-gallery-item {
  width: 100%;
}
.cid-twikyoJq21 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twikyoJq21 .mbr-gallery-item > div {
  position: relative;
}
.cid-twikyoJq21 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twikyoJq21 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twikyoJq21 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twikyoJq21 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2Pfkbwm3a {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2Pfkbwm3a .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Pfkbwm3a .section-text {
  padding: 2rem 0;
}
.cid-s2Pfkbwm3a .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Pfkbwm3a .inner-container {
    width: 100% !important;
  }
}
.cid-s2P8CB3P6R {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2P8CB3P6R .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2P8CB3P6R div.b {
  padding-top: 2rem;
}
.cid-s2P8CB3P6R H5 {
  color: #232323;
}
.cid-s2PeLNLxTv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2PeLNLxTv .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2PeLNLxTv .section-text {
  padding: 2rem 0;
}
.cid-s2PeLNLxTv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2PeLNLxTv .inner-container {
    width: 100% !important;
  }
}
.cid-v7piK3hwy2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7piK3hwy2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7piK3hwy2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7piK3hwy2 .row {
  justify-content: center;
}
.cid-v7piK3hwy2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7piK3hwy2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7piK3hwy2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7piK3hwy2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7piK3hwy2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7piK3hwy2 .mbr-text_1,
.cid-v7piK3hwy2 .mbr-text_2,
.cid-v7piK3hwy2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7piK3hwy2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piK3hwy2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7piK3hwy2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7piK3hwy2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7piK3hwy2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piK3hwy2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7piK3hwy2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7piK3hwy2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piK3hwy2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7piK3hwy2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7piK3hwy2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7piK3hwy2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7piK3hwy2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7piKXAtFh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7piKXAtFh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7piKXAtFh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7piKXAtFh .row {
  justify-content: center;
}
.cid-v7piKXAtFh .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7piKXAtFh .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7piKXAtFh .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7piKXAtFh .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7piKXAtFh .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7piKXAtFh .mbr-text_1,
.cid-v7piKXAtFh .mbr-text_2,
.cid-v7piKXAtFh .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7piKXAtFh .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piKXAtFh .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7piKXAtFh .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7piKXAtFh .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7piKXAtFh .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piKXAtFh .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7piKXAtFh .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7piKXAtFh .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piKXAtFh .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7piKXAtFh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7piKXAtFh .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7piKXAtFh .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7piKXAtFh .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2PeLO1gXt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2PeLO1gXt .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2PeLO1gXt .section-text {
  padding: 2rem 0;
}
.cid-s2PeLO1gXt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2PeLO1gXt .inner-container {
    width: 100% !important;
  }
}
.cid-s2PeLOsQRM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2PeLOsQRM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2PeLOsQRM .section-text {
  padding: 2rem 0;
}
.cid-s2PeLOsQRM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2PeLOsQRM .inner-container {
    width: 100% !important;
  }
}
.cid-twinWg9Bqd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twinWg9Bqd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twinWg9Bqd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twinWg9Bqd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twinWg9Bqd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twinWg9Bqd .row > .row {
  display: block;
}
.cid-twinWg9Bqd .mbr-gallery-item {
  width: 100%;
}
.cid-twinWg9Bqd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twinWg9Bqd .mbr-gallery-item > div {
  position: relative;
}
.cid-twinWg9Bqd .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twinWg9Bqd .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twinWg9Bqd .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twinWg9Bqd .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2PeLP3yM5 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2PeLP3yM5 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2PeLP3yM5 div.b {
  padding-top: 2rem;
}
.cid-s2PeLP3yM5 H5 {
  color: #232323;
}
.cid-s2PeW7DIoO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2PeW7DIoO .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2PeW7DIoO .section-text {
  padding: 2rem 0;
}
.cid-s2PeW7DIoO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2PeW7DIoO .inner-container {
    width: 100% !important;
  }
}
.cid-v7piWIa2Cf {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7piWIa2Cf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7piWIa2Cf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7piWIa2Cf .row {
  justify-content: center;
}
.cid-v7piWIa2Cf .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7piWIa2Cf .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7piWIa2Cf .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7piWIa2Cf .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7piWIa2Cf .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7piWIa2Cf .mbr-text_1,
.cid-v7piWIa2Cf .mbr-text_2,
.cid-v7piWIa2Cf .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7piWIa2Cf .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piWIa2Cf .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7piWIa2Cf .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7piWIa2Cf .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7piWIa2Cf .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piWIa2Cf .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7piWIa2Cf .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7piWIa2Cf .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piWIa2Cf .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7piWIa2Cf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7piWIa2Cf .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7piWIa2Cf .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7piWIa2Cf .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7piXHiz2t {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7piXHiz2t .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7piXHiz2t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7piXHiz2t .row {
  justify-content: center;
}
.cid-v7piXHiz2t .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7piXHiz2t .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7piXHiz2t .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7piXHiz2t .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7piXHiz2t .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7piXHiz2t .mbr-text_1,
.cid-v7piXHiz2t .mbr-text_2,
.cid-v7piXHiz2t .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7piXHiz2t .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piXHiz2t .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7piXHiz2t .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7piXHiz2t .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7piXHiz2t .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piXHiz2t .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7piXHiz2t .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7piXHiz2t .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7piXHiz2t .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7piXHiz2t .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7piXHiz2t .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7piXHiz2t .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7piXHiz2t .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2PeW7S4m2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2PeW7S4m2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2PeW7S4m2 .section-text {
  padding: 2rem 0;
}
.cid-s2PeW7S4m2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2PeW7S4m2 .inner-container {
    width: 100% !important;
  }
}
.cid-s2PeW8jTND {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2PeW8jTND .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2PeW8jTND .section-text {
  padding: 2rem 0;
}
.cid-s2PeW8jTND .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2PeW8jTND .inner-container {
    width: 100% !important;
  }
}
.cid-twisbLTzi4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twisbLTzi4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twisbLTzi4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twisbLTzi4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twisbLTzi4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twisbLTzi4 .row > .row {
  display: block;
}
.cid-twisbLTzi4 .mbr-gallery-item {
  width: 100%;
}
.cid-twisbLTzi4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twisbLTzi4 .mbr-gallery-item > div {
  position: relative;
}
.cid-twisbLTzi4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twisbLTzi4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twisbLTzi4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twisbLTzi4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2PeW9bjrP {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2PeW9bjrP .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2PeW9bjrP div.b {
  padding-top: 2rem;
}
.cid-s2PeW9bjrP H5 {
  color: #232323;
}
.cid-s2PgqU2sTi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2PgqU2sTi .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2PgqU2sTi .section-text {
  padding: 2rem 0;
}
.cid-s2PgqU2sTi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2PgqU2sTi .inner-container {
    width: 100% !important;
  }
}
.cid-v7pjgHqYpa {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pjgHqYpa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pjgHqYpa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pjgHqYpa .row {
  justify-content: center;
}
.cid-v7pjgHqYpa .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pjgHqYpa .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pjgHqYpa .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pjgHqYpa .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pjgHqYpa .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pjgHqYpa .mbr-text_1,
.cid-v7pjgHqYpa .mbr-text_2,
.cid-v7pjgHqYpa .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pjgHqYpa .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjgHqYpa .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pjgHqYpa .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pjgHqYpa .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pjgHqYpa .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjgHqYpa .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pjgHqYpa .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pjgHqYpa .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjgHqYpa .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pjgHqYpa .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pjgHqYpa .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pjgHqYpa .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pjgHqYpa .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pjhzkUrO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7pjhzkUrO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pjhzkUrO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pjhzkUrO .row {
  justify-content: center;
}
.cid-v7pjhzkUrO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pjhzkUrO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pjhzkUrO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pjhzkUrO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pjhzkUrO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pjhzkUrO .mbr-text_1,
.cid-v7pjhzkUrO .mbr-text_2,
.cid-v7pjhzkUrO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pjhzkUrO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjhzkUrO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pjhzkUrO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pjhzkUrO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pjhzkUrO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjhzkUrO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pjhzkUrO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pjhzkUrO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjhzkUrO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pjhzkUrO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pjhzkUrO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pjhzkUrO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pjhzkUrO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2PgqUkg3m {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2PgqUkg3m .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2PgqUkg3m .section-text {
  padding: 2rem 0;
}
.cid-s2PgqUkg3m .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2PgqUkg3m .inner-container {
    width: 100% !important;
  }
}
.cid-s2PgqULoZD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2PgqULoZD .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2PgqULoZD .section-text {
  padding: 2rem 0;
}
.cid-s2PgqULoZD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2PgqULoZD .inner-container {
    width: 100% !important;
  }
}
.cid-twfrQgKoOS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twfrQgKoOS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twfrQgKoOS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twfrQgKoOS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twfrQgKoOS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twfrQgKoOS .row > .row {
  display: block;
}
.cid-twfrQgKoOS .mbr-gallery-item {
  width: 100%;
}
.cid-twfrQgKoOS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twfrQgKoOS .mbr-gallery-item > div {
  position: relative;
}
.cid-twfrQgKoOS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twfrQgKoOS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twfrQgKoOS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twfrQgKoOS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2PgqVsgal {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2PgqVsgal .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2PgqVsgal div.b {
  padding-top: 2rem;
}
.cid-s2PgqVsgal H5 {
  color: #232323;
}
.cid-s2PgBgWEps {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2PgBgWEps .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2PgBgWEps .section-text {
  padding: 2rem 0;
}
.cid-s2PgBgWEps .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2PgBgWEps .inner-container {
    width: 100% !important;
  }
}
.cid-v7pjFoiHef {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pjFoiHef .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pjFoiHef .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pjFoiHef .row {
  justify-content: center;
}
.cid-v7pjFoiHef .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pjFoiHef .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pjFoiHef .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pjFoiHef .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pjFoiHef .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pjFoiHef .mbr-text_1,
.cid-v7pjFoiHef .mbr-text_2,
.cid-v7pjFoiHef .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pjFoiHef .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjFoiHef .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pjFoiHef .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pjFoiHef .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pjFoiHef .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjFoiHef .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pjFoiHef .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pjFoiHef .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjFoiHef .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pjFoiHef .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pjFoiHef .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pjFoiHef .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pjFoiHef .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pjGewiNU {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7pjGewiNU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pjGewiNU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pjGewiNU .row {
  justify-content: center;
}
.cid-v7pjGewiNU .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pjGewiNU .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pjGewiNU .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pjGewiNU .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pjGewiNU .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pjGewiNU .mbr-text_1,
.cid-v7pjGewiNU .mbr-text_2,
.cid-v7pjGewiNU .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pjGewiNU .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjGewiNU .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pjGewiNU .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pjGewiNU .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pjGewiNU .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjGewiNU .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pjGewiNU .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pjGewiNU .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjGewiNU .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pjGewiNU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pjGewiNU .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pjGewiNU .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pjGewiNU .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2PgBh9P3R {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2PgBh9P3R .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2PgBh9P3R .section-text {
  padding: 2rem 0;
}
.cid-s2PgBh9P3R .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2PgBh9P3R .inner-container {
    width: 100% !important;
  }
}
.cid-s2PgBhx3sP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2PgBhx3sP .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2PgBhx3sP .section-text {
  padding: 2rem 0;
}
.cid-s2PgBhx3sP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2PgBhx3sP .inner-container {
    width: 100% !important;
  }
}
.cid-twfsMlUN5B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twfsMlUN5B .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twfsMlUN5B .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twfsMlUN5B .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twfsMlUN5B .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twfsMlUN5B .row > .row {
  display: block;
}
.cid-twfsMlUN5B .mbr-gallery-item {
  width: 100%;
}
.cid-twfsMlUN5B .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twfsMlUN5B .mbr-gallery-item > div {
  position: relative;
}
.cid-twfsMlUN5B .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twfsMlUN5B .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twfsMlUN5B .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twfsMlUN5B .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2PgBi2fnG {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2PgBi2fnG .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2PgBi2fnG div.b {
  padding-top: 2rem;
}
.cid-s2PgBi2fnG H5 {
  color: #232323;
}
.cid-s2Tzo5hIV7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2Tzo5hIV7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Tzo5hIV7 .section-text {
  padding: 2rem 0;
}
.cid-s2Tzo5hIV7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Tzo5hIV7 .inner-container {
    width: 100% !important;
  }
}
.cid-v7pjWx4OPH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pjWx4OPH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pjWx4OPH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pjWx4OPH .row {
  justify-content: center;
}
.cid-v7pjWx4OPH .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pjWx4OPH .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pjWx4OPH .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pjWx4OPH .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pjWx4OPH .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pjWx4OPH .mbr-text_1,
.cid-v7pjWx4OPH .mbr-text_2,
.cid-v7pjWx4OPH .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pjWx4OPH .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjWx4OPH .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pjWx4OPH .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pjWx4OPH .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pjWx4OPH .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjWx4OPH .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pjWx4OPH .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pjWx4OPH .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjWx4OPH .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pjWx4OPH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pjWx4OPH .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pjWx4OPH .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pjWx4OPH .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pjXkGCjm {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7pjXkGCjm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pjXkGCjm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pjXkGCjm .row {
  justify-content: center;
}
.cid-v7pjXkGCjm .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pjXkGCjm .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pjXkGCjm .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pjXkGCjm .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pjXkGCjm .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pjXkGCjm .mbr-text_1,
.cid-v7pjXkGCjm .mbr-text_2,
.cid-v7pjXkGCjm .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pjXkGCjm .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjXkGCjm .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pjXkGCjm .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pjXkGCjm .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pjXkGCjm .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjXkGCjm .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pjXkGCjm .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pjXkGCjm .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pjXkGCjm .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pjXkGCjm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pjXkGCjm .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pjXkGCjm .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pjXkGCjm .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2Tzo5QYQe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2Tzo5QYQe .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Tzo5QYQe .section-text {
  padding: 2rem 0;
}
.cid-s2Tzo5QYQe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Tzo5QYQe .inner-container {
    width: 100% !important;
  }
}
.cid-s2Tzo6fKc2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2Tzo6fKc2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Tzo6fKc2 .section-text {
  padding: 2rem 0;
}
.cid-s2Tzo6fKc2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Tzo6fKc2 .inner-container {
    width: 100% !important;
  }
}
.cid-twftdyo2X2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twftdyo2X2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twftdyo2X2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twftdyo2X2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twftdyo2X2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twftdyo2X2 .row > .row {
  display: block;
}
.cid-twftdyo2X2 .mbr-gallery-item {
  width: 100%;
}
.cid-twftdyo2X2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twftdyo2X2 .mbr-gallery-item > div {
  position: relative;
}
.cid-twftdyo2X2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twftdyo2X2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twftdyo2X2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twftdyo2X2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2Tzo6N7G1 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2Tzo6N7G1 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2Tzo6N7G1 div.b {
  padding-top: 2rem;
}
.cid-s2Tzo6N7G1 H5 {
  color: #232323;
}
.cid-s2TBKBuHQG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2TBKBuHQG .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2TBKBuHQG .section-text {
  padding: 2rem 0;
}
.cid-s2TBKBuHQG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2TBKBuHQG .inner-container {
    width: 100% !important;
  }
}
.cid-v7pkddTmc5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pkddTmc5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pkddTmc5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pkddTmc5 .row {
  justify-content: center;
}
.cid-v7pkddTmc5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pkddTmc5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pkddTmc5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pkddTmc5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pkddTmc5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pkddTmc5 .mbr-text_1,
.cid-v7pkddTmc5 .mbr-text_2,
.cid-v7pkddTmc5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pkddTmc5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkddTmc5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pkddTmc5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pkddTmc5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pkddTmc5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkddTmc5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pkddTmc5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pkddTmc5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkddTmc5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pkddTmc5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pkddTmc5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pkddTmc5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pkddTmc5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pkedluwY {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7pkedluwY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pkedluwY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pkedluwY .row {
  justify-content: center;
}
.cid-v7pkedluwY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pkedluwY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pkedluwY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pkedluwY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pkedluwY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pkedluwY .mbr-text_1,
.cid-v7pkedluwY .mbr-text_2,
.cid-v7pkedluwY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pkedluwY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkedluwY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pkedluwY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pkedluwY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pkedluwY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkedluwY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pkedluwY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pkedluwY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkedluwY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pkedluwY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pkedluwY .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pkedluwY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pkedluwY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2TBKBMyLO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2TBKBMyLO .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2TBKBMyLO .section-text {
  padding: 2rem 0;
}
.cid-s2TBKBMyLO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2TBKBMyLO .inner-container {
    width: 100% !important;
  }
}
.cid-s2TBKCdkts {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2TBKCdkts .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2TBKCdkts .section-text {
  padding: 2rem 0;
}
.cid-s2TBKCdkts .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2TBKCdkts .inner-container {
    width: 100% !important;
  }
}
.cid-twftFRwYz6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twftFRwYz6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twftFRwYz6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twftFRwYz6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twftFRwYz6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twftFRwYz6 .row > .row {
  display: block;
}
.cid-twftFRwYz6 .mbr-gallery-item {
  width: 100%;
}
.cid-twftFRwYz6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twftFRwYz6 .mbr-gallery-item > div {
  position: relative;
}
.cid-twftFRwYz6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twftFRwYz6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twftFRwYz6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twftFRwYz6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2TBKCL9VS {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2TBKCL9VS .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2TBKCL9VS div.b {
  padding-top: 2rem;
}
.cid-s2TBKCL9VS H5 {
  color: #232323;
}
.cid-s2TCiCEMtU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2TCiCEMtU .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2TCiCEMtU .section-text {
  padding: 2rem 0;
}
.cid-s2TCiCEMtU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2TCiCEMtU .inner-container {
    width: 100% !important;
  }
}
.cid-v7pkrrRncH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pkrrRncH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pkrrRncH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pkrrRncH .row {
  justify-content: center;
}
.cid-v7pkrrRncH .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pkrrRncH .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pkrrRncH .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pkrrRncH .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pkrrRncH .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pkrrRncH .mbr-text_1,
.cid-v7pkrrRncH .mbr-text_2,
.cid-v7pkrrRncH .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pkrrRncH .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkrrRncH .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pkrrRncH .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pkrrRncH .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pkrrRncH .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkrrRncH .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pkrrRncH .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pkrrRncH .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkrrRncH .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pkrrRncH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pkrrRncH .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pkrrRncH .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pkrrRncH .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pks9hYg0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7pks9hYg0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pks9hYg0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pks9hYg0 .row {
  justify-content: center;
}
.cid-v7pks9hYg0 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pks9hYg0 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pks9hYg0 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pks9hYg0 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pks9hYg0 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pks9hYg0 .mbr-text_1,
.cid-v7pks9hYg0 .mbr-text_2,
.cid-v7pks9hYg0 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pks9hYg0 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pks9hYg0 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pks9hYg0 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pks9hYg0 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pks9hYg0 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pks9hYg0 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pks9hYg0 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pks9hYg0 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pks9hYg0 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pks9hYg0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pks9hYg0 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pks9hYg0 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pks9hYg0 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2TCiCTQjC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2TCiCTQjC .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2TCiCTQjC .section-text {
  padding: 2rem 0;
}
.cid-s2TCiCTQjC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2TCiCTQjC .inner-container {
    width: 100% !important;
  }
}
.cid-s2TCiDcjqV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2TCiDcjqV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2TCiDcjqV .section-text {
  padding: 2rem 0;
}
.cid-s2TCiDcjqV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2TCiDcjqV .inner-container {
    width: 100% !important;
  }
}
.cid-twfuckNp7w {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twfuckNp7w .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twfuckNp7w .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twfuckNp7w .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twfuckNp7w .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twfuckNp7w .row > .row {
  display: block;
}
.cid-twfuckNp7w .mbr-gallery-item {
  width: 100%;
}
.cid-twfuckNp7w .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twfuckNp7w .mbr-gallery-item > div {
  position: relative;
}
.cid-twfuckNp7w .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twfuckNp7w .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twfuckNp7w .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twfuckNp7w .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2TCiDIKjn {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2TCiDIKjn .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2TCiDIKjn div.b {
  padding-top: 2rem;
}
.cid-s2TCiDIKjn H5 {
  color: #232323;
}
.cid-s2TDxuZTPg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2TDxuZTPg .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2TDxuZTPg .section-text {
  padding: 2rem 0;
}
.cid-s2TDxuZTPg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2TDxuZTPg .inner-container {
    width: 100% !important;
  }
}
.cid-v7pkDurwsz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pkDurwsz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pkDurwsz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pkDurwsz .row {
  justify-content: center;
}
.cid-v7pkDurwsz .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pkDurwsz .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pkDurwsz .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pkDurwsz .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pkDurwsz .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pkDurwsz .mbr-text_1,
.cid-v7pkDurwsz .mbr-text_2,
.cid-v7pkDurwsz .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pkDurwsz .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkDurwsz .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pkDurwsz .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pkDurwsz .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pkDurwsz .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkDurwsz .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pkDurwsz .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pkDurwsz .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkDurwsz .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pkDurwsz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pkDurwsz .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pkDurwsz .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pkDurwsz .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pkEiGlYW {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7pkEiGlYW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pkEiGlYW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pkEiGlYW .row {
  justify-content: center;
}
.cid-v7pkEiGlYW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pkEiGlYW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pkEiGlYW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pkEiGlYW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pkEiGlYW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pkEiGlYW .mbr-text_1,
.cid-v7pkEiGlYW .mbr-text_2,
.cid-v7pkEiGlYW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pkEiGlYW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkEiGlYW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pkEiGlYW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pkEiGlYW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pkEiGlYW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkEiGlYW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pkEiGlYW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pkEiGlYW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkEiGlYW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pkEiGlYW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pkEiGlYW .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pkEiGlYW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pkEiGlYW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2TDxvign8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2TDxvign8 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2TDxvign8 .section-text {
  padding: 2rem 0;
}
.cid-s2TDxvign8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2TDxvign8 .inner-container {
    width: 100% !important;
  }
}
.cid-s2TDxvKhv7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2TDxvKhv7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2TDxvKhv7 .section-text {
  padding: 2rem 0;
}
.cid-s2TDxvKhv7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2TDxvKhv7 .inner-container {
    width: 100% !important;
  }
}
.cid-twfuyrIgAT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twfuyrIgAT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twfuyrIgAT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twfuyrIgAT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twfuyrIgAT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twfuyrIgAT .row > .row {
  display: block;
}
.cid-twfuyrIgAT .mbr-gallery-item {
  width: 100%;
}
.cid-twfuyrIgAT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twfuyrIgAT .mbr-gallery-item > div {
  position: relative;
}
.cid-twfuyrIgAT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twfuyrIgAT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twfuyrIgAT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twfuyrIgAT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2TDxwlXiL {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2TDxwlXiL .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2TDxwlXiL div.b {
  padding-top: 2rem;
}
.cid-s2TDxwlXiL H5 {
  color: #232323;
}
.cid-s2TE3Zv7FA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2TE3Zv7FA .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2TE3Zv7FA .section-text {
  padding: 2rem 0;
}
.cid-s2TE3Zv7FA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2TE3Zv7FA .inner-container {
    width: 100% !important;
  }
}
.cid-v7pkQoyQFJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pkQoyQFJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pkQoyQFJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pkQoyQFJ .row {
  justify-content: center;
}
.cid-v7pkQoyQFJ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pkQoyQFJ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pkQoyQFJ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pkQoyQFJ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pkQoyQFJ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pkQoyQFJ .mbr-text_1,
.cid-v7pkQoyQFJ .mbr-text_2,
.cid-v7pkQoyQFJ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pkQoyQFJ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkQoyQFJ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pkQoyQFJ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pkQoyQFJ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pkQoyQFJ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkQoyQFJ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pkQoyQFJ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pkQoyQFJ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkQoyQFJ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pkQoyQFJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pkQoyQFJ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pkQoyQFJ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pkQoyQFJ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pkRnsCXP {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7pkRnsCXP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pkRnsCXP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pkRnsCXP .row {
  justify-content: center;
}
.cid-v7pkRnsCXP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pkRnsCXP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pkRnsCXP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pkRnsCXP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pkRnsCXP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pkRnsCXP .mbr-text_1,
.cid-v7pkRnsCXP .mbr-text_2,
.cid-v7pkRnsCXP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pkRnsCXP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkRnsCXP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pkRnsCXP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pkRnsCXP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pkRnsCXP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkRnsCXP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pkRnsCXP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pkRnsCXP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pkRnsCXP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pkRnsCXP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pkRnsCXP .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pkRnsCXP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pkRnsCXP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2TE3ZRRTe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2TE3ZRRTe .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2TE3ZRRTe .section-text {
  padding: 2rem 0;
}
.cid-s2TE3ZRRTe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2TE3ZRRTe .inner-container {
    width: 100% !important;
  }
}
.cid-s2TE40iBdT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2TE40iBdT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2TE40iBdT .section-text {
  padding: 2rem 0;
}
.cid-s2TE40iBdT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2TE40iBdT .inner-container {
    width: 100% !important;
  }
}
.cid-twfvm7OoCv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twfvm7OoCv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twfvm7OoCv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twfvm7OoCv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twfvm7OoCv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twfvm7OoCv .row > .row {
  display: block;
}
.cid-twfvm7OoCv .mbr-gallery-item {
  width: 100%;
}
.cid-twfvm7OoCv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twfvm7OoCv .mbr-gallery-item > div {
  position: relative;
}
.cid-twfvm7OoCv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twfvm7OoCv .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twfvm7OoCv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twfvm7OoCv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2TE40SCDf {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2TE40SCDf .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2TE40SCDf div.b {
  padding-top: 2rem;
}
.cid-s2TE40SCDf H5 {
  color: #232323;
}
.cid-s2UTtedAaS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UTtedAaS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UTtedAaS .section-text {
  padding: 2rem 0;
}
.cid-s2UTtedAaS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UTtedAaS .inner-container {
    width: 100% !important;
  }
}
.cid-v7pl4uI5cH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pl4uI5cH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pl4uI5cH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pl4uI5cH .row {
  justify-content: center;
}
.cid-v7pl4uI5cH .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pl4uI5cH .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pl4uI5cH .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pl4uI5cH .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pl4uI5cH .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pl4uI5cH .mbr-text_1,
.cid-v7pl4uI5cH .mbr-text_2,
.cid-v7pl4uI5cH .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pl4uI5cH .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pl4uI5cH .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pl4uI5cH .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pl4uI5cH .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pl4uI5cH .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pl4uI5cH .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pl4uI5cH .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pl4uI5cH .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pl4uI5cH .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pl4uI5cH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pl4uI5cH .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pl4uI5cH .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pl4uI5cH .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pl5pTD09 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7pl5pTD09 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pl5pTD09 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pl5pTD09 .row {
  justify-content: center;
}
.cid-v7pl5pTD09 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pl5pTD09 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pl5pTD09 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pl5pTD09 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pl5pTD09 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pl5pTD09 .mbr-text_1,
.cid-v7pl5pTD09 .mbr-text_2,
.cid-v7pl5pTD09 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pl5pTD09 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pl5pTD09 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pl5pTD09 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pl5pTD09 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pl5pTD09 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pl5pTD09 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pl5pTD09 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pl5pTD09 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pl5pTD09 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pl5pTD09 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pl5pTD09 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pl5pTD09 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pl5pTD09 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2UTteqHjo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UTteqHjo .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UTteqHjo .section-text {
  padding: 2rem 0;
}
.cid-s2UTteqHjo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UTteqHjo .inner-container {
    width: 100% !important;
  }
}
.cid-s2UTteLlhu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UTteLlhu .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UTteLlhu .section-text {
  padding: 2rem 0;
}
.cid-s2UTteLlhu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UTteLlhu .inner-container {
    width: 100% !important;
  }
}
.cid-twiudes6yN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twiudes6yN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twiudes6yN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twiudes6yN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twiudes6yN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twiudes6yN .row > .row {
  display: block;
}
.cid-twiudes6yN .mbr-gallery-item {
  width: 100%;
}
.cid-twiudes6yN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twiudes6yN .mbr-gallery-item > div {
  position: relative;
}
.cid-twiudes6yN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twiudes6yN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twiudes6yN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twiudes6yN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2UUOxHqKR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UUOxHqKR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UUOxHqKR .section-text {
  padding: 2rem 0;
}
.cid-s2UUOxHqKR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UUOxHqKR .inner-container {
    width: 100% !important;
  }
}
.cid-s2UTtfucLh {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2UTtfucLh .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2UTtfucLh div.b {
  padding-top: 2rem;
}
.cid-s2UTtfucLh H5 {
  color: #232323;
}
.cid-s2UUTS3I5h {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UUTS3I5h .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UUTS3I5h .section-text {
  padding: 2rem 0;
}
.cid-s2UUTS3I5h .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UUTS3I5h .inner-container {
    width: 100% !important;
  }
}
.cid-v7plhzPijr {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7plhzPijr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7plhzPijr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7plhzPijr .row {
  justify-content: center;
}
.cid-v7plhzPijr .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7plhzPijr .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7plhzPijr .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7plhzPijr .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7plhzPijr .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7plhzPijr .mbr-text_1,
.cid-v7plhzPijr .mbr-text_2,
.cid-v7plhzPijr .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7plhzPijr .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7plhzPijr .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7plhzPijr .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7plhzPijr .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7plhzPijr .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7plhzPijr .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7plhzPijr .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7plhzPijr .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7plhzPijr .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7plhzPijr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7plhzPijr .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7plhzPijr .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7plhzPijr .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pliDelr9 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7pliDelr9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pliDelr9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pliDelr9 .row {
  justify-content: center;
}
.cid-v7pliDelr9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pliDelr9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pliDelr9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pliDelr9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pliDelr9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pliDelr9 .mbr-text_1,
.cid-v7pliDelr9 .mbr-text_2,
.cid-v7pliDelr9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pliDelr9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pliDelr9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pliDelr9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pliDelr9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pliDelr9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pliDelr9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pliDelr9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pliDelr9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pliDelr9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pliDelr9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pliDelr9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pliDelr9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pliDelr9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2UUTSs2FJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UUTSs2FJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UUTSs2FJ .section-text {
  padding: 2rem 0;
}
.cid-s2UUTSs2FJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UUTSs2FJ .inner-container {
    width: 100% !important;
  }
}
.cid-s2UUTSQaiM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UUTSQaiM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UUTSQaiM .section-text {
  padding: 2rem 0;
}
.cid-s2UUTSQaiM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UUTSQaiM .inner-container {
    width: 100% !important;
  }
}
.cid-twivmrVmQM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twivmrVmQM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twivmrVmQM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twivmrVmQM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twivmrVmQM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twivmrVmQM .row > .row {
  display: block;
}
.cid-twivmrVmQM .mbr-gallery-item {
  width: 100%;
}
.cid-twivmrVmQM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twivmrVmQM .mbr-gallery-item > div {
  position: relative;
}
.cid-twivmrVmQM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twivmrVmQM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twivmrVmQM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twivmrVmQM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2UUTT2t0t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UUTT2t0t .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UUTT2t0t .section-text {
  padding: 2rem 0;
}
.cid-s2UUTT2t0t .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UUTT2t0t .inner-container {
    width: 100% !important;
  }
}
.cid-s2UUTTdW1C {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2UUTTdW1C .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2UUTTdW1C div.b {
  padding-top: 2rem;
}
.cid-s2UUTTdW1C H5 {
  color: #232323;
}
.cid-s2UVbNYhrX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UVbNYhrX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UVbNYhrX .section-text {
  padding: 2rem 0;
}
.cid-s2UVbNYhrX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UVbNYhrX .inner-container {
    width: 100% !important;
  }
}
.cid-v7pluwgX5v {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pluwgX5v .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pluwgX5v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pluwgX5v .row {
  justify-content: center;
}
.cid-v7pluwgX5v .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pluwgX5v .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pluwgX5v .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pluwgX5v .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pluwgX5v .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pluwgX5v .mbr-text_1,
.cid-v7pluwgX5v .mbr-text_2,
.cid-v7pluwgX5v .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pluwgX5v .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pluwgX5v .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pluwgX5v .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pluwgX5v .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pluwgX5v .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pluwgX5v .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pluwgX5v .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pluwgX5v .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pluwgX5v .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pluwgX5v .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pluwgX5v .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pluwgX5v .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pluwgX5v .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7plvoPuF0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7plvoPuF0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7plvoPuF0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7plvoPuF0 .row {
  justify-content: center;
}
.cid-v7plvoPuF0 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7plvoPuF0 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7plvoPuF0 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7plvoPuF0 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7plvoPuF0 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7plvoPuF0 .mbr-text_1,
.cid-v7plvoPuF0 .mbr-text_2,
.cid-v7plvoPuF0 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7plvoPuF0 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7plvoPuF0 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7plvoPuF0 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7plvoPuF0 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7plvoPuF0 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7plvoPuF0 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7plvoPuF0 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7plvoPuF0 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7plvoPuF0 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7plvoPuF0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7plvoPuF0 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7plvoPuF0 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7plvoPuF0 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2UVbOftAV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UVbOftAV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UVbOftAV .section-text {
  padding: 2rem 0;
}
.cid-s2UVbOftAV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UVbOftAV .inner-container {
    width: 100% !important;
  }
}
.cid-s2UVbODES3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UVbODES3 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UVbODES3 .section-text {
  padding: 2rem 0;
}
.cid-s2UVbODES3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UVbODES3 .inner-container {
    width: 100% !important;
  }
}
.cid-twfvQfVYNu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twfvQfVYNu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twfvQfVYNu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twfvQfVYNu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twfvQfVYNu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twfvQfVYNu .row > .row {
  display: block;
}
.cid-twfvQfVYNu .mbr-gallery-item {
  width: 100%;
}
.cid-twfvQfVYNu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twfvQfVYNu .mbr-gallery-item > div {
  position: relative;
}
.cid-twfvQfVYNu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twfvQfVYNu .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twfvQfVYNu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twfvQfVYNu .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2UVbPlfpT {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2UVbPlfpT .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2UVbPlfpT div.b {
  padding-top: 2rem;
}
.cid-s2UVbPlfpT H5 {
  color: #232323;
}
.cid-s2UVM09c49 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UVM09c49 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UVM09c49 .section-text {
  padding: 2rem 0;
}
.cid-s2UVM09c49 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UVM09c49 .inner-container {
    width: 100% !important;
  }
}
.cid-v7plIml35v {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7plIml35v .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7plIml35v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7plIml35v .row {
  justify-content: center;
}
.cid-v7plIml35v .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7plIml35v .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7plIml35v .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7plIml35v .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7plIml35v .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7plIml35v .mbr-text_1,
.cid-v7plIml35v .mbr-text_2,
.cid-v7plIml35v .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7plIml35v .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7plIml35v .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7plIml35v .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7plIml35v .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7plIml35v .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7plIml35v .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7plIml35v .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7plIml35v .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7plIml35v .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7plIml35v .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7plIml35v .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7plIml35v .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7plIml35v .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7plJfdXei {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7plJfdXei .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7plJfdXei .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7plJfdXei .row {
  justify-content: center;
}
.cid-v7plJfdXei .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7plJfdXei .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7plJfdXei .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7plJfdXei .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7plJfdXei .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7plJfdXei .mbr-text_1,
.cid-v7plJfdXei .mbr-text_2,
.cid-v7plJfdXei .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7plJfdXei .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7plJfdXei .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7plJfdXei .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7plJfdXei .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7plJfdXei .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7plJfdXei .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7plJfdXei .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7plJfdXei .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7plJfdXei .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7plJfdXei .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7plJfdXei .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7plJfdXei .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7plJfdXei .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2UVM0xLlX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UVM0xLlX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UVM0xLlX .section-text {
  padding: 2rem 0;
}
.cid-s2UVM0xLlX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UVM0xLlX .inner-container {
    width: 100% !important;
  }
}
.cid-s2UVM0SRR9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UVM0SRR9 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UVM0SRR9 .section-text {
  padding: 2rem 0;
}
.cid-s2UVM0SRR9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UVM0SRR9 .inner-container {
    width: 100% !important;
  }
}
.cid-svG7ChoUrL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-svG7ChoUrL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svG7ChoUrL .section-text {
  padding: 2rem 0;
}
.cid-svG7ChoUrL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svG7ChoUrL .inner-container {
    width: 100% !important;
  }
}
.cid-svG7ChoUrL .section-text DIV {
  text-align: center;
}
.cid-twfxyayWU5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twfxyayWU5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twfxyayWU5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twfxyayWU5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twfxyayWU5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twfxyayWU5 .row > .row {
  display: block;
}
.cid-twfxyayWU5 .mbr-gallery-item {
  width: 100%;
}
.cid-twfxyayWU5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twfxyayWU5 .mbr-gallery-item > div {
  position: relative;
}
.cid-twfxyayWU5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twfxyayWU5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twfxyayWU5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twfxyayWU5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2UVM1s5na {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2UVM1s5na .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2UVM1s5na div.b {
  padding-top: 2rem;
}
.cid-s2UVM1s5na H5 {
  color: #232323;
}
.cid-s2UVQu0Iql {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UVQu0Iql .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UVQu0Iql .section-text {
  padding: 2rem 0;
}
.cid-s2UVQu0Iql .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UVQu0Iql .inner-container {
    width: 100% !important;
  }
}
.cid-v7pm7xOVLQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pm7xOVLQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pm7xOVLQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pm7xOVLQ .row {
  justify-content: center;
}
.cid-v7pm7xOVLQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pm7xOVLQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pm7xOVLQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pm7xOVLQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pm7xOVLQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pm7xOVLQ .mbr-text_1,
.cid-v7pm7xOVLQ .mbr-text_2,
.cid-v7pm7xOVLQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pm7xOVLQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pm7xOVLQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pm7xOVLQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pm7xOVLQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pm7xOVLQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pm7xOVLQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pm7xOVLQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pm7xOVLQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pm7xOVLQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pm7xOVLQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pm7xOVLQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pm7xOVLQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pm7xOVLQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pm8z688J {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7pm8z688J .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pm8z688J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pm8z688J .row {
  justify-content: center;
}
.cid-v7pm8z688J .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pm8z688J .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pm8z688J .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pm8z688J .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pm8z688J .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pm8z688J .mbr-text_1,
.cid-v7pm8z688J .mbr-text_2,
.cid-v7pm8z688J .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pm8z688J .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pm8z688J .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pm8z688J .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pm8z688J .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pm8z688J .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pm8z688J .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pm8z688J .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pm8z688J .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pm8z688J .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pm8z688J .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pm8z688J .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pm8z688J .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pm8z688J .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2UVQuarZB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UVQuarZB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UVQuarZB .section-text {
  padding: 2rem 0;
}
.cid-s2UVQuarZB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UVQuarZB .inner-container {
    width: 100% !important;
  }
}
.cid-s2UVQuxbQQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UVQuxbQQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UVQuxbQQ .section-text {
  padding: 2rem 0;
}
.cid-s2UVQuxbQQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UVQuxbQQ .inner-container {
    width: 100% !important;
  }
}
.cid-twfyn2s7zT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twfyn2s7zT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twfyn2s7zT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twfyn2s7zT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twfyn2s7zT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twfyn2s7zT .row > .row {
  display: block;
}
.cid-twfyn2s7zT .mbr-gallery-item {
  width: 100%;
}
.cid-twfyn2s7zT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twfyn2s7zT .mbr-gallery-item > div {
  position: relative;
}
.cid-twfyn2s7zT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twfyn2s7zT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twfyn2s7zT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twfyn2s7zT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2UVQvhWbq {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2UVQvhWbq .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2UVQvhWbq div.b {
  padding-top: 2rem;
}
.cid-s2UVQvhWbq H5 {
  color: #232323;
}
.cid-s2UYHw3shr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UYHw3shr .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UYHw3shr .section-text {
  padding: 2rem 0;
}
.cid-s2UYHw3shr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UYHw3shr .inner-container {
    width: 100% !important;
  }
}
.cid-uHjZh3kSia {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-uHjZh3kSia .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjZh3kSia .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjZh3kSia .row {
  justify-content: center;
}
.cid-uHjZh3kSia .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjZh3kSia .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjZh3kSia .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjZh3kSia .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjZh3kSia .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjZh3kSia .mbr-text_1,
.cid-uHjZh3kSia .mbr-text_2,
.cid-uHjZh3kSia .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjZh3kSia .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZh3kSia .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjZh3kSia .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uHjZh3kSia .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uHjZh3kSia .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZh3kSia .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjZh3kSia .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjZh3kSia .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZh3kSia .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uHjZh3kSia .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjZh3kSia .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjZh3kSia .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjZh3kSia .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHjZ0O9oZu {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-uHjZ0O9oZu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjZ0O9oZu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjZ0O9oZu .row {
  justify-content: center;
}
.cid-uHjZ0O9oZu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjZ0O9oZu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjZ0O9oZu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjZ0O9oZu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjZ0O9oZu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjZ0O9oZu .mbr-text_1,
.cid-uHjZ0O9oZu .mbr-text_2,
.cid-uHjZ0O9oZu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjZ0O9oZu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZ0O9oZu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjZ0O9oZu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjZ0O9oZu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjZ0O9oZu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZ0O9oZu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjZ0O9oZu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjZ0O9oZu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjZ0O9oZu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjZ0O9oZu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjZ0O9oZu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjZ0O9oZu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjZ0O9oZu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2UYHwlkCm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UYHwlkCm .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2UYHwlkCm .section-text {
  padding: 2rem 0;
}
.cid-s2UYHwlkCm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2UYHwlkCm .inner-container {
    width: 100% !important;
  }
}
.cid-s2UYHx0SDG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2UYHx0SDG .mbr-section-subtitle {
  color: #767676;
}
.cid-s2UYHx0SDG .container-table {
  margin: 0 auto;
}
.cid-s2UYHx0SDG .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s2UYHx0SDG .dataTables_wrapper {
  display: block;
}
.cid-s2UYHx0SDG .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s2UYHx0SDG .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s2UYHx0SDG table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s2UYHx0SDG table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s2UYHx0SDG table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s2UYHx0SDG table td {
  border-top: 1px solid #232323;
}
.cid-s2UYHx0SDG table.table {
  background: #ecae15;
}
.cid-s2UYHx0SDG .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s2UYHx0SDG .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s2UYHx0SDG .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s2UYHx0SDG .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s2UYHx0SDG .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s2UYHx0SDG .dataTables_filter {
    text-align: center;
  }
  .cid-s2UYHx0SDG .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s2UYHx0SDG .mbr-section-title {
  color: #ff3366;
}
.cid-s2UYHx0SDG .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s2UYHx0SDG .body-item {
  text-align: center;
}
.cid-s2V13BJGH8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2V13BJGH8 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2V13BJGH8 .section-text {
  padding: 2rem 0;
}
.cid-s2V13BJGH8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2V13BJGH8 .inner-container {
    width: 100% !important;
  }
}
.cid-twfk1hxmIS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twfk1hxmIS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twfk1hxmIS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twfk1hxmIS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twfk1hxmIS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twfk1hxmIS .row > .row {
  display: block;
}
.cid-twfk1hxmIS .mbr-gallery-item {
  width: 100%;
}
.cid-twfk1hxmIS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twfk1hxmIS .mbr-gallery-item > div {
  position: relative;
}
.cid-twfk1hxmIS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twfk1hxmIS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twfk1hxmIS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twfk1hxmIS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2UYHyRfSV {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2UYHyRfSV .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2UYHyRfSV div.b {
  padding-top: 2rem;
}
.cid-s2UYHyRfSV H5 {
  color: #232323;
}
.cid-s2V5IkIxbx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2V5IkIxbx .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2V5IkIxbx .section-text {
  padding: 2rem 0;
}
.cid-s2V5IkIxbx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2V5IkIxbx .inner-container {
    width: 100% !important;
  }
}
.cid-v7mPYtuV4B {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mPYtuV4B .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mPYtuV4B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mPYtuV4B .row {
  justify-content: center;
}
.cid-v7mPYtuV4B .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mPYtuV4B .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mPYtuV4B .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mPYtuV4B .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mPYtuV4B .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mPYtuV4B .mbr-text_1,
.cid-v7mPYtuV4B .mbr-text_2,
.cid-v7mPYtuV4B .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mPYtuV4B .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mPYtuV4B .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mPYtuV4B .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mPYtuV4B .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mPYtuV4B .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mPYtuV4B .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mPYtuV4B .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mPYtuV4B .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mPYtuV4B .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mPYtuV4B .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mPYtuV4B .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mPYtuV4B .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mPYtuV4B .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mPZjtsMV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mPZjtsMV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mPZjtsMV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mPZjtsMV .row {
  justify-content: center;
}
.cid-v7mPZjtsMV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mPZjtsMV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mPZjtsMV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mPZjtsMV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mPZjtsMV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mPZjtsMV .mbr-text_1,
.cid-v7mPZjtsMV .mbr-text_2,
.cid-v7mPZjtsMV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mPZjtsMV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mPZjtsMV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mPZjtsMV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mPZjtsMV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mPZjtsMV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mPZjtsMV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mPZjtsMV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mPZjtsMV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mPZjtsMV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mPZjtsMV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mPZjtsMV .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mPZjtsMV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mPZjtsMV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2V5Il1d2f {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2V5Il1d2f .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2V5Il1d2f .section-text {
  padding: 2rem 0;
}
.cid-s2V5Il1d2f .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2V5Il1d2f .inner-container {
    width: 100% !important;
  }
}
.cid-svFZVjj2df {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-svFZXMxAYW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-svFZXMxAYW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svFZXMxAYW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svFZXMxAYW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svFZXMxAYW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svFZXMxAYW .row > .row {
  display: block;
}
.cid-svFZXMxAYW .mbr-gallery-item {
  width: 100%;
}
.cid-svFZXMxAYW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svFZXMxAYW .mbr-gallery-item > div {
  position: relative;
}
.cid-svFZXMxAYW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svFZXMxAYW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svFZXMxAYW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svFZXMxAYW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2V5ImzWu5 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2V5ImzWu5 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2V5ImzWu5 div.b {
  padding-top: 2rem;
}
.cid-s2V5ImzWu5 H5 {
  color: #232323;
}
.cid-s2V7nXGMGJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2V7nXGMGJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2V7nXGMGJ .section-text {
  padding: 2rem 0;
}
.cid-s2V7nXGMGJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2V7nXGMGJ .inner-container {
    width: 100% !important;
  }
}
.cid-v7mPN3eilV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mPN3eilV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mPN3eilV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mPN3eilV .row {
  justify-content: center;
}
.cid-v7mPN3eilV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mPN3eilV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mPN3eilV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mPN3eilV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mPN3eilV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mPN3eilV .mbr-text_1,
.cid-v7mPN3eilV .mbr-text_2,
.cid-v7mPN3eilV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mPN3eilV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mPN3eilV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mPN3eilV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mPN3eilV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mPN3eilV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mPN3eilV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mPN3eilV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mPN3eilV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mPN3eilV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mPN3eilV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mPN3eilV .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mPN3eilV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mPN3eilV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mPO0H28y {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mPO0H28y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mPO0H28y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mPO0H28y .row {
  justify-content: center;
}
.cid-v7mPO0H28y .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mPO0H28y .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mPO0H28y .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mPO0H28y .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mPO0H28y .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mPO0H28y .mbr-text_1,
.cid-v7mPO0H28y .mbr-text_2,
.cid-v7mPO0H28y .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mPO0H28y .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mPO0H28y .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mPO0H28y .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mPO0H28y .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mPO0H28y .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mPO0H28y .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mPO0H28y .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mPO0H28y .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mPO0H28y .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mPO0H28y .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mPO0H28y .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mPO0H28y .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mPO0H28y .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2V7nY6bRX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2V7nY6bRX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2V7nY6bRX .section-text {
  padding: 2rem 0;
}
.cid-s2V7nY6bRX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2V7nY6bRX .inner-container {
    width: 100% !important;
  }
}
.cid-s2V7y9XfLP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2V7y9XfLP .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2V7y9XfLP .section-text {
  padding: 2rem 0;
}
.cid-s2V7y9XfLP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2V7y9XfLP .inner-container {
    width: 100% !important;
  }
}
.cid-s2V7nZq80L {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2V7nZq80L .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2V7nZq80L div.b {
  padding-top: 2rem;
}
.cid-s2V7nZq80L H5 {
  color: #232323;
}
.cid-s2WebrtQNR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2WebrtQNR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2WebrtQNR .section-text {
  padding: 2rem 0;
}
.cid-s2WebrtQNR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2WebrtQNR .inner-container {
    width: 100% !important;
  }
}
.cid-v7mQgiAPVU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mQgiAPVU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mQgiAPVU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mQgiAPVU .row {
  justify-content: center;
}
.cid-v7mQgiAPVU .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mQgiAPVU .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mQgiAPVU .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mQgiAPVU .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mQgiAPVU .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mQgiAPVU .mbr-text_1,
.cid-v7mQgiAPVU .mbr-text_2,
.cid-v7mQgiAPVU .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mQgiAPVU .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQgiAPVU .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mQgiAPVU .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mQgiAPVU .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mQgiAPVU .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQgiAPVU .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mQgiAPVU .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mQgiAPVU .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQgiAPVU .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mQgiAPVU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mQgiAPVU .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mQgiAPVU .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mQgiAPVU .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mQh5TGYW {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mQh5TGYW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mQh5TGYW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mQh5TGYW .row {
  justify-content: center;
}
.cid-v7mQh5TGYW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mQh5TGYW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mQh5TGYW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mQh5TGYW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mQh5TGYW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mQh5TGYW .mbr-text_1,
.cid-v7mQh5TGYW .mbr-text_2,
.cid-v7mQh5TGYW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mQh5TGYW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQh5TGYW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mQh5TGYW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mQh5TGYW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mQh5TGYW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQh5TGYW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mQh5TGYW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mQh5TGYW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQh5TGYW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mQh5TGYW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mQh5TGYW .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mQh5TGYW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mQh5TGYW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2WebrHFdY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2WebrHFdY .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2WebrHFdY .section-text {
  padding: 2rem 0;
}
.cid-s2WebrHFdY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2WebrHFdY .inner-container {
    width: 100% !important;
  }
}
.cid-svG2hTgAs4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-svG2fbQLfk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-svG2fbQLfk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svG2fbQLfk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svG2fbQLfk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svG2fbQLfk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svG2fbQLfk .row > .row {
  display: block;
}
.cid-svG2fbQLfk .mbr-gallery-item {
  width: 100%;
}
.cid-svG2fbQLfk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svG2fbQLfk .mbr-gallery-item > div {
  position: relative;
}
.cid-svG2fbQLfk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svG2fbQLfk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svG2fbQLfk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svG2fbQLfk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2WebsSbO0 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2WebsSbO0 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2WebsSbO0 div.b {
  padding-top: 2rem;
}
.cid-s2WebsSbO0 H5 {
  color: #232323;
}
.cid-s2WefXolgn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2WefXolgn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2WefXolgn .section-text {
  padding: 2rem 0;
}
.cid-s2WefXolgn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2WefXolgn .inner-container {
    width: 100% !important;
  }
}
.cid-v7mQx4mBVu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mQx4mBVu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mQx4mBVu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mQx4mBVu .row {
  justify-content: center;
}
.cid-v7mQx4mBVu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mQx4mBVu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mQx4mBVu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mQx4mBVu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mQx4mBVu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mQx4mBVu .mbr-text_1,
.cid-v7mQx4mBVu .mbr-text_2,
.cid-v7mQx4mBVu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mQx4mBVu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQx4mBVu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mQx4mBVu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mQx4mBVu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mQx4mBVu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQx4mBVu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mQx4mBVu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mQx4mBVu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQx4mBVu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mQx4mBVu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mQx4mBVu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mQx4mBVu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mQx4mBVu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mQxYKV7k {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mQxYKV7k .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mQxYKV7k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mQxYKV7k .row {
  justify-content: center;
}
.cid-v7mQxYKV7k .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mQxYKV7k .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mQxYKV7k .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mQxYKV7k .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mQxYKV7k .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mQxYKV7k .mbr-text_1,
.cid-v7mQxYKV7k .mbr-text_2,
.cid-v7mQxYKV7k .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mQxYKV7k .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQxYKV7k .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mQxYKV7k .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mQxYKV7k .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mQxYKV7k .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQxYKV7k .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mQxYKV7k .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mQxYKV7k .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQxYKV7k .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mQxYKV7k .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mQxYKV7k .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mQxYKV7k .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mQxYKV7k .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2WefXBONM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2WefXBONM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2WefXBONM .section-text {
  padding: 2rem 0;
}
.cid-s2WefXBONM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2WefXBONM .inner-container {
    width: 100% !important;
  }
}
.cid-svG2EQdjjQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-svG2CPt0dy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-svG2CPt0dy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svG2CPt0dy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svG2CPt0dy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svG2CPt0dy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svG2CPt0dy .row > .row {
  display: block;
}
.cid-svG2CPt0dy .mbr-gallery-item {
  width: 100%;
}
.cid-svG2CPt0dy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svG2CPt0dy .mbr-gallery-item > div {
  position: relative;
}
.cid-svG2CPt0dy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svG2CPt0dy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svG2CPt0dy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svG2CPt0dy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2WefYXNil {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2WefYXNil .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2WefYXNil div.b {
  padding-top: 2rem;
}
.cid-s2WefYXNil H5 {
  color: #232323;
}
.cid-s2WejJMm9T {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2WejJMm9T .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2WejJMm9T .section-text {
  padding: 2rem 0;
}
.cid-s2WejJMm9T .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2WejJMm9T .inner-container {
    width: 100% !important;
  }
}
.cid-v7mQMVpBRp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mQMVpBRp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mQMVpBRp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mQMVpBRp .row {
  justify-content: center;
}
.cid-v7mQMVpBRp .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mQMVpBRp .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mQMVpBRp .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mQMVpBRp .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mQMVpBRp .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mQMVpBRp .mbr-text_1,
.cid-v7mQMVpBRp .mbr-text_2,
.cid-v7mQMVpBRp .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mQMVpBRp .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQMVpBRp .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mQMVpBRp .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mQMVpBRp .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mQMVpBRp .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQMVpBRp .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mQMVpBRp .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mQMVpBRp .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQMVpBRp .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mQMVpBRp .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mQMVpBRp .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mQMVpBRp .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mQMVpBRp .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mQSEUr51 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mQSEUr51 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mQSEUr51 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mQSEUr51 .row {
  justify-content: center;
}
.cid-v7mQSEUr51 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mQSEUr51 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mQSEUr51 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mQSEUr51 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mQSEUr51 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mQSEUr51 .mbr-text_1,
.cid-v7mQSEUr51 .mbr-text_2,
.cid-v7mQSEUr51 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mQSEUr51 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQSEUr51 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mQSEUr51 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mQSEUr51 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mQSEUr51 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQSEUr51 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mQSEUr51 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mQSEUr51 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mQSEUr51 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mQSEUr51 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mQSEUr51 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mQSEUr51 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mQSEUr51 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2WejKePO6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2WejKePO6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2WejKePO6 .section-text {
  padding: 2rem 0;
}
.cid-s2WejKePO6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2WejKePO6 .inner-container {
    width: 100% !important;
  }
}
.cid-svG3BXJLL8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-svG3AynUbT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-svG3AynUbT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svG3AynUbT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svG3AynUbT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svG3AynUbT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svG3AynUbT .row > .row {
  display: block;
}
.cid-svG3AynUbT .mbr-gallery-item {
  width: 100%;
}
.cid-svG3AynUbT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svG3AynUbT .mbr-gallery-item > div {
  position: relative;
}
.cid-svG3AynUbT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svG3AynUbT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svG3AynUbT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svG3AynUbT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2WejL4eS8 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2WejL4eS8 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2WejL4eS8 div.b {
  padding-top: 2rem;
}
.cid-s2WejL4eS8 H5 {
  color: #232323;
}
.cid-s2Wlvy22On {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2Wlvy22On .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2Wlvy22On .section-text {
  padding: 2rem 0;
}
.cid-s2Wlvy22On .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2Wlvy22On .inner-container {
    width: 100% !important;
  }
}
.cid-v7fd651oR1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7fd651oR1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fd651oR1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fd651oR1 .row {
  justify-content: center;
}
.cid-v7fd651oR1 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fd651oR1 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fd651oR1 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fd651oR1 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fd651oR1 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fd651oR1 .mbr-text_1,
.cid-v7fd651oR1 .mbr-text_2,
.cid-v7fd651oR1 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fd651oR1 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fd651oR1 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fd651oR1 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fd651oR1 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fd651oR1 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fd651oR1 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fd651oR1 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fd651oR1 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fd651oR1 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fd651oR1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fd651oR1 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fd651oR1 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fd651oR1 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7fd712xDr {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7fd712xDr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fd712xDr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fd712xDr .row {
  justify-content: center;
}
.cid-v7fd712xDr .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fd712xDr .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fd712xDr .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fd712xDr .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fd712xDr .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fd712xDr .mbr-text_1,
.cid-v7fd712xDr .mbr-text_2,
.cid-v7fd712xDr .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fd712xDr .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fd712xDr .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fd712xDr .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fd712xDr .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fd712xDr .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fd712xDr .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fd712xDr .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fd712xDr .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fd712xDr .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fd712xDr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fd712xDr .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fd712xDr .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fd712xDr .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2WlvyB1eq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2WlvyB1eq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2WlvyB1eq .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s2WlvyB1eq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2WlvyB1eq .inner-container {
    width: 100% !important;
  }
}
.cid-s2WlZYAYoB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2WlZYAYoB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2WlZYAYoB .section-text {
  padding: 2rem 0;
}
.cid-s2WlZYAYoB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2WlZYAYoB .inner-container {
    width: 100% !important;
  }
}
.cid-su6YDj0HEy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-su6YDj0HEy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-su6YDj0HEy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-su6YDj0HEy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-su6YDj0HEy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-su6YDj0HEy .row > .row {
  display: block;
}
.cid-su6YDj0HEy .mbr-gallery-item {
  width: 100%;
}
.cid-su6YDj0HEy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-su6YDj0HEy .mbr-gallery-item > div {
  position: relative;
}
.cid-su6YDj0HEy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-su6YDj0HEy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-su6YDj0HEy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-su6YDj0HEy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2WlvC3cpq {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2WlvC3cpq .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2WlvC3cpq div.b {
  padding-top: 2rem;
}
.cid-s2WlvC3cpq H5 {
  color: #232323;
}
.cid-s2X3U8fscI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2X3U8fscI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2X3U8fscI .section-text {
  padding: 2rem 0;
}
.cid-s2X3U8fscI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2X3U8fscI .inner-container {
    width: 100% !important;
  }
}
.cid-v7fdvkiZve {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7fdvkiZve .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fdvkiZve .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fdvkiZve .row {
  justify-content: center;
}
.cid-v7fdvkiZve .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fdvkiZve .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fdvkiZve .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fdvkiZve .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fdvkiZve .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fdvkiZve .mbr-text_1,
.cid-v7fdvkiZve .mbr-text_2,
.cid-v7fdvkiZve .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fdvkiZve .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fdvkiZve .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fdvkiZve .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fdvkiZve .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fdvkiZve .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fdvkiZve .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fdvkiZve .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fdvkiZve .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fdvkiZve .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fdvkiZve .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fdvkiZve .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fdvkiZve .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fdvkiZve .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7fdwfQbKh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7fdwfQbKh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fdwfQbKh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fdwfQbKh .row {
  justify-content: center;
}
.cid-v7fdwfQbKh .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fdwfQbKh .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fdwfQbKh .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fdwfQbKh .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fdwfQbKh .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fdwfQbKh .mbr-text_1,
.cid-v7fdwfQbKh .mbr-text_2,
.cid-v7fdwfQbKh .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fdwfQbKh .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fdwfQbKh .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fdwfQbKh .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fdwfQbKh .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fdwfQbKh .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fdwfQbKh .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fdwfQbKh .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fdwfQbKh .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fdwfQbKh .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fdwfQbKh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fdwfQbKh .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fdwfQbKh .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fdwfQbKh .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s2X3U8zE41 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2X3U8zE41 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2X3U8zE41 .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s2X3U8zE41 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2X3U8zE41 .inner-container {
    width: 100% !important;
  }
}
.cid-s2X3U8ZXA9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s2X3U8ZXA9 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s2X3U8ZXA9 .section-text {
  padding: 2rem 0;
}
.cid-s2X3U8ZXA9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s2X3U8ZXA9 .inner-container {
    width: 100% !important;
  }
}
.cid-su708mpqkB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-su708mpqkB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-su708mpqkB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-su708mpqkB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-su708mpqkB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-su708mpqkB .row > .row {
  display: block;
}
.cid-su708mpqkB .mbr-gallery-item {
  width: 100%;
}
.cid-su708mpqkB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-su708mpqkB .mbr-gallery-item > div {
  position: relative;
}
.cid-su708mpqkB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-su708mpqkB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-su708mpqkB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-su708mpqkB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s2X3U9Bt7M {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s2X3U9Bt7M .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s2X3U9Bt7M div.b {
  padding-top: 2rem;
}
.cid-s2X3U9Bt7M H5 {
  color: #232323;
}
.cid-s36VwpQWSJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s36VwpQWSJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s36VwpQWSJ .section-text {
  padding: 2rem 0;
}
.cid-s36VwpQWSJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s36VwpQWSJ .inner-container {
    width: 100% !important;
  }
}
.cid-v7mRjwrEvj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mRjwrEvj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mRjwrEvj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mRjwrEvj .row {
  justify-content: center;
}
.cid-v7mRjwrEvj .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mRjwrEvj .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mRjwrEvj .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mRjwrEvj .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mRjwrEvj .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mRjwrEvj .mbr-text_1,
.cid-v7mRjwrEvj .mbr-text_2,
.cid-v7mRjwrEvj .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mRjwrEvj .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mRjwrEvj .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mRjwrEvj .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mRjwrEvj .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mRjwrEvj .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mRjwrEvj .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mRjwrEvj .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mRjwrEvj .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mRjwrEvj .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mRjwrEvj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mRjwrEvj .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mRjwrEvj .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mRjwrEvj .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mRkoynXj {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mRkoynXj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mRkoynXj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mRkoynXj .row {
  justify-content: center;
}
.cid-v7mRkoynXj .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mRkoynXj .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mRkoynXj .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mRkoynXj .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mRkoynXj .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mRkoynXj .mbr-text_1,
.cid-v7mRkoynXj .mbr-text_2,
.cid-v7mRkoynXj .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mRkoynXj .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mRkoynXj .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mRkoynXj .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mRkoynXj .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mRkoynXj .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mRkoynXj .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mRkoynXj .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mRkoynXj .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mRkoynXj .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mRkoynXj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mRkoynXj .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mRkoynXj .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mRkoynXj .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s36Vwq4Eco {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s36Vwq4Eco .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s36Vwq4Eco .section-text {
  padding: 2rem 0;
}
.cid-s36Vwq4Eco .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s36Vwq4Eco .inner-container {
    width: 100% !important;
  }
}
.cid-svG4kx4Ics {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-svG4hYGmBa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-svG4hYGmBa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svG4hYGmBa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svG4hYGmBa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svG4hYGmBa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svG4hYGmBa .row > .row {
  display: block;
}
.cid-svG4hYGmBa .mbr-gallery-item {
  width: 100%;
}
.cid-svG4hYGmBa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svG4hYGmBa .mbr-gallery-item > div {
  position: relative;
}
.cid-svG4hYGmBa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svG4hYGmBa .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svG4hYGmBa .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svG4hYGmBa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s36VwqXLPA {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s36VwqXLPA .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s36VwqXLPA div.b {
  padding-top: 2rem;
}
.cid-s36VwqXLPA H5 {
  color: #232323;
}
.cid-s37xswbbXC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37xswbbXC .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37xswbbXC .section-text {
  padding: 2rem 0;
}
.cid-s37xswbbXC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37xswbbXC .inner-container {
    width: 100% !important;
  }
}
.cid-svFINAooae {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFINAooae .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFINAooae .section-text {
  padding: 2rem 0;
}
.cid-svFINAooae .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFINAooae .inner-container {
    width: 100% !important;
  }
}
.cid-s37zgvJa6v {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37zgvJa6v .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37zgvJa6v .section-text {
  padding: 2rem 0;
}
.cid-s37zgvJa6v .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37zgvJa6v .inner-container {
    width: 100% !important;
  }
}
.cid-s37xswJgG4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37xswJgG4 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37xswJgG4 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37xswJgG4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37xswJgG4 .inner-container {
    width: 100% !important;
  }
}
.cid-sgxjHUeaFF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgxj5WysKn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgxj5WysKn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgxj5WysKn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgxj5WysKn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgxj5WysKn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgxj5WysKn .row > .row {
  display: block;
}
.cid-sgxj5WysKn .mbr-gallery-item {
  width: 100%;
}
.cid-sgxj5WysKn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgxj5WysKn .mbr-gallery-item > div {
  position: relative;
}
.cid-sgxj5WysKn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgxj5WysKn .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgxj5WysKn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgxj5WysKn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37xsE4q6g {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37xsE4q6g .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37xsE4q6g div.b {
  padding-top: 2rem;
}
.cid-s37zG4FAUd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37zG4FAUd .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37zG4FAUd .section-text {
  padding: 2rem 0;
}
.cid-s37zG4FAUd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37zG4FAUd .inner-container {
    width: 100% !important;
  }
}
.cid-svFIRkarA6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFIRkarA6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFIRkarA6 .section-text {
  padding: 2rem 0;
}
.cid-svFIRkarA6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFIRkarA6 .inner-container {
    width: 100% !important;
  }
}
.cid-s37zG50Nbi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37zG50Nbi .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37zG50Nbi .section-text {
  padding: 2rem 0;
}
.cid-s37zG50Nbi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37zG50Nbi .inner-container {
    width: 100% !important;
  }
}
.cid-s37zG5ukyV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37zG5ukyV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37zG5ukyV .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37zG5ukyV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37zG5ukyV .inner-container {
    width: 100% !important;
  }
}
.cid-sgFuJ5dzfn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgFuN5sthy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgFuN5sthy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgFuN5sthy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgFuN5sthy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgFuN5sthy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgFuN5sthy .row > .row {
  display: block;
}
.cid-sgFuN5sthy .mbr-gallery-item {
  width: 100%;
}
.cid-sgFuN5sthy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgFuN5sthy .mbr-gallery-item > div {
  position: relative;
}
.cid-sgFuN5sthy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgFuN5sthy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgFuN5sthy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgFuN5sthy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37zG6zTVj {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37zG6zTVj .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37zG6zTVj div.b {
  padding-top: 2rem;
}
.cid-s37Ayofrcc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37Ayofrcc .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37Ayofrcc .section-text {
  padding: 2rem 0;
}
.cid-s37Ayofrcc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37Ayofrcc .inner-container {
    width: 100% !important;
  }
}
.cid-svFIUOKGcT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFIUOKGcT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFIUOKGcT .section-text {
  padding: 2rem 0;
}
.cid-svFIUOKGcT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFIUOKGcT .inner-container {
    width: 100% !important;
  }
}
.cid-s37AyoxBvt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37AyoxBvt .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37AyoxBvt .section-text {
  padding: 2rem 0;
}
.cid-s37AyoxBvt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37AyoxBvt .inner-container {
    width: 100% !important;
  }
}
.cid-s37AyoYitg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37AyoYitg .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37AyoYitg .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37AyoYitg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37AyoYitg .inner-container {
    width: 100% !important;
  }
}
.cid-sgFwuaEFJ6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgFwvySmhS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgFwvySmhS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgFwvySmhS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgFwvySmhS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgFwvySmhS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgFwvySmhS .row > .row {
  display: block;
}
.cid-sgFwvySmhS .mbr-gallery-item {
  width: 100%;
}
.cid-sgFwvySmhS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgFwvySmhS .mbr-gallery-item > div {
  position: relative;
}
.cid-sgFwvySmhS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgFwvySmhS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgFwvySmhS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgFwvySmhS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-shb97cjKYh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-shb98xyJna {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shb98xyJna .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shb98xyJna .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shb98xyJna .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shb98xyJna .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shb98xyJna .row > .row {
  display: block;
}
.cid-shb98xyJna .mbr-gallery-item {
  width: 100%;
}
.cid-shb98xyJna .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shb98xyJna .mbr-gallery-item > div {
  position: relative;
}
.cid-shb98xyJna .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shb98xyJna .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shb98xyJna .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shb98xyJna .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37Ayq2ZgM {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37Ayq2ZgM .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37Ayq2ZgM div.b {
  padding-top: 2rem;
}
.cid-s37DRhmWd2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37DRhmWd2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37DRhmWd2 .section-text {
  padding: 2rem 0;
}
.cid-s37DRhmWd2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37DRhmWd2 .inner-container {
    width: 100% !important;
  }
}
.cid-svFIYxQ1il {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFIYxQ1il .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFIYxQ1il .section-text {
  padding: 2rem 0;
}
.cid-svFIYxQ1il .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFIYxQ1il .inner-container {
    width: 100% !important;
  }
}
.cid-s37DRhFJEG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37DRhFJEG .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37DRhFJEG .section-text {
  padding: 2rem 0;
}
.cid-s37DRhFJEG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37DRhFJEG .inner-container {
    width: 100% !important;
  }
}
.cid-s37DRi8FVn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37DRi8FVn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37DRi8FVn .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37DRi8FVn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37DRi8FVn .inner-container {
    width: 100% !important;
  }
}
.cid-sgxqw2TPMR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgxqygwArU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgxqygwArU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgxqygwArU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgxqygwArU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgxqygwArU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgxqygwArU .row > .row {
  display: block;
}
.cid-sgxqygwArU .mbr-gallery-item {
  width: 100%;
}
.cid-sgxqygwArU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgxqygwArU .mbr-gallery-item > div {
  position: relative;
}
.cid-sgxqygwArU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgxqygwArU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgxqygwArU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgxqygwArU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37DRjdAJU {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37DRjdAJU .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37DRjdAJU div.b {
  padding-top: 2rem;
}
.cid-s37Ez4CjR1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37Ez4CjR1 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37Ez4CjR1 .section-text {
  padding: 2rem 0;
}
.cid-s37Ez4CjR1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37Ez4CjR1 .inner-container {
    width: 100% !important;
  }
}
.cid-svFJ222HYz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFJ222HYz .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFJ222HYz .section-text {
  padding: 2rem 0;
}
.cid-svFJ222HYz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFJ222HYz .inner-container {
    width: 100% !important;
  }
}
.cid-s37Ez4SptB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37Ez4SptB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37Ez4SptB .section-text {
  padding: 2rem 0;
}
.cid-s37Ez4SptB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37Ez4SptB .inner-container {
    width: 100% !important;
  }
}
.cid-s37Ez5gsLT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37Ez5gsLT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37Ez5gsLT .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37Ez5gsLT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37Ez5gsLT .inner-container {
    width: 100% !important;
  }
}
.cid-sgzGtQ2J5X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgzGv5zt81 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgzGv5zt81 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgzGv5zt81 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgzGv5zt81 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgzGv5zt81 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgzGv5zt81 .row > .row {
  display: block;
}
.cid-sgzGv5zt81 .mbr-gallery-item {
  width: 100%;
}
.cid-sgzGv5zt81 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgzGv5zt81 .mbr-gallery-item > div {
  position: relative;
}
.cid-sgzGv5zt81 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgzGv5zt81 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgzGv5zt81 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgzGv5zt81 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37Ez5UGXn {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37Ez5UGXn .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37Ez5UGXn div.b {
  padding-top: 2rem;
}
.cid-s37FvHy2jU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37FvHy2jU .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37FvHy2jU .section-text {
  padding: 2rem 0;
}
.cid-s37FvHy2jU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37FvHy2jU .inner-container {
    width: 100% !important;
  }
}
.cid-svFJ7gWYc2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFJ7gWYc2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFJ7gWYc2 .section-text {
  padding: 2rem 0;
}
.cid-svFJ7gWYc2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFJ7gWYc2 .inner-container {
    width: 100% !important;
  }
}
.cid-s37FvHObRA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37FvHObRA .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37FvHObRA .section-text {
  padding: 2rem 0;
}
.cid-s37FvHObRA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37FvHObRA .inner-container {
    width: 100% !important;
  }
}
.cid-s37FvIe607 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37FvIe607 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37FvIe607 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37FvIe607 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37FvIe607 .inner-container {
    width: 100% !important;
  }
}
.cid-sh5uBseAcq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh5uCinyhK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh5uCinyhK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh5uCinyhK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh5uCinyhK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh5uCinyhK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh5uCinyhK .row > .row {
  display: block;
}
.cid-sh5uCinyhK .mbr-gallery-item {
  width: 100%;
}
.cid-sh5uCinyhK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh5uCinyhK .mbr-gallery-item > div {
  position: relative;
}
.cid-sh5uCinyhK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh5uCinyhK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh5uCinyhK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh5uCinyhK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37FvIWm0q {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37FvIWm0q .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37FvIWm0q div.b {
  padding-top: 2rem;
}
.cid-s37H2y9Sm0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37H2y9Sm0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37H2y9Sm0 .section-text {
  padding: 2rem 0;
}
.cid-s37H2y9Sm0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37H2y9Sm0 .inner-container {
    width: 100% !important;
  }
}
.cid-svFL5woQXZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFL5woQXZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFL5woQXZ .section-text {
  padding: 2rem 0;
}
.cid-svFL5woQXZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFL5woQXZ .inner-container {
    width: 100% !important;
  }
}
.cid-s37H2yw9fo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37H2yw9fo .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37H2yw9fo .section-text {
  padding: 2rem 0;
}
.cid-s37H2yw9fo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37H2yw9fo .inner-container {
    width: 100% !important;
  }
}
.cid-s37H2z1r3K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37H2z1r3K .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37H2z1r3K .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37H2z1r3K .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37H2z1r3K .inner-container {
    width: 100% !important;
  }
}
.cid-sgIORTaEW2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgIOP3kBHV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgIOP3kBHV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgIOP3kBHV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgIOP3kBHV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgIOP3kBHV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgIOP3kBHV .row > .row {
  display: block;
}
.cid-sgIOP3kBHV .mbr-gallery-item {
  width: 100%;
}
.cid-sgIOP3kBHV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgIOP3kBHV .mbr-gallery-item > div {
  position: relative;
}
.cid-sgIOP3kBHV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgIOP3kBHV .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgIOP3kBHV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgIOP3kBHV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sgY7Qpezxh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgIQZjCFzK {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgIQZjCFzK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgIQZjCFzK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgIQZjCFzK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgIQZjCFzK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgIQZjCFzK .row > .row {
  display: block;
}
.cid-sgIQZjCFzK .mbr-gallery-item {
  width: 100%;
}
.cid-sgIQZjCFzK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgIQZjCFzK .mbr-gallery-item > div {
  position: relative;
}
.cid-sgIQZjCFzK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgIQZjCFzK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgIQZjCFzK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgIQZjCFzK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37H2Cexlb {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37H2Cexlb .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37H2Cexlb div.b {
  padding-top: 2rem;
}
.cid-s37Jvs1Nhw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37Jvs1Nhw .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37Jvs1Nhw .section-text {
  padding: 2rem 0;
}
.cid-s37Jvs1Nhw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37Jvs1Nhw .inner-container {
    width: 100% !important;
  }
}
.cid-svFLdIMMvS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFLdIMMvS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFLdIMMvS .section-text {
  padding: 2rem 0;
}
.cid-svFLdIMMvS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFLdIMMvS .inner-container {
    width: 100% !important;
  }
}
.cid-s37JvsJszE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37JvsJszE .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37JvsJszE .section-text {
  padding: 2rem 0;
}
.cid-s37JvsJszE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37JvsJszE .inner-container {
    width: 100% !important;
  }
}
.cid-s37JvtaLpx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37JvtaLpx .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37JvtaLpx .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37JvtaLpx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37JvtaLpx .inner-container {
    width: 100% !important;
  }
}
.cid-sgUuAsIy2k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgUuCQB7mb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgUuCQB7mb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgUuCQB7mb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgUuCQB7mb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgUuCQB7mb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgUuCQB7mb .row > .row {
  display: block;
}
.cid-sgUuCQB7mb .mbr-gallery-item {
  width: 100%;
}
.cid-sgUuCQB7mb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgUuCQB7mb .mbr-gallery-item > div {
  position: relative;
}
.cid-sgUuCQB7mb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgUuCQB7mb .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgUuCQB7mb .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgUuCQB7mb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sgUuGarAxU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgUuH8jg7S {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgUuH8jg7S .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgUuH8jg7S .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgUuH8jg7S .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgUuH8jg7S .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgUuH8jg7S .row > .row {
  display: block;
}
.cid-sgUuH8jg7S .mbr-gallery-item {
  width: 100%;
}
.cid-sgUuH8jg7S .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgUuH8jg7S .mbr-gallery-item > div {
  position: relative;
}
.cid-sgUuH8jg7S .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgUuH8jg7S .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgUuH8jg7S .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgUuH8jg7S .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sgUx8wv3oB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgUxaAJaXl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgUxaAJaXl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgUxaAJaXl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgUxaAJaXl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgUxaAJaXl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgUxaAJaXl .row > .row {
  display: block;
}
.cid-sgUxaAJaXl .mbr-gallery-item {
  width: 100%;
}
.cid-sgUxaAJaXl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgUxaAJaXl .mbr-gallery-item > div {
  position: relative;
}
.cid-sgUxaAJaXl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgUxaAJaXl .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgUxaAJaXl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgUxaAJaXl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37JvtPpYh {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37JvtPpYh .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37JvtPpYh div.b {
  padding-top: 2rem;
}
.cid-s37L5mUIK9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37L5mUIK9 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37L5mUIK9 .section-text {
  padding: 2rem 0;
}
.cid-s37L5mUIK9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37L5mUIK9 .inner-container {
    width: 100% !important;
  }
}
.cid-svFKRj07N1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFKRj07N1 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFKRj07N1 .section-text {
  padding: 2rem 0;
}
.cid-svFKRj07N1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFKRj07N1 .inner-container {
    width: 100% !important;
  }
}
.cid-s37L5nh01u {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37L5nh01u .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37L5nh01u .section-text {
  padding: 2rem 0;
}
.cid-s37L5nh01u .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37L5nh01u .inner-container {
    width: 100% !important;
  }
}
.cid-s37L5o70dz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37L5o70dz .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37L5o70dz .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37L5o70dz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37L5o70dz .inner-container {
    width: 100% !important;
  }
}
.cid-sh5vu4uRXc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh5vuVDKWE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh5vuVDKWE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh5vuVDKWE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh5vuVDKWE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh5vuVDKWE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh5vuVDKWE .row > .row {
  display: block;
}
.cid-sh5vuVDKWE .mbr-gallery-item {
  width: 100%;
}
.cid-sh5vuVDKWE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh5vuVDKWE .mbr-gallery-item > div {
  position: relative;
}
.cid-sh5vuVDKWE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh5vuVDKWE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh5vuVDKWE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh5vuVDKWE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37L5q299d {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37L5q299d .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37L5q299d div.b {
  padding-top: 2rem;
}
.cid-s37M1WQlQ2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37M1WQlQ2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37M1WQlQ2 .section-text {
  padding: 2rem 0;
}
.cid-s37M1WQlQ2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37M1WQlQ2 .inner-container {
    width: 100% !important;
  }
}
.cid-svFKURfX2p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFKURfX2p .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFKURfX2p .section-text {
  padding: 2rem 0;
}
.cid-svFKURfX2p .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFKURfX2p .inner-container {
    width: 100% !important;
  }
}
.cid-s37M1Xb3tO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37M1Xb3tO .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37M1Xb3tO .section-text {
  padding: 2rem 0;
}
.cid-s37M1Xb3tO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37M1Xb3tO .inner-container {
    width: 100% !important;
  }
}
.cid-s37M1Y14lL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37M1Y14lL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37M1Y14lL .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37M1Y14lL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37M1Y14lL .inner-container {
    width: 100% !important;
  }
}
.cid-sgY6Y9CkYy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgY6ZwJfX9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgY6ZwJfX9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgY6ZwJfX9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgY6ZwJfX9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgY6ZwJfX9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgY6ZwJfX9 .row > .row {
  display: block;
}
.cid-sgY6ZwJfX9 .mbr-gallery-item {
  width: 100%;
}
.cid-sgY6ZwJfX9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgY6ZwJfX9 .mbr-gallery-item > div {
  position: relative;
}
.cid-sgY6ZwJfX9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgY6ZwJfX9 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgY6ZwJfX9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgY6ZwJfX9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37M1Z0Gds {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37M1Z0Gds .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37M1Z0Gds div.b {
  padding-top: 2rem;
}
.cid-s37MyjXkiW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37MyjXkiW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37MyjXkiW .section-text {
  padding: 2rem 0;
}
.cid-s37MyjXkiW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37MyjXkiW .inner-container {
    width: 100% !important;
  }
}
.cid-svFLlycbzS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFLlycbzS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFLlycbzS .section-text {
  padding: 2rem 0;
}
.cid-svFLlycbzS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFLlycbzS .inner-container {
    width: 100% !important;
  }
}
.cid-s37MykhVjK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37MykhVjK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37MykhVjK .section-text {
  padding: 2rem 0;
}
.cid-s37MykhVjK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37MykhVjK .inner-container {
    width: 100% !important;
  }
}
.cid-s37MykG0X4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37MykG0X4 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37MykG0X4 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37MykG0X4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37MykG0X4 .inner-container {
    width: 100% !important;
  }
}
.cid-sgY8XC2CcW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgY8YP6hjz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgY8YP6hjz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgY8YP6hjz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgY8YP6hjz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgY8YP6hjz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgY8YP6hjz .row > .row {
  display: block;
}
.cid-sgY8YP6hjz .mbr-gallery-item {
  width: 100%;
}
.cid-sgY8YP6hjz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgY8YP6hjz .mbr-gallery-item > div {
  position: relative;
}
.cid-sgY8YP6hjz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgY8YP6hjz .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgY8YP6hjz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgY8YP6hjz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37Mynexpm {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37Mynexpm .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37Mynexpm div.b {
  padding-top: 2rem;
}
.cid-s37OaEZCs0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37OaEZCs0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37OaEZCs0 .section-text {
  padding: 2rem 0;
}
.cid-s37OaEZCs0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37OaEZCs0 .inner-container {
    width: 100% !important;
  }
}
.cid-svFLqyyptt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFLqyyptt .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFLqyyptt .section-text {
  padding: 2rem 0;
}
.cid-svFLqyyptt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFLqyyptt .inner-container {
    width: 100% !important;
  }
}
.cid-s37OaFfekF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37OaFfekF .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37OaFfekF .section-text {
  padding: 2rem 0;
}
.cid-s37OaFfekF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37OaFfekF .inner-container {
    width: 100% !important;
  }
}
.cid-s37OaFCREQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37OaFCREQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37OaFCREQ .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37OaFCREQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37OaFCREQ .inner-container {
    width: 100% !important;
  }
}
.cid-sgYa1u2WjR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgYa2qe4xJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgYa2qe4xJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgYa2qe4xJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgYa2qe4xJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgYa2qe4xJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgYa2qe4xJ .row > .row {
  display: block;
}
.cid-sgYa2qe4xJ .mbr-gallery-item {
  width: 100%;
}
.cid-sgYa2qe4xJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgYa2qe4xJ .mbr-gallery-item > div {
  position: relative;
}
.cid-sgYa2qe4xJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgYa2qe4xJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgYa2qe4xJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgYa2qe4xJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37OaGNLHH {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37OaGNLHH .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37OaGNLHH div.b {
  padding-top: 2rem;
}
.cid-s37ONRsjrW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37ONRsjrW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37ONRsjrW .section-text {
  padding: 2rem 0;
}
.cid-s37ONRsjrW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37ONRsjrW .inner-container {
    width: 100% !important;
  }
}
.cid-v799XzvCFi {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v799XzvCFi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v799XzvCFi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v799XzvCFi .row {
  justify-content: center;
}
.cid-v799XzvCFi .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v799XzvCFi .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v799XzvCFi .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v799XzvCFi .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v799XzvCFi .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v799XzvCFi .mbr-text_1,
.cid-v799XzvCFi .mbr-text_2,
.cid-v799XzvCFi .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v799XzvCFi .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v799XzvCFi .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v799XzvCFi .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v799XzvCFi .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v799XzvCFi .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v799XzvCFi .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v799XzvCFi .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v799XzvCFi .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v799XzvCFi .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v799XzvCFi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v799XzvCFi .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v799XzvCFi .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v799XzvCFi .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v799YUlOZc {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v799YUlOZc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v799YUlOZc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v799YUlOZc .row {
  justify-content: center;
}
.cid-v799YUlOZc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v799YUlOZc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v799YUlOZc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v799YUlOZc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v799YUlOZc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v799YUlOZc .mbr-text_1,
.cid-v799YUlOZc .mbr-text_2,
.cid-v799YUlOZc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v799YUlOZc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v799YUlOZc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v799YUlOZc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v799YUlOZc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v799YUlOZc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v799YUlOZc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v799YUlOZc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v799YUlOZc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v799YUlOZc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v799YUlOZc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v799YUlOZc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v799YUlOZc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v799YUlOZc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s37ONROBdE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37ONROBdE .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37ONROBdE .section-text {
  padding: 2rem 0;
}
.cid-s37ONROBdE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37ONROBdE .inner-container {
    width: 100% !important;
  }
}
.cid-s37ONWg0v9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37ONWg0v9 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37ONWg0v9 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37ONWg0v9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37ONWg0v9 .inner-container {
    width: 100% !important;
  }
}
.cid-sgYfFzE1g9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgYfHi2dFG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgYfHi2dFG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgYfHi2dFG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgYfHi2dFG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgYfHi2dFG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgYfHi2dFG .row > .row {
  display: block;
}
.cid-sgYfHi2dFG .mbr-gallery-item {
  width: 100%;
}
.cid-sgYfHi2dFG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgYfHi2dFG .mbr-gallery-item > div {
  position: relative;
}
.cid-sgYfHi2dFG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgYfHi2dFG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgYfHi2dFG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgYfHi2dFG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sgYfIwHKDd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgYfJOrdvU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgYfJOrdvU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgYfJOrdvU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgYfJOrdvU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgYfJOrdvU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgYfJOrdvU .row > .row {
  display: block;
}
.cid-sgYfJOrdvU .mbr-gallery-item {
  width: 100%;
}
.cid-sgYfJOrdvU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgYfJOrdvU .mbr-gallery-item > div {
  position: relative;
}
.cid-sgYfJOrdvU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgYfJOrdvU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgYfJOrdvU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgYfJOrdvU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37ONX40SM {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37ONX40SM .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37ONX40SM div.b {
  padding-top: 2rem;
}
.cid-s37Psfqtd6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37Psfqtd6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37Psfqtd6 .section-text {
  padding: 2rem 0;
}
.cid-s37Psfqtd6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37Psfqtd6 .inner-container {
    width: 100% !important;
  }
}
.cid-v79dYafyIJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79dYafyIJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79dYafyIJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79dYafyIJ .row {
  justify-content: center;
}
.cid-v79dYafyIJ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79dYafyIJ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79dYafyIJ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79dYafyIJ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79dYafyIJ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79dYafyIJ .mbr-text_1,
.cid-v79dYafyIJ .mbr-text_2,
.cid-v79dYafyIJ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79dYafyIJ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79dYafyIJ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79dYafyIJ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79dYafyIJ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79dYafyIJ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79dYafyIJ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79dYafyIJ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79dYafyIJ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79dYafyIJ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79dYafyIJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79dYafyIJ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79dYafyIJ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79dYafyIJ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79dZhqJzb {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79dZhqJzb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79dZhqJzb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79dZhqJzb .row {
  justify-content: center;
}
.cid-v79dZhqJzb .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79dZhqJzb .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79dZhqJzb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79dZhqJzb .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79dZhqJzb .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79dZhqJzb .mbr-text_1,
.cid-v79dZhqJzb .mbr-text_2,
.cid-v79dZhqJzb .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79dZhqJzb .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79dZhqJzb .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79dZhqJzb .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79dZhqJzb .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79dZhqJzb .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79dZhqJzb .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79dZhqJzb .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79dZhqJzb .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79dZhqJzb .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79dZhqJzb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79dZhqJzb .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79dZhqJzb .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79dZhqJzb .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s37PsfDIHI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37PsfDIHI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37PsfDIHI .section-text {
  padding: 2rem 0;
}
.cid-s37PsfDIHI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37PsfDIHI .inner-container {
    width: 100% !important;
  }
}
.cid-s37Psg3bR8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37Psg3bR8 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37Psg3bR8 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37Psg3bR8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37Psg3bR8 .inner-container {
    width: 100% !important;
  }
}
.cid-sh5xnPRqUl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh5xoKe3EK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh5xoKe3EK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh5xoKe3EK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh5xoKe3EK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh5xoKe3EK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh5xoKe3EK .row > .row {
  display: block;
}
.cid-sh5xoKe3EK .mbr-gallery-item {
  width: 100%;
}
.cid-sh5xoKe3EK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh5xoKe3EK .mbr-gallery-item > div {
  position: relative;
}
.cid-sh5xoKe3EK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh5xoKe3EK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh5xoKe3EK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh5xoKe3EK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37PshsQnY {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37PshsQnY .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37PshsQnY div.b {
  padding-top: 2rem;
}
.cid-s37QBNkd4a {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37QBNkd4a .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37QBNkd4a .section-text {
  padding: 2rem 0;
}
.cid-s37QBNkd4a .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37QBNkd4a .inner-container {
    width: 100% !important;
  }
}
.cid-v79f2XeezF {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79f2XeezF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79f2XeezF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79f2XeezF .row {
  justify-content: center;
}
.cid-v79f2XeezF .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79f2XeezF .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79f2XeezF .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79f2XeezF .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79f2XeezF .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79f2XeezF .mbr-text_1,
.cid-v79f2XeezF .mbr-text_2,
.cid-v79f2XeezF .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79f2XeezF .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79f2XeezF .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79f2XeezF .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79f2XeezF .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79f2XeezF .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79f2XeezF .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79f2XeezF .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79f2XeezF .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79f2XeezF .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79f2XeezF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79f2XeezF .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79f2XeezF .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79f2XeezF .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79f463sHD {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79f463sHD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79f463sHD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79f463sHD .row {
  justify-content: center;
}
.cid-v79f463sHD .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79f463sHD .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79f463sHD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79f463sHD .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79f463sHD .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79f463sHD .mbr-text_1,
.cid-v79f463sHD .mbr-text_2,
.cid-v79f463sHD .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79f463sHD .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79f463sHD .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79f463sHD .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79f463sHD .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79f463sHD .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79f463sHD .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79f463sHD .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79f463sHD .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79f463sHD .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79f463sHD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79f463sHD .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79f463sHD .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79f463sHD .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s37QBNA7zH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37QBNA7zH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37QBNA7zH .section-text {
  padding: 2rem 0;
}
.cid-s37QBNA7zH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37QBNA7zH .inner-container {
    width: 100% !important;
  }
}
.cid-s37QBNWFLk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37QBNWFLk .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37QBNWFLk .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37QBNWFLk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37QBNWFLk .inner-container {
    width: 100% !important;
  }
}
.cid-sh5yvsxGhi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh5ywox7fG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh5ywox7fG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh5ywox7fG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh5ywox7fG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh5ywox7fG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh5ywox7fG .row > .row {
  display: block;
}
.cid-sh5ywox7fG .mbr-gallery-item {
  width: 100%;
}
.cid-sh5ywox7fG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh5ywox7fG .mbr-gallery-item > div {
  position: relative;
}
.cid-sh5ywox7fG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh5ywox7fG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh5ywox7fG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh5ywox7fG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37QBPjgSS {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37QBPjgSS .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37QBPjgSS div.b {
  padding-top: 2rem;
}
.cid-s37RESKdWx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37RESKdWx .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37RESKdWx .section-text {
  padding: 2rem 0;
}
.cid-s37RESKdWx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37RESKdWx .inner-container {
    width: 100% !important;
  }
}
.cid-v79fUUgK04 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79fUUgK04 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79fUUgK04 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79fUUgK04 .row {
  justify-content: center;
}
.cid-v79fUUgK04 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79fUUgK04 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79fUUgK04 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79fUUgK04 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79fUUgK04 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79fUUgK04 .mbr-text_1,
.cid-v79fUUgK04 .mbr-text_2,
.cid-v79fUUgK04 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79fUUgK04 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79fUUgK04 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79fUUgK04 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79fUUgK04 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79fUUgK04 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79fUUgK04 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79fUUgK04 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79fUUgK04 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79fUUgK04 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79fUUgK04 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79fUUgK04 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79fUUgK04 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79fUUgK04 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79fVVPS7O {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79fVVPS7O .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79fVVPS7O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79fVVPS7O .row {
  justify-content: center;
}
.cid-v79fVVPS7O .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79fVVPS7O .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79fVVPS7O .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79fVVPS7O .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79fVVPS7O .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79fVVPS7O .mbr-text_1,
.cid-v79fVVPS7O .mbr-text_2,
.cid-v79fVVPS7O .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79fVVPS7O .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79fVVPS7O .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79fVVPS7O .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79fVVPS7O .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79fVVPS7O .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79fVVPS7O .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79fVVPS7O .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79fVVPS7O .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79fVVPS7O .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79fVVPS7O .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79fVVPS7O .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79fVVPS7O .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79fVVPS7O .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s37RET5IHM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37RET5IHM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37RET5IHM .section-text {
  padding: 2rem 0;
}
.cid-s37RET5IHM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37RET5IHM .inner-container {
    width: 100% !important;
  }
}
.cid-s37RETwKkK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37RETwKkK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37RETwKkK .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37RETwKkK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37RETwKkK .inner-container {
    width: 100% !important;
  }
}
.cid-sh5A8I4tv3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh5A9A4yHC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh5A9A4yHC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh5A9A4yHC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh5A9A4yHC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh5A9A4yHC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh5A9A4yHC .row > .row {
  display: block;
}
.cid-sh5A9A4yHC .mbr-gallery-item {
  width: 100%;
}
.cid-sh5A9A4yHC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh5A9A4yHC .mbr-gallery-item > div {
  position: relative;
}
.cid-sh5A9A4yHC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh5A9A4yHC .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh5A9A4yHC .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh5A9A4yHC .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37REUOyxP {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37REUOyxP .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37REUOyxP div.b {
  padding-top: 2rem;
}
.cid-s37Sqeejc0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37Sqeejc0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37Sqeejc0 .section-text {
  padding: 2rem 0;
}
.cid-s37Sqeejc0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37Sqeejc0 .inner-container {
    width: 100% !important;
  }
}
.cid-v79kPqQfAK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79kPqQfAK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79kPqQfAK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79kPqQfAK .row {
  justify-content: center;
}
.cid-v79kPqQfAK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79kPqQfAK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79kPqQfAK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79kPqQfAK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79kPqQfAK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79kPqQfAK .mbr-text_1,
.cid-v79kPqQfAK .mbr-text_2,
.cid-v79kPqQfAK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79kPqQfAK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79kPqQfAK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79kPqQfAK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79kPqQfAK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79kPqQfAK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79kPqQfAK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79kPqQfAK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79kPqQfAK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79kPqQfAK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79kPqQfAK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79kPqQfAK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79kPqQfAK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79kPqQfAK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79kQlMq7H {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79kQlMq7H .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79kQlMq7H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79kQlMq7H .row {
  justify-content: center;
}
.cid-v79kQlMq7H .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79kQlMq7H .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79kQlMq7H .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79kQlMq7H .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79kQlMq7H .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79kQlMq7H .mbr-text_1,
.cid-v79kQlMq7H .mbr-text_2,
.cid-v79kQlMq7H .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79kQlMq7H .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79kQlMq7H .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79kQlMq7H .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79kQlMq7H .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79kQlMq7H .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79kQlMq7H .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79kQlMq7H .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79kQlMq7H .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79kQlMq7H .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79kQlMq7H .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79kQlMq7H .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79kQlMq7H .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79kQlMq7H .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s37SqezWjh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37SqezWjh .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37SqezWjh .section-text {
  padding: 2rem 0;
}
.cid-s37SqezWjh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37SqezWjh .inner-container {
    width: 100% !important;
  }
}
.cid-s37Sqf3cv4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37Sqf3cv4 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37Sqf3cv4 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37Sqf3cv4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37Sqf3cv4 .inner-container {
    width: 100% !important;
  }
}
.cid-sh5AP9s7c8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh5AQ0Z9Lo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh5AQ0Z9Lo .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh5AQ0Z9Lo .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh5AQ0Z9Lo .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh5AQ0Z9Lo .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh5AQ0Z9Lo .row > .row {
  display: block;
}
.cid-sh5AQ0Z9Lo .mbr-gallery-item {
  width: 100%;
}
.cid-sh5AQ0Z9Lo .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh5AQ0Z9Lo .mbr-gallery-item > div {
  position: relative;
}
.cid-sh5AQ0Z9Lo .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh5AQ0Z9Lo .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh5AQ0Z9Lo .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh5AQ0Z9Lo .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37SqfHEQA {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37SqfHEQA .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37SqfHEQA div.b {
  padding-top: 2rem;
}
.cid-s37TdTfXpe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37TdTfXpe .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37TdTfXpe .section-text {
  padding: 2rem 0;
}
.cid-s37TdTfXpe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37TdTfXpe .inner-container {
    width: 100% !important;
  }
}
.cid-v79opIZMah {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79opIZMah .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79opIZMah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79opIZMah .row {
  justify-content: center;
}
.cid-v79opIZMah .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79opIZMah .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79opIZMah .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79opIZMah .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79opIZMah .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79opIZMah .mbr-text_1,
.cid-v79opIZMah .mbr-text_2,
.cid-v79opIZMah .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79opIZMah .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79opIZMah .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79opIZMah .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79opIZMah .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79opIZMah .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79opIZMah .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79opIZMah .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79opIZMah .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79opIZMah .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79opIZMah .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79opIZMah .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79opIZMah .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79opIZMah .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79oqB8vAx {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79oqB8vAx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79oqB8vAx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79oqB8vAx .row {
  justify-content: center;
}
.cid-v79oqB8vAx .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79oqB8vAx .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79oqB8vAx .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79oqB8vAx .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79oqB8vAx .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79oqB8vAx .mbr-text_1,
.cid-v79oqB8vAx .mbr-text_2,
.cid-v79oqB8vAx .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79oqB8vAx .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79oqB8vAx .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79oqB8vAx .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79oqB8vAx .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79oqB8vAx .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79oqB8vAx .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79oqB8vAx .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79oqB8vAx .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79oqB8vAx .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79oqB8vAx .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79oqB8vAx .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79oqB8vAx .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79oqB8vAx .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s37TdTrx4B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37TdTrx4B .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37TdTrx4B .section-text {
  padding: 2rem 0;
}
.cid-s37TdTrx4B .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37TdTrx4B .inner-container {
    width: 100% !important;
  }
}
.cid-s37TdUdIss {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37TdUdIss .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37TdUdIss .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37TdUdIss .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37TdUdIss .inner-container {
    width: 100% !important;
  }
}
.cid-shC46OZPz0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-shC48VymqE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shC48VymqE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shC48VymqE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shC48VymqE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shC48VymqE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shC48VymqE .row > .row {
  display: block;
}
.cid-shC48VymqE .mbr-gallery-item {
  width: 100%;
}
.cid-shC48VymqE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shC48VymqE .mbr-gallery-item > div {
  position: relative;
}
.cid-shC48VymqE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shC48VymqE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shC48VymqE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shC48VymqE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-shC4asyMQT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-shC4cPX2M5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shC4cPX2M5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shC4cPX2M5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shC4cPX2M5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shC4cPX2M5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shC4cPX2M5 .row > .row {
  display: block;
}
.cid-shC4cPX2M5 .mbr-gallery-item {
  width: 100%;
}
.cid-shC4cPX2M5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shC4cPX2M5 .mbr-gallery-item > div {
  position: relative;
}
.cid-shC4cPX2M5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shC4cPX2M5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shC4cPX2M5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shC4cPX2M5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37TdUXWiu {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37TdUXWiu .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37TdUXWiu div.b {
  padding-top: 2rem;
}
.cid-s37U28aH4N {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37U28aH4N .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37U28aH4N .section-text {
  padding: 2rem 0;
}
.cid-s37U28aH4N .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37U28aH4N .inner-container {
    width: 100% !important;
  }
}
.cid-v79pguOBKt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79pguOBKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79pguOBKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79pguOBKt .row {
  justify-content: center;
}
.cid-v79pguOBKt .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79pguOBKt .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79pguOBKt .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79pguOBKt .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79pguOBKt .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79pguOBKt .mbr-text_1,
.cid-v79pguOBKt .mbr-text_2,
.cid-v79pguOBKt .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79pguOBKt .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79pguOBKt .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79pguOBKt .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79pguOBKt .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79pguOBKt .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79pguOBKt .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79pguOBKt .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79pguOBKt .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79pguOBKt .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79pguOBKt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79pguOBKt .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79pguOBKt .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79pguOBKt .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79phwoc2S {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79phwoc2S .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79phwoc2S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79phwoc2S .row {
  justify-content: center;
}
.cid-v79phwoc2S .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79phwoc2S .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79phwoc2S .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79phwoc2S .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79phwoc2S .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79phwoc2S .mbr-text_1,
.cid-v79phwoc2S .mbr-text_2,
.cid-v79phwoc2S .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79phwoc2S .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79phwoc2S .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79phwoc2S .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79phwoc2S .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79phwoc2S .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79phwoc2S .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79phwoc2S .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79phwoc2S .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79phwoc2S .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79phwoc2S .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79phwoc2S .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79phwoc2S .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79phwoc2S .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s37U28uKSF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37U28uKSF .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37U28uKSF .section-text {
  padding: 2rem 0;
}
.cid-s37U28uKSF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37U28uKSF .inner-container {
    width: 100% !important;
  }
}
.cid-s37U28WfiX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37U28WfiX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37U28WfiX .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37U28WfiX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37U28WfiX .inner-container {
    width: 100% !important;
  }
}
.cid-s37U298Y7c {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37U298Y7c .item {
  padding-bottom: 2rem;
}
.cid-s37U298Y7c .item-wrapper {
  height: 100%;
}
.cid-s37U298Y7c .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s37U298Y7c .carousel-control,
.cid-s37U298Y7c .close {
  background: #1b1b1b;
}
.cid-s37U298Y7c .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s37U298Y7c .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s37U298Y7c .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s37U298Y7c .close::before {
  content: '\e91a';
}
.cid-s37U298Y7c .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s37U298Y7c .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s37U298Y7c .carousel-inner > .active {
  display: block;
}
.cid-s37U298Y7c .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s37U298Y7c .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s37U298Y7c .carousel-control .icon-next,
.cid-s37U298Y7c .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s37U298Y7c .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s37U298Y7c .carousel-control,
  .cid-s37U298Y7c .carousel-indicators,
  .cid-s37U298Y7c .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s37U298Y7c .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s37U298Y7c .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s37U298Y7c .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s37U298Y7c .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s37U298Y7c .carousel-indicators {
    display: none;
  }
}
.cid-s37U298Y7c .carousel-indicators .active,
.cid-s37U298Y7c .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s37U298Y7c .carousel-indicators .active {
  background: #fff;
}
.cid-s37U298Y7c .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s37U298Y7c .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s37U298Y7c .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s37U298Y7c .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s37U298Y7c .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s37U298Y7c .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s37U298Y7c .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s37U298Y7c .carousel {
  width: 100%;
}
.cid-s37U298Y7c .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s37U298Y7c .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s37U298Y7c .modal.fade .modal-dialog,
.cid-s37U298Y7c .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s37U298Y7c .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s37U298Y7c a {
  display: block;
}
.cid-s37U298Y7c a.img {
  pointer-events: none;
}
.cid-s37U2aXjYo {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37U2aXjYo .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37U2aXjYo div.b {
  padding-top: 2rem;
}
.cid-s37Zeu2Q9C {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37Zeu2Q9C .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37Zeu2Q9C .section-text {
  padding: 2rem 0;
}
.cid-s37Zeu2Q9C .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37Zeu2Q9C .inner-container {
    width: 100% !important;
  }
}
.cid-v7a8mX9C8G {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7a8mX9C8G .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7a8mX9C8G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7a8mX9C8G .row {
  justify-content: center;
}
.cid-v7a8mX9C8G .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7a8mX9C8G .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7a8mX9C8G .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7a8mX9C8G .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7a8mX9C8G .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7a8mX9C8G .mbr-text_1,
.cid-v7a8mX9C8G .mbr-text_2,
.cid-v7a8mX9C8G .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7a8mX9C8G .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a8mX9C8G .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7a8mX9C8G .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a8mX9C8G .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a8mX9C8G .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a8mX9C8G .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7a8mX9C8G .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7a8mX9C8G .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a8mX9C8G .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a8mX9C8G .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7a8mX9C8G .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7a8mX9C8G .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7a8mX9C8G .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7a8nRJfre {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7a8nRJfre .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7a8nRJfre .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7a8nRJfre .row {
  justify-content: center;
}
.cid-v7a8nRJfre .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7a8nRJfre .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7a8nRJfre .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7a8nRJfre .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7a8nRJfre .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7a8nRJfre .mbr-text_1,
.cid-v7a8nRJfre .mbr-text_2,
.cid-v7a8nRJfre .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7a8nRJfre .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a8nRJfre .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7a8nRJfre .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a8nRJfre .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a8nRJfre .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a8nRJfre .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7a8nRJfre .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7a8nRJfre .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a8nRJfre .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a8nRJfre .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7a8nRJfre .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7a8nRJfre .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7a8nRJfre .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s37ZeuoRDj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37ZeuoRDj .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37ZeuoRDj .section-text {
  padding: 2rem 0;
}
.cid-s37ZeuoRDj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37ZeuoRDj .inner-container {
    width: 100% !important;
  }
}
.cid-s37ZevdEtV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s37ZevdEtV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s37ZevdEtV .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s37ZevdEtV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s37ZevdEtV .inner-container {
    width: 100% !important;
  }
}
.cid-shC6apDFrY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-shC6bm39Wx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shC6bm39Wx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shC6bm39Wx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shC6bm39Wx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shC6bm39Wx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shC6bm39Wx .row > .row {
  display: block;
}
.cid-shC6bm39Wx .mbr-gallery-item {
  width: 100%;
}
.cid-shC6bm39Wx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shC6bm39Wx .mbr-gallery-item > div {
  position: relative;
}
.cid-shC6bm39Wx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shC6bm39Wx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shC6bm39Wx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shC6bm39Wx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-shCNIi4Scm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-shCNJoOOhJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shCNJoOOhJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shCNJoOOhJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shCNJoOOhJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shCNJoOOhJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shCNJoOOhJ .row > .row {
  display: block;
}
.cid-shCNJoOOhJ .mbr-gallery-item {
  width: 100%;
}
.cid-shCNJoOOhJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shCNJoOOhJ .mbr-gallery-item > div {
  position: relative;
}
.cid-shCNJoOOhJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shCNJoOOhJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shCNJoOOhJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shCNJoOOhJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-shC6c8TRBG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-shC6ejKTCK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shC6ejKTCK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shC6ejKTCK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shC6ejKTCK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shC6ejKTCK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shC6ejKTCK .row > .row {
  display: block;
}
.cid-shC6ejKTCK .mbr-gallery-item {
  width: 100%;
}
.cid-shC6ejKTCK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shC6ejKTCK .mbr-gallery-item > div {
  position: relative;
}
.cid-shC6ejKTCK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shC6ejKTCK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shC6ejKTCK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shC6ejKTCK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-shC6cPplKI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-shC6fjBXym {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shC6fjBXym .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shC6fjBXym .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shC6fjBXym .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shC6fjBXym .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shC6fjBXym .row > .row {
  display: block;
}
.cid-shC6fjBXym .mbr-gallery-item {
  width: 100%;
}
.cid-shC6fjBXym .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shC6fjBXym .mbr-gallery-item > div {
  position: relative;
}
.cid-shC6fjBXym .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shC6fjBXym .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shC6fjBXym .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shC6fjBXym .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s37ZeC8DW8 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s37ZeC8DW8 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s37ZeC8DW8 div.b {
  padding-top: 2rem;
}
.cid-s38iR6LloF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38iR6LloF .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38iR6LloF .section-text {
  padding: 2rem 0;
}
.cid-s38iR6LloF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38iR6LloF .inner-container {
    width: 100% !important;
  }
}
.cid-v72gbt33w2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v72gbt33w2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72gbt33w2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72gbt33w2 .row {
  justify-content: center;
}
.cid-v72gbt33w2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72gbt33w2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72gbt33w2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72gbt33w2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72gbt33w2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72gbt33w2 .mbr-text_1,
.cid-v72gbt33w2 .mbr-text_2,
.cid-v72gbt33w2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72gbt33w2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72gbt33w2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72gbt33w2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72gbt33w2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72gbt33w2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72gbt33w2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72gbt33w2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72gbt33w2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72gbt33w2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72gbt33w2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72gbt33w2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72gbt33w2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72gbt33w2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72gcwjGTQ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v72gcwjGTQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72gcwjGTQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72gcwjGTQ .row {
  justify-content: center;
}
.cid-v72gcwjGTQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72gcwjGTQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72gcwjGTQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72gcwjGTQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72gcwjGTQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72gcwjGTQ .mbr-text_1,
.cid-v72gcwjGTQ .mbr-text_2,
.cid-v72gcwjGTQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72gcwjGTQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72gcwjGTQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72gcwjGTQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72gcwjGTQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72gcwjGTQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72gcwjGTQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72gcwjGTQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72gcwjGTQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72gcwjGTQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72gcwjGTQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72gcwjGTQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72gcwjGTQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72gcwjGTQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s38iR71S4z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38iR71S4z .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38iR71S4z .section-text {
  padding: 2rem 0;
}
.cid-s38iR71S4z .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38iR71S4z .inner-container {
    width: 100% !important;
  }
}
.cid-s38iR7Kx0q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38iR7Kx0q .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38iR7Kx0q .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s38iR7Kx0q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38iR7Kx0q .inner-container {
    width: 100% !important;
  }
}
.cid-svFJqprFiQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-svFJsMWhQx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFJsMWhQx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svFJsMWhQx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svFJsMWhQx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svFJsMWhQx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svFJsMWhQx .row > .row {
  display: block;
}
.cid-svFJsMWhQx .mbr-gallery-item {
  width: 100%;
}
.cid-svFJsMWhQx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svFJsMWhQx .mbr-gallery-item > div {
  position: relative;
}
.cid-svFJsMWhQx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svFJsMWhQx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svFJsMWhQx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svFJsMWhQx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s38iR8CTZt {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s38iR8CTZt .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s38iR8CTZt div.b {
  padding-top: 2rem;
}
.cid-s38nNRAReF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38nNRAReF .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38nNRAReF .section-text {
  padding: 2rem 0;
}
.cid-s38nNRAReF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38nNRAReF .inner-container {
    width: 100% !important;
  }
}
.cid-v79fBnOOKj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79fBnOOKj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79fBnOOKj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79fBnOOKj .row {
  justify-content: center;
}
.cid-v79fBnOOKj .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79fBnOOKj .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79fBnOOKj .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79fBnOOKj .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79fBnOOKj .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79fBnOOKj .mbr-text_1,
.cid-v79fBnOOKj .mbr-text_2,
.cid-v79fBnOOKj .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79fBnOOKj .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79fBnOOKj .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79fBnOOKj .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79fBnOOKj .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79fBnOOKj .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79fBnOOKj .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79fBnOOKj .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79fBnOOKj .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79fBnOOKj .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79fBnOOKj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79fBnOOKj .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79fBnOOKj .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79fBnOOKj .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79fCkHBGz {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79fCkHBGz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79fCkHBGz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79fCkHBGz .row {
  justify-content: center;
}
.cid-v79fCkHBGz .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79fCkHBGz .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79fCkHBGz .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79fCkHBGz .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79fCkHBGz .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79fCkHBGz .mbr-text_1,
.cid-v79fCkHBGz .mbr-text_2,
.cid-v79fCkHBGz .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79fCkHBGz .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79fCkHBGz .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79fCkHBGz .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79fCkHBGz .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79fCkHBGz .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79fCkHBGz .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79fCkHBGz .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79fCkHBGz .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79fCkHBGz .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79fCkHBGz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79fCkHBGz .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79fCkHBGz .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79fCkHBGz .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s38nNRUEk8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38nNRUEk8 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38nNRUEk8 .section-text {
  padding: 2rem 0;
}
.cid-s38nNRUEk8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38nNRUEk8 .inner-container {
    width: 100% !important;
  }
}
.cid-s38nNStf3c {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38nNStf3c .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38nNStf3c .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s38nNStf3c .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38nNStf3c .inner-container {
    width: 100% !important;
  }
}
.cid-sh5zB86LCo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh5zC1hFuU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh5zC1hFuU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh5zC1hFuU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh5zC1hFuU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh5zC1hFuU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh5zC1hFuU .row > .row {
  display: block;
}
.cid-sh5zC1hFuU .mbr-gallery-item {
  width: 100%;
}
.cid-sh5zC1hFuU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh5zC1hFuU .mbr-gallery-item > div {
  position: relative;
}
.cid-sh5zC1hFuU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh5zC1hFuU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh5zC1hFuU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh5zC1hFuU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s38nNT1Epq {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s38nNT1Epq .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s38nNT1Epq div.b {
  padding-top: 2rem;
}
.cid-s38pAZZoo2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38pAZZoo2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38pAZZoo2 .section-text {
  padding: 2rem 0;
}
.cid-s38pAZZoo2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38pAZZoo2 .inner-container {
    width: 100% !important;
  }
}
.cid-v79n384vNm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79n384vNm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79n384vNm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79n384vNm .row {
  justify-content: center;
}
.cid-v79n384vNm .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79n384vNm .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79n384vNm .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79n384vNm .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79n384vNm .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79n384vNm .mbr-text_1,
.cid-v79n384vNm .mbr-text_2,
.cid-v79n384vNm .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79n384vNm .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79n384vNm .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79n384vNm .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79n384vNm .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79n384vNm .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79n384vNm .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79n384vNm .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79n384vNm .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79n384vNm .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79n384vNm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79n384vNm .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79n384vNm .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79n384vNm .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79n3XZTJY {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79n3XZTJY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79n3XZTJY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79n3XZTJY .row {
  justify-content: center;
}
.cid-v79n3XZTJY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79n3XZTJY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79n3XZTJY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79n3XZTJY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79n3XZTJY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79n3XZTJY .mbr-text_1,
.cid-v79n3XZTJY .mbr-text_2,
.cid-v79n3XZTJY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79n3XZTJY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79n3XZTJY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79n3XZTJY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79n3XZTJY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79n3XZTJY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79n3XZTJY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79n3XZTJY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79n3XZTJY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79n3XZTJY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79n3XZTJY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79n3XZTJY .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79n3XZTJY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79n3XZTJY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s38pB0onr0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38pB0onr0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38pB0onr0 .section-text {
  padding: 2rem 0;
}
.cid-s38pB0onr0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38pB0onr0 .inner-container {
    width: 100% !important;
  }
}
.cid-s38pB0NKpi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38pB0NKpi .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38pB0NKpi .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s38pB0NKpi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38pB0NKpi .inner-container {
    width: 100% !important;
  }
}
.cid-sh5EKJ5lZs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh5ELvPexU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh5ELvPexU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh5ELvPexU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh5ELvPexU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh5ELvPexU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh5ELvPexU .row > .row {
  display: block;
}
.cid-sh5ELvPexU .mbr-gallery-item {
  width: 100%;
}
.cid-sh5ELvPexU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh5ELvPexU .mbr-gallery-item > div {
  position: relative;
}
.cid-sh5ELvPexU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh5ELvPexU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh5ELvPexU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh5ELvPexU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s38pB1swAN {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s38pB1swAN .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s38pB1swAN div.b {
  padding-top: 2rem;
}
.cid-s38rJb4YFX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38rJb4YFX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38rJb4YFX .section-text {
  padding: 2rem 0;
}
.cid-s38rJb4YFX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38rJb4YFX .inner-container {
    width: 100% !important;
  }
}
.cid-v79nqqohSR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79nqqohSR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79nqqohSR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79nqqohSR .row {
  justify-content: center;
}
.cid-v79nqqohSR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79nqqohSR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79nqqohSR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79nqqohSR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79nqqohSR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79nqqohSR .mbr-text_1,
.cid-v79nqqohSR .mbr-text_2,
.cid-v79nqqohSR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79nqqohSR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79nqqohSR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79nqqohSR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79nqqohSR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79nqqohSR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79nqqohSR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79nqqohSR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79nqqohSR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79nqqohSR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79nqqohSR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79nqqohSR .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79nqqohSR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79nqqohSR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79nrlqdgm {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79nrlqdgm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79nrlqdgm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79nrlqdgm .row {
  justify-content: center;
}
.cid-v79nrlqdgm .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79nrlqdgm .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79nrlqdgm .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79nrlqdgm .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79nrlqdgm .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79nrlqdgm .mbr-text_1,
.cid-v79nrlqdgm .mbr-text_2,
.cid-v79nrlqdgm .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79nrlqdgm .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79nrlqdgm .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79nrlqdgm .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79nrlqdgm .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79nrlqdgm .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79nrlqdgm .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79nrlqdgm .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79nrlqdgm .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79nrlqdgm .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79nrlqdgm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79nrlqdgm .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79nrlqdgm .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79nrlqdgm .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s38rJbpGjr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38rJbpGjr .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38rJbpGjr .section-text {
  padding: 2rem 0;
}
.cid-s38rJbpGjr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38rJbpGjr .inner-container {
    width: 100% !important;
  }
}
.cid-s38rJbNVVv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38rJbNVVv .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38rJbNVVv .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s38rJbNVVv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38rJbNVVv .inner-container {
    width: 100% !important;
  }
}
.cid-sh5GUqEFWU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh5GLsvYpi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh5GLsvYpi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh5GLsvYpi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh5GLsvYpi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh5GLsvYpi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh5GLsvYpi .row > .row {
  display: block;
}
.cid-sh5GLsvYpi .mbr-gallery-item {
  width: 100%;
}
.cid-sh5GLsvYpi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh5GLsvYpi .mbr-gallery-item > div {
  position: relative;
}
.cid-sh5GLsvYpi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh5GLsvYpi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh5GLsvYpi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh5GLsvYpi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s38rJcSNgG {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s38rJcSNgG .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s38rJcSNgG div.b {
  padding-top: 2rem;
}
.cid-s38rQEi4DW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38rQEi4DW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38rQEi4DW .section-text {
  padding: 2rem 0;
}
.cid-s38rQEi4DW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38rQEi4DW .inner-container {
    width: 100% !important;
  }
}
.cid-v79qr8TgXg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79qr8TgXg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79qr8TgXg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79qr8TgXg .row {
  justify-content: center;
}
.cid-v79qr8TgXg .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79qr8TgXg .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79qr8TgXg .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79qr8TgXg .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79qr8TgXg .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79qr8TgXg .mbr-text_1,
.cid-v79qr8TgXg .mbr-text_2,
.cid-v79qr8TgXg .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79qr8TgXg .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79qr8TgXg .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79qr8TgXg .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79qr8TgXg .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79qr8TgXg .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79qr8TgXg .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79qr8TgXg .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79qr8TgXg .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79qr8TgXg .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79qr8TgXg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79qr8TgXg .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79qr8TgXg .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79qr8TgXg .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79qrZwNN7 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79qrZwNN7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79qrZwNN7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79qrZwNN7 .row {
  justify-content: center;
}
.cid-v79qrZwNN7 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79qrZwNN7 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79qrZwNN7 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79qrZwNN7 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79qrZwNN7 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79qrZwNN7 .mbr-text_1,
.cid-v79qrZwNN7 .mbr-text_2,
.cid-v79qrZwNN7 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79qrZwNN7 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79qrZwNN7 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79qrZwNN7 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79qrZwNN7 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79qrZwNN7 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79qrZwNN7 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79qrZwNN7 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79qrZwNN7 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79qrZwNN7 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79qrZwNN7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79qrZwNN7 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79qrZwNN7 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79qrZwNN7 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s38rQEwHmZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38rQEwHmZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38rQEwHmZ .section-text {
  padding: 2rem 0;
}
.cid-s38rQEwHmZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38rQEwHmZ .inner-container {
    width: 100% !important;
  }
}
.cid-s38rQFar80 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38rQFar80 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38rQFar80 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s38rQFar80 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38rQFar80 .inner-container {
    width: 100% !important;
  }
}
.cid-shQs80PdYi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-shQs91pC7P {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shQs91pC7P .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shQs91pC7P .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shQs91pC7P .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shQs91pC7P .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shQs91pC7P .row > .row {
  display: block;
}
.cid-shQs91pC7P .mbr-gallery-item {
  width: 100%;
}
.cid-shQs91pC7P .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shQs91pC7P .mbr-gallery-item > div {
  position: relative;
}
.cid-shQs91pC7P .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shQs91pC7P .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shQs91pC7P .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shQs91pC7P .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s38rQFSlQ7 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s38rQFSlQ7 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s38rQFSlQ7 div.b {
  padding-top: 2rem;
}
.cid-s38tVyhCWR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38tVyhCWR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38tVyhCWR .section-text {
  padding: 2rem 0;
}
.cid-s38tVyhCWR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38tVyhCWR .inner-container {
    width: 100% !important;
  }
}
.cid-v79ru8t64g {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79ru8t64g .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79ru8t64g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79ru8t64g .row {
  justify-content: center;
}
.cid-v79ru8t64g .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79ru8t64g .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79ru8t64g .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79ru8t64g .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79ru8t64g .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79ru8t64g .mbr-text_1,
.cid-v79ru8t64g .mbr-text_2,
.cid-v79ru8t64g .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79ru8t64g .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79ru8t64g .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79ru8t64g .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79ru8t64g .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79ru8t64g .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79ru8t64g .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79ru8t64g .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79ru8t64g .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79ru8t64g .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79ru8t64g .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79ru8t64g .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79ru8t64g .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79ru8t64g .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79rv9eIn3 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79rv9eIn3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79rv9eIn3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79rv9eIn3 .row {
  justify-content: center;
}
.cid-v79rv9eIn3 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79rv9eIn3 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79rv9eIn3 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79rv9eIn3 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79rv9eIn3 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79rv9eIn3 .mbr-text_1,
.cid-v79rv9eIn3 .mbr-text_2,
.cid-v79rv9eIn3 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79rv9eIn3 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79rv9eIn3 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79rv9eIn3 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79rv9eIn3 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79rv9eIn3 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79rv9eIn3 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79rv9eIn3 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79rv9eIn3 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79rv9eIn3 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79rv9eIn3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79rv9eIn3 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79rv9eIn3 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79rv9eIn3 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s38tVyElVs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38tVyElVs .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38tVyElVs .section-text {
  padding: 2rem 0;
}
.cid-s38tVyElVs .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38tVyElVs .inner-container {
    width: 100% !important;
  }
}
.cid-s38tVyVwui {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38tVyVwui .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38tVyVwui .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s38tVyVwui .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38tVyVwui .inner-container {
    width: 100% !important;
  }
}
.cid-shQLJCn1NF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-shQLKJOF7F {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shQLKJOF7F .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shQLKJOF7F .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shQLKJOF7F .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shQLKJOF7F .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shQLKJOF7F .row > .row {
  display: block;
}
.cid-shQLKJOF7F .mbr-gallery-item {
  width: 100%;
}
.cid-shQLKJOF7F .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shQLKJOF7F .mbr-gallery-item > div {
  position: relative;
}
.cid-shQLKJOF7F .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shQLKJOF7F .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shQLKJOF7F .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shQLKJOF7F .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-shQLVnQdyE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-shQLWtBMIP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shQLWtBMIP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shQLWtBMIP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shQLWtBMIP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shQLWtBMIP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shQLWtBMIP .row > .row {
  display: block;
}
.cid-shQLWtBMIP .mbr-gallery-item {
  width: 100%;
}
.cid-shQLWtBMIP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shQLWtBMIP .mbr-gallery-item > div {
  position: relative;
}
.cid-shQLWtBMIP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shQLWtBMIP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shQLWtBMIP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shQLWtBMIP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s38tVzECqM {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s38tVzECqM .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s38tVzECqM div.b {
  padding-top: 2rem;
}
.cid-s38v2WfJvh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38v2WfJvh .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38v2WfJvh .section-text {
  padding: 2rem 0;
}
.cid-s38v2WfJvh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38v2WfJvh .inner-container {
    width: 100% !important;
  }
}
.cid-v7a7Su3N9s {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7a7Su3N9s .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7a7Su3N9s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7a7Su3N9s .row {
  justify-content: center;
}
.cid-v7a7Su3N9s .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7a7Su3N9s .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7a7Su3N9s .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7a7Su3N9s .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7a7Su3N9s .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7a7Su3N9s .mbr-text_1,
.cid-v7a7Su3N9s .mbr-text_2,
.cid-v7a7Su3N9s .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7a7Su3N9s .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a7Su3N9s .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7a7Su3N9s .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a7Su3N9s .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a7Su3N9s .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a7Su3N9s .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7a7Su3N9s .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7a7Su3N9s .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a7Su3N9s .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a7Su3N9s .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7a7Su3N9s .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7a7Su3N9s .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7a7Su3N9s .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7a7RwMjCb {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7a7RwMjCb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7a7RwMjCb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7a7RwMjCb .row {
  justify-content: center;
}
.cid-v7a7RwMjCb .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7a7RwMjCb .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7a7RwMjCb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7a7RwMjCb .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7a7RwMjCb .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7a7RwMjCb .mbr-text_1,
.cid-v7a7RwMjCb .mbr-text_2,
.cid-v7a7RwMjCb .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7a7RwMjCb .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a7RwMjCb .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7a7RwMjCb .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a7RwMjCb .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a7RwMjCb .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a7RwMjCb .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7a7RwMjCb .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7a7RwMjCb .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a7RwMjCb .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a7RwMjCb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7a7RwMjCb .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7a7RwMjCb .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7a7RwMjCb .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s38v2WTjhl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38v2WTjhl .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38v2WTjhl .section-text {
  padding: 2rem 0;
}
.cid-s38v2WTjhl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38v2WTjhl .inner-container {
    width: 100% !important;
  }
}
.cid-s38v2Xg3X7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38v2Xg3X7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38v2Xg3X7 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s38v2Xg3X7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38v2Xg3X7 .inner-container {
    width: 100% !important;
  }
}
.cid-s38v2Xpp05 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38v2Xpp05 .item {
  padding-bottom: 2rem;
}
.cid-s38v2Xpp05 .item-wrapper {
  height: 100%;
}
.cid-s38v2Xpp05 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s38v2Xpp05 .carousel-control,
.cid-s38v2Xpp05 .close {
  background: #1b1b1b;
}
.cid-s38v2Xpp05 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s38v2Xpp05 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s38v2Xpp05 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s38v2Xpp05 .close::before {
  content: '\e91a';
}
.cid-s38v2Xpp05 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s38v2Xpp05 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s38v2Xpp05 .carousel-inner > .active {
  display: block;
}
.cid-s38v2Xpp05 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s38v2Xpp05 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s38v2Xpp05 .carousel-control .icon-next,
.cid-s38v2Xpp05 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s38v2Xpp05 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s38v2Xpp05 .carousel-control,
  .cid-s38v2Xpp05 .carousel-indicators,
  .cid-s38v2Xpp05 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s38v2Xpp05 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s38v2Xpp05 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s38v2Xpp05 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s38v2Xpp05 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s38v2Xpp05 .carousel-indicators {
    display: none;
  }
}
.cid-s38v2Xpp05 .carousel-indicators .active,
.cid-s38v2Xpp05 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s38v2Xpp05 .carousel-indicators .active {
  background: #fff;
}
.cid-s38v2Xpp05 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s38v2Xpp05 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s38v2Xpp05 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s38v2Xpp05 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s38v2Xpp05 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s38v2Xpp05 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s38v2Xpp05 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s38v2Xpp05 .carousel {
  width: 100%;
}
.cid-s38v2Xpp05 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s38v2Xpp05 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s38v2Xpp05 .modal.fade .modal-dialog,
.cid-s38v2Xpp05 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s38v2Xpp05 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s38v2Xpp05 a {
  display: block;
}
.cid-s38v2Xpp05 a.img {
  pointer-events: none;
}
.cid-s38v2Xpp05 H3 {
  color: #232323;
}
.cid-s38v2Ys2R7 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s38v2Ys2R7 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s38v2Ys2R7 div.b {
  padding-top: 2rem;
}
.cid-s38vYAADzr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38vYAADzr .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38vYAADzr .section-text {
  padding: 2rem 0;
}
.cid-s38vYAADzr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38vYAADzr .inner-container {
    width: 100% !important;
  }
}
.cid-svFL86v6bb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFL86v6bb .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFL86v6bb .section-text {
  padding: 2rem 0;
}
.cid-svFL86v6bb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFL86v6bb .inner-container {
    width: 100% !important;
  }
}
.cid-s38vYAYAKt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38vYAYAKt .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38vYAYAKt .section-text {
  padding: 2rem 0;
}
.cid-s38vYAYAKt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38vYAYAKt .inner-container {
    width: 100% !important;
  }
}
.cid-s38vYBjuj6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38vYBjuj6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38vYBjuj6 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s38vYBjuj6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38vYBjuj6 .inner-container {
    width: 100% !important;
  }
}
.cid-sgXJrNPlNR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgXJtCGmnl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgXJtCGmnl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgXJtCGmnl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgXJtCGmnl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgXJtCGmnl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgXJtCGmnl .row > .row {
  display: block;
}
.cid-sgXJtCGmnl .mbr-gallery-item {
  width: 100%;
}
.cid-sgXJtCGmnl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgXJtCGmnl .mbr-gallery-item > div {
  position: relative;
}
.cid-sgXJtCGmnl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgXJtCGmnl .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgXJtCGmnl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgXJtCGmnl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s38vYDahP5 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s38vYDahP5 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s38vYDahP5 div.b {
  padding-top: 2rem;
}
.cid-s38xVqQ9iM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38xVqQ9iM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38xVqQ9iM .section-text {
  padding: 2rem 0;
}
.cid-s38xVqQ9iM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38xVqQ9iM .inner-container {
    width: 100% !important;
  }
}
.cid-svFLaVLIiB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFLaVLIiB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFLaVLIiB .section-text {
  padding: 2rem 0;
}
.cid-svFLaVLIiB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFLaVLIiB .inner-container {
    width: 100% !important;
  }
}
.cid-s38xVrtVpI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38xVrtVpI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38xVrtVpI .section-text {
  padding: 2rem 0;
}
.cid-s38xVrtVpI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38xVrtVpI .inner-container {
    width: 100% !important;
  }
}
.cid-s38xVrO2nH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38xVrO2nH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38xVrO2nH .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s38xVrO2nH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38xVrO2nH .inner-container {
    width: 100% !important;
  }
}
.cid-sgUDSnZ2Wp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgUDTPvGHo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgUDTPvGHo .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgUDTPvGHo .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgUDTPvGHo .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgUDTPvGHo .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgUDTPvGHo .row > .row {
  display: block;
}
.cid-sgUDTPvGHo .mbr-gallery-item {
  width: 100%;
}
.cid-sgUDTPvGHo .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgUDTPvGHo .mbr-gallery-item > div {
  position: relative;
}
.cid-sgUDTPvGHo .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgUDTPvGHo .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgUDTPvGHo .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgUDTPvGHo .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s38xVsuP4D {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s38xVsuP4D .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s38xVsuP4D div.b {
  padding-top: 2rem;
}
.cid-s38zgZGQKr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38zgZGQKr .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38zgZGQKr .section-text {
  padding: 2rem 0;
}
.cid-s38zgZGQKr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38zgZGQKr .inner-container {
    width: 100% !important;
  }
}
.cid-svFLinwGKM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFLinwGKM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFLinwGKM .section-text {
  padding: 2rem 0;
}
.cid-svFLinwGKM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFLinwGKM .inner-container {
    width: 100% !important;
  }
}
.cid-s38zgZWxz6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38zgZWxz6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38zgZWxz6 .section-text {
  padding: 2rem 0;
}
.cid-s38zgZWxz6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38zgZWxz6 .inner-container {
    width: 100% !important;
  }
}
.cid-s38zh0fztd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s38zh0fztd .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s38zh0fztd .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s38zh0fztd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s38zh0fztd .inner-container {
    width: 100% !important;
  }
}
.cid-sgY8gcQaWT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgY8hk4DdU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgY8hk4DdU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgY8hk4DdU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgY8hk4DdU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgY8hk4DdU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgY8hk4DdU .row > .row {
  display: block;
}
.cid-sgY8hk4DdU .mbr-gallery-item {
  width: 100%;
}
.cid-sgY8hk4DdU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgY8hk4DdU .mbr-gallery-item > div {
  position: relative;
}
.cid-sgY8hk4DdU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgY8hk4DdU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgY8hk4DdU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgY8hk4DdU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s38zh1fDRb {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s38zh1fDRb .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s38zh1fDRb div.b {
  padding-top: 2rem;
}
.cid-s3bjf33YnX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bjf33YnX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bjf33YnX .section-text {
  padding: 2rem 0;
}
.cid-s3bjf33YnX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bjf33YnX .inner-container {
    width: 100% !important;
  }
}
.cid-svFLtXxxO7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFLtXxxO7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFLtXxxO7 .section-text {
  padding: 2rem 0;
}
.cid-svFLtXxxO7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFLtXxxO7 .inner-container {
    width: 100% !important;
  }
}
.cid-s3bjf3sZIm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bjf3sZIm .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bjf3sZIm .section-text {
  padding: 2rem 0;
}
.cid-s3bjf3sZIm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bjf3sZIm .inner-container {
    width: 100% !important;
  }
}
.cid-s3bjf3WQLU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bjf3WQLU .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bjf3WQLU .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3bjf3WQLU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bjf3WQLU .inner-container {
    width: 100% !important;
  }
}
.cid-sgYbrP82Z0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-svFLxCDfnE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFLxCDfnE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svFLxCDfnE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svFLxCDfnE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svFLxCDfnE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svFLxCDfnE .row > .row {
  display: block;
}
.cid-svFLxCDfnE .mbr-gallery-item {
  width: 100%;
}
.cid-svFLxCDfnE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svFLxCDfnE .mbr-gallery-item > div {
  position: relative;
}
.cid-svFLxCDfnE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svFLxCDfnE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svFLxCDfnE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svFLxCDfnE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3bjf4TE4u {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3bjf4TE4u .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3bjf4TE4u div.b {
  padding-top: 2rem;
}
.cid-s3blseq9dm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3blseq9dm .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3blseq9dm .section-text {
  padding: 2rem 0;
}
.cid-s3blseq9dm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3blseq9dm .inner-container {
    width: 100% !important;
  }
}
.cid-svFLKqSESl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFLKqSESl .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFLKqSESl .section-text {
  padding: 2rem 0;
}
.cid-svFLKqSESl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFLKqSESl .inner-container {
    width: 100% !important;
  }
}
.cid-s3blseQ7Fl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3blseQ7Fl .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3blseQ7Fl .section-text {
  padding: 2rem 0;
}
.cid-s3blseQ7Fl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3blseQ7Fl .inner-container {
    width: 100% !important;
  }
}
.cid-s3blsf9Tyh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3blsf9Tyh .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3blsf9Tyh .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3blsf9Tyh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3blsf9Tyh .inner-container {
    width: 100% !important;
  }
}
.cid-sgYbVhSsDw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgYbX4hZWQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgYbX4hZWQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgYbX4hZWQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgYbX4hZWQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgYbX4hZWQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgYbX4hZWQ .row > .row {
  display: block;
}
.cid-sgYbX4hZWQ .mbr-gallery-item {
  width: 100%;
}
.cid-sgYbX4hZWQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgYbX4hZWQ .mbr-gallery-item > div {
  position: relative;
}
.cid-sgYbX4hZWQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgYbX4hZWQ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgYbX4hZWQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgYbX4hZWQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3blsfJxmh {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3blsfJxmh .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3blsfJxmh div.b {
  padding-top: 2rem;
}
.cid-s3bmvqqYzq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bmvqqYzq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bmvqqYzq .section-text {
  padding: 2rem 0;
}
.cid-s3bmvqqYzq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bmvqqYzq .inner-container {
    width: 100% !important;
  }
}
.cid-svFMC4NDOm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFMC4NDOm .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFMC4NDOm .section-text {
  padding: 2rem 0;
}
.cid-svFMC4NDOm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFMC4NDOm .inner-container {
    width: 100% !important;
  }
}
.cid-s3bmvqHNMk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bmvqHNMk .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bmvqHNMk .section-text {
  padding: 2rem 0;
}
.cid-s3bmvqHNMk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bmvqHNMk .inner-container {
    width: 100% !important;
  }
}
.cid-s3bmvr3RN7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bmvr3RN7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bmvr3RN7 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3bmvr3RN7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bmvr3RN7 .inner-container {
    width: 100% !important;
  }
}
.cid-sgYf1nEAnR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-svFMEWy2K7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFMEWy2K7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svFMEWy2K7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svFMEWy2K7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svFMEWy2K7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svFMEWy2K7 .row > .row {
  display: block;
}
.cid-svFMEWy2K7 .mbr-gallery-item {
  width: 100%;
}
.cid-svFMEWy2K7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svFMEWy2K7 .mbr-gallery-item > div {
  position: relative;
}
.cid-svFMEWy2K7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svFMEWy2K7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svFMEWy2K7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svFMEWy2K7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3bmvrz9Wc {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3bmvrz9Wc .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3bmvrz9Wc div.b {
  padding-top: 2rem;
}
.cid-s3bmUUsrS7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bmUUsrS7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bmUUsrS7 .section-text {
  padding: 2rem 0;
}
.cid-s3bmUUsrS7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bmUUsrS7 .inner-container {
    width: 100% !important;
  }
}
.cid-v799E0aWyQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v799E0aWyQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v799E0aWyQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v799E0aWyQ .row {
  justify-content: center;
}
.cid-v799E0aWyQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v799E0aWyQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v799E0aWyQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v799E0aWyQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v799E0aWyQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v799E0aWyQ .mbr-text_1,
.cid-v799E0aWyQ .mbr-text_2,
.cid-v799E0aWyQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v799E0aWyQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v799E0aWyQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v799E0aWyQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v799E0aWyQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v799E0aWyQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v799E0aWyQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v799E0aWyQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v799E0aWyQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v799E0aWyQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v799E0aWyQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v799E0aWyQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v799E0aWyQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v799E0aWyQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v799ELDYk7 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v799ELDYk7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v799ELDYk7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v799ELDYk7 .row {
  justify-content: center;
}
.cid-v799ELDYk7 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v799ELDYk7 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v799ELDYk7 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v799ELDYk7 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v799ELDYk7 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v799ELDYk7 .mbr-text_1,
.cid-v799ELDYk7 .mbr-text_2,
.cid-v799ELDYk7 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v799ELDYk7 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v799ELDYk7 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v799ELDYk7 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v799ELDYk7 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v799ELDYk7 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v799ELDYk7 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v799ELDYk7 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v799ELDYk7 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v799ELDYk7 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v799ELDYk7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v799ELDYk7 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v799ELDYk7 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v799ELDYk7 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3bmUUPboS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bmUUPboS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bmUUPboS .section-text {
  padding: 2rem 0;
}
.cid-s3bmUUPboS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bmUUPboS .inner-container {
    width: 100% !important;
  }
}
.cid-s3bmUV641V {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bmUV641V .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bmUV641V .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3bmUV641V .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bmUV641V .inner-container {
    width: 100% !important;
  }
}
.cid-sgYfsUsYrU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-svFNEJqgJg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFNEJqgJg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svFNEJqgJg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svFNEJqgJg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svFNEJqgJg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svFNEJqgJg .row > .row {
  display: block;
}
.cid-svFNEJqgJg .mbr-gallery-item {
  width: 100%;
}
.cid-svFNEJqgJg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svFNEJqgJg .mbr-gallery-item > div {
  position: relative;
}
.cid-svFNEJqgJg .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svFNEJqgJg .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svFNEJqgJg .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svFNEJqgJg .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3bmUVDqDY {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3bmUVDqDY .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3bmUVDqDY div.b {
  padding-top: 2rem;
}
.cid-s3bndLsdOL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bndLsdOL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bndLsdOL .section-text {
  padding: 2rem 0;
}
.cid-s3bndLsdOL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bndLsdOL .inner-container {
    width: 100% !important;
  }
}
.cid-v79aH7aQuk {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79aH7aQuk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79aH7aQuk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79aH7aQuk .row {
  justify-content: center;
}
.cid-v79aH7aQuk .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79aH7aQuk .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79aH7aQuk .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79aH7aQuk .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79aH7aQuk .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79aH7aQuk .mbr-text_1,
.cid-v79aH7aQuk .mbr-text_2,
.cid-v79aH7aQuk .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79aH7aQuk .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79aH7aQuk .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79aH7aQuk .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79aH7aQuk .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79aH7aQuk .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79aH7aQuk .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79aH7aQuk .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79aH7aQuk .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79aH7aQuk .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79aH7aQuk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79aH7aQuk .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79aH7aQuk .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79aH7aQuk .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79aHRNYRO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79aHRNYRO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79aHRNYRO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79aHRNYRO .row {
  justify-content: center;
}
.cid-v79aHRNYRO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79aHRNYRO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79aHRNYRO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79aHRNYRO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79aHRNYRO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79aHRNYRO .mbr-text_1,
.cid-v79aHRNYRO .mbr-text_2,
.cid-v79aHRNYRO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79aHRNYRO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79aHRNYRO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79aHRNYRO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79aHRNYRO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79aHRNYRO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79aHRNYRO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79aHRNYRO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79aHRNYRO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79aHRNYRO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79aHRNYRO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79aHRNYRO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79aHRNYRO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79aHRNYRO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3bndLQwdQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bndLQwdQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bndLQwdQ .section-text {
  padding: 2rem 0;
}
.cid-s3bndLQwdQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bndLQwdQ .inner-container {
    width: 100% !important;
  }
}
.cid-s3bndM9RFH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bndM9RFH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bndM9RFH .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3bndM9RFH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bndM9RFH .inner-container {
    width: 100% !important;
  }
}
.cid-s3bndMiHKE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bndMiHKE .item {
  padding-bottom: 2rem;
}
.cid-s3bndMiHKE .item-wrapper {
  height: 100%;
}
.cid-s3bndMiHKE .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3bndMiHKE .carousel-control,
.cid-s3bndMiHKE .close {
  background: #1b1b1b;
}
.cid-s3bndMiHKE .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3bndMiHKE .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3bndMiHKE .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3bndMiHKE .close::before {
  content: '\e91a';
}
.cid-s3bndMiHKE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3bndMiHKE .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3bndMiHKE .carousel-inner > .active {
  display: block;
}
.cid-s3bndMiHKE .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3bndMiHKE .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3bndMiHKE .carousel-control .icon-next,
.cid-s3bndMiHKE .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3bndMiHKE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3bndMiHKE .carousel-control,
  .cid-s3bndMiHKE .carousel-indicators,
  .cid-s3bndMiHKE .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3bndMiHKE .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3bndMiHKE .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3bndMiHKE .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3bndMiHKE .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3bndMiHKE .carousel-indicators {
    display: none;
  }
}
.cid-s3bndMiHKE .carousel-indicators .active,
.cid-s3bndMiHKE .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3bndMiHKE .carousel-indicators .active {
  background: #fff;
}
.cid-s3bndMiHKE .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3bndMiHKE .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3bndMiHKE .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3bndMiHKE .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3bndMiHKE .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3bndMiHKE .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3bndMiHKE .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3bndMiHKE .carousel {
  width: 100%;
}
.cid-s3bndMiHKE .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3bndMiHKE .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3bndMiHKE .modal.fade .modal-dialog,
.cid-s3bndMiHKE .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3bndMiHKE .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3bndMiHKE a {
  display: block;
}
.cid-s3bndMiHKE a.img {
  pointer-events: none;
}
.cid-s3bndMiHKE H3 {
  color: #232323;
}
.cid-s3bndMTnUU {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3bndMTnUU .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3bndMTnUU div.b {
  padding-top: 2rem;
}
.cid-s3bpWHvHPE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bpWHvHPE .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bpWHvHPE .section-text {
  padding: 2rem 0;
}
.cid-s3bpWHvHPE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bpWHvHPE .inner-container {
    width: 100% !important;
  }
}
.cid-v79lxXMKKG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79lxXMKKG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79lxXMKKG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79lxXMKKG .row {
  justify-content: center;
}
.cid-v79lxXMKKG .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79lxXMKKG .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79lxXMKKG .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79lxXMKKG .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79lxXMKKG .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79lxXMKKG .mbr-text_1,
.cid-v79lxXMKKG .mbr-text_2,
.cid-v79lxXMKKG .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79lxXMKKG .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79lxXMKKG .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79lxXMKKG .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79lxXMKKG .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79lxXMKKG .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79lxXMKKG .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79lxXMKKG .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79lxXMKKG .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79lxXMKKG .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79lxXMKKG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79lxXMKKG .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79lxXMKKG .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79lxXMKKG .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79lz6UQPz {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79lz6UQPz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79lz6UQPz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79lz6UQPz .row {
  justify-content: center;
}
.cid-v79lz6UQPz .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79lz6UQPz .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79lz6UQPz .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79lz6UQPz .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79lz6UQPz .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79lz6UQPz .mbr-text_1,
.cid-v79lz6UQPz .mbr-text_2,
.cid-v79lz6UQPz .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79lz6UQPz .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79lz6UQPz .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79lz6UQPz .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79lz6UQPz .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79lz6UQPz .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79lz6UQPz .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79lz6UQPz .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79lz6UQPz .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79lz6UQPz .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79lz6UQPz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79lz6UQPz .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79lz6UQPz .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79lz6UQPz .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3bpWHNfH7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bpWHNfH7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bpWHNfH7 .section-text {
  padding: 2rem 0;
}
.cid-s3bpWHNfH7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bpWHNfH7 .inner-container {
    width: 100% !important;
  }
}
.cid-s3bpWIlBkg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bpWIlBkg .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bpWIlBkg .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3bpWIlBkg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bpWIlBkg .inner-container {
    width: 100% !important;
  }
}
.cid-sh5Bnt3n0Y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh5BoFuwFp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh5BoFuwFp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh5BoFuwFp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh5BoFuwFp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh5BoFuwFp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh5BoFuwFp .row > .row {
  display: block;
}
.cid-sh5BoFuwFp .mbr-gallery-item {
  width: 100%;
}
.cid-sh5BoFuwFp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh5BoFuwFp .mbr-gallery-item > div {
  position: relative;
}
.cid-sh5BoFuwFp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh5BoFuwFp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh5BoFuwFp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh5BoFuwFp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sh5C0gFWab {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh5C177R1z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh5C177R1z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh5C177R1z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh5C177R1z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh5C177R1z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh5C177R1z .row > .row {
  display: block;
}
.cid-sh5C177R1z .mbr-gallery-item {
  width: 100%;
}
.cid-sh5C177R1z .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh5C177R1z .mbr-gallery-item > div {
  position: relative;
}
.cid-sh5C177R1z .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh5C177R1z .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh5C177R1z .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh5C177R1z .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3bpWIXdZB {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3bpWIXdZB .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3bpWIXdZB div.b {
  padding-top: 2rem;
}
.cid-s3brlMMp3E {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3brlMMp3E .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3brlMMp3E .section-text {
  padding: 2rem 0;
}
.cid-s3brlMMp3E .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3brlMMp3E .inner-container {
    width: 100% !important;
  }
}
.cid-v79moU186f {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79moU186f .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79moU186f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79moU186f .row {
  justify-content: center;
}
.cid-v79moU186f .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79moU186f .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79moU186f .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79moU186f .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79moU186f .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79moU186f .mbr-text_1,
.cid-v79moU186f .mbr-text_2,
.cid-v79moU186f .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79moU186f .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79moU186f .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79moU186f .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79moU186f .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79moU186f .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79moU186f .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79moU186f .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79moU186f .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79moU186f .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79moU186f .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79moU186f .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79moU186f .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79moU186f .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79mpP1hxk {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79mpP1hxk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79mpP1hxk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79mpP1hxk .row {
  justify-content: center;
}
.cid-v79mpP1hxk .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79mpP1hxk .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79mpP1hxk .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79mpP1hxk .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79mpP1hxk .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79mpP1hxk .mbr-text_1,
.cid-v79mpP1hxk .mbr-text_2,
.cid-v79mpP1hxk .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79mpP1hxk .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79mpP1hxk .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79mpP1hxk .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79mpP1hxk .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79mpP1hxk .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79mpP1hxk .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79mpP1hxk .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79mpP1hxk .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79mpP1hxk .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79mpP1hxk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79mpP1hxk .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79mpP1hxk .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79mpP1hxk .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3brlN9b11 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3brlN9b11 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3brlN9b11 .section-text {
  padding: 2rem 0;
}
.cid-s3brlN9b11 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3brlN9b11 .inner-container {
    width: 100% !important;
  }
}
.cid-s3brlNu3oZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3brlNu3oZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3brlNu3oZ .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3brlNu3oZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3brlNu3oZ .inner-container {
    width: 100% !important;
  }
}
.cid-sh5CwXXRFJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh5CxTHinU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh5CxTHinU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh5CxTHinU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh5CxTHinU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh5CxTHinU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh5CxTHinU .row > .row {
  display: block;
}
.cid-sh5CxTHinU .mbr-gallery-item {
  width: 100%;
}
.cid-sh5CxTHinU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh5CxTHinU .mbr-gallery-item > div {
  position: relative;
}
.cid-sh5CxTHinU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh5CxTHinU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh5CxTHinU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh5CxTHinU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3brlOPRjR {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3brlOPRjR .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3brlOPRjR div.b {
  padding-top: 2rem;
}
.cid-s3bvmRaa9B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bvmRaa9B .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bvmRaa9B .section-text {
  padding: 2rem 0;
}
.cid-s3bvmRaa9B .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bvmRaa9B .inner-container {
    width: 100% !important;
  }
}
.cid-v79qVuAfsX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79qVuAfsX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79qVuAfsX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79qVuAfsX .row {
  justify-content: center;
}
.cid-v79qVuAfsX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79qVuAfsX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79qVuAfsX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79qVuAfsX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79qVuAfsX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79qVuAfsX .mbr-text_1,
.cid-v79qVuAfsX .mbr-text_2,
.cid-v79qVuAfsX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79qVuAfsX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79qVuAfsX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79qVuAfsX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79qVuAfsX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79qVuAfsX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79qVuAfsX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79qVuAfsX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79qVuAfsX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79qVuAfsX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79qVuAfsX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79qVuAfsX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79qVuAfsX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79qVuAfsX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79qUsHUj0 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79qUsHUj0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79qUsHUj0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79qUsHUj0 .row {
  justify-content: center;
}
.cid-v79qUsHUj0 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79qUsHUj0 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79qUsHUj0 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79qUsHUj0 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79qUsHUj0 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79qUsHUj0 .mbr-text_1,
.cid-v79qUsHUj0 .mbr-text_2,
.cid-v79qUsHUj0 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79qUsHUj0 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79qUsHUj0 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79qUsHUj0 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79qUsHUj0 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79qUsHUj0 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79qUsHUj0 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79qUsHUj0 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79qUsHUj0 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79qUsHUj0 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79qUsHUj0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79qUsHUj0 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79qUsHUj0 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79qUsHUj0 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3bvmRsMxg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bvmRsMxg .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bvmRsMxg .section-text {
  padding: 2rem 0;
}
.cid-s3bvmRsMxg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bvmRsMxg .inner-container {
    width: 100% !important;
  }
}
.cid-s3bvmRXib2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bvmRXib2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bvmRXib2 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3bvmRXib2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bvmRXib2 .inner-container {
    width: 100% !important;
  }
}
.cid-s3bvmS5HEq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bvmS5HEq .item {
  padding-bottom: 2rem;
}
.cid-s3bvmS5HEq .item-wrapper {
  height: 100%;
}
.cid-s3bvmS5HEq .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3bvmS5HEq .carousel-control,
.cid-s3bvmS5HEq .close {
  background: #1b1b1b;
}
.cid-s3bvmS5HEq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3bvmS5HEq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3bvmS5HEq .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3bvmS5HEq .close::before {
  content: '\e91a';
}
.cid-s3bvmS5HEq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3bvmS5HEq .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3bvmS5HEq .carousel-inner > .active {
  display: block;
}
.cid-s3bvmS5HEq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3bvmS5HEq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3bvmS5HEq .carousel-control .icon-next,
.cid-s3bvmS5HEq .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3bvmS5HEq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3bvmS5HEq .carousel-control,
  .cid-s3bvmS5HEq .carousel-indicators,
  .cid-s3bvmS5HEq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3bvmS5HEq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3bvmS5HEq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3bvmS5HEq .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3bvmS5HEq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3bvmS5HEq .carousel-indicators {
    display: none;
  }
}
.cid-s3bvmS5HEq .carousel-indicators .active,
.cid-s3bvmS5HEq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3bvmS5HEq .carousel-indicators .active {
  background: #fff;
}
.cid-s3bvmS5HEq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3bvmS5HEq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3bvmS5HEq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3bvmS5HEq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3bvmS5HEq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3bvmS5HEq .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3bvmS5HEq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3bvmS5HEq .carousel {
  width: 100%;
}
.cid-s3bvmS5HEq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3bvmS5HEq .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3bvmS5HEq .modal.fade .modal-dialog,
.cid-s3bvmS5HEq .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3bvmS5HEq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3bvmS5HEq a {
  display: block;
}
.cid-s3bvmS5HEq a.img {
  pointer-events: none;
}
.cid-s3bvmS5HEq H3 {
  color: #232323;
}
.cid-s3bxtxAN0C {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bxtxAN0C .item {
  padding-bottom: 2rem;
}
.cid-s3bxtxAN0C .item-wrapper {
  height: 100%;
}
.cid-s3bxtxAN0C .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3bxtxAN0C .carousel-control,
.cid-s3bxtxAN0C .close {
  background: #1b1b1b;
}
.cid-s3bxtxAN0C .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3bxtxAN0C .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3bxtxAN0C .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3bxtxAN0C .close::before {
  content: '\e91a';
}
.cid-s3bxtxAN0C .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3bxtxAN0C .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3bxtxAN0C .carousel-inner > .active {
  display: block;
}
.cid-s3bxtxAN0C .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3bxtxAN0C .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3bxtxAN0C .carousel-control .icon-next,
.cid-s3bxtxAN0C .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3bxtxAN0C .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3bxtxAN0C .carousel-control,
  .cid-s3bxtxAN0C .carousel-indicators,
  .cid-s3bxtxAN0C .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3bxtxAN0C .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3bxtxAN0C .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3bxtxAN0C .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3bxtxAN0C .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3bxtxAN0C .carousel-indicators {
    display: none;
  }
}
.cid-s3bxtxAN0C .carousel-indicators .active,
.cid-s3bxtxAN0C .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3bxtxAN0C .carousel-indicators .active {
  background: #fff;
}
.cid-s3bxtxAN0C .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3bxtxAN0C .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3bxtxAN0C .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3bxtxAN0C .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3bxtxAN0C .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3bxtxAN0C .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3bxtxAN0C .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3bxtxAN0C .carousel {
  width: 100%;
}
.cid-s3bxtxAN0C .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3bxtxAN0C .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3bxtxAN0C .modal.fade .modal-dialog,
.cid-s3bxtxAN0C .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3bxtxAN0C .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3bxtxAN0C a {
  display: block;
}
.cid-s3bxtxAN0C a.img {
  pointer-events: none;
}
.cid-s3bvmSKywp {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3bvmSKywp .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3bvmSKywp div.b {
  padding-top: 2rem;
}
.cid-s3bzt1LQJj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bzt1LQJj .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bzt1LQJj .section-text {
  padding: 2rem 0;
}
.cid-s3bzt1LQJj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bzt1LQJj .inner-container {
    width: 100% !important;
  }
}
.cid-v7a6Uxq5nu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7a6Uxq5nu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7a6Uxq5nu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7a6Uxq5nu .row {
  justify-content: center;
}
.cid-v7a6Uxq5nu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7a6Uxq5nu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7a6Uxq5nu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7a6Uxq5nu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7a6Uxq5nu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7a6Uxq5nu .mbr-text_1,
.cid-v7a6Uxq5nu .mbr-text_2,
.cid-v7a6Uxq5nu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7a6Uxq5nu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a6Uxq5nu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7a6Uxq5nu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a6Uxq5nu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a6Uxq5nu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a6Uxq5nu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7a6Uxq5nu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7a6Uxq5nu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a6Uxq5nu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a6Uxq5nu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7a6Uxq5nu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7a6Uxq5nu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7a6Uxq5nu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7a78qj3e9 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7a78qj3e9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7a78qj3e9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7a78qj3e9 .row {
  justify-content: center;
}
.cid-v7a78qj3e9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7a78qj3e9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7a78qj3e9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7a78qj3e9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7a78qj3e9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7a78qj3e9 .mbr-text_1,
.cid-v7a78qj3e9 .mbr-text_2,
.cid-v7a78qj3e9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7a78qj3e9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a78qj3e9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7a78qj3e9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a78qj3e9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a78qj3e9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a78qj3e9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7a78qj3e9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7a78qj3e9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a78qj3e9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a78qj3e9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7a78qj3e9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7a78qj3e9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7a78qj3e9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3bzt280Nz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bzt280Nz .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bzt280Nz .section-text {
  padding: 2rem 0;
}
.cid-s3bzt280Nz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bzt280Nz .inner-container {
    width: 100% !important;
  }
}
.cid-s3bzt2uYxG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bzt2uYxG .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bzt2uYxG .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3bzt2uYxG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bzt2uYxG .inner-container {
    width: 100% !important;
  }
}
.cid-si2MyuHt2h {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-si2MCeYNag {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-si2MCeYNag .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-si2MCeYNag .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-si2MCeYNag .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-si2MCeYNag .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-si2MCeYNag .row > .row {
  display: block;
}
.cid-si2MCeYNag .mbr-gallery-item {
  width: 100%;
}
.cid-si2MCeYNag .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-si2MCeYNag .mbr-gallery-item > div {
  position: relative;
}
.cid-si2MCeYNag .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-si2MCeYNag .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-si2MCeYNag .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-si2MCeYNag .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-si2MJ0pQxK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-si2MJY9vJS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-si2MJY9vJS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-si2MJY9vJS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-si2MJY9vJS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-si2MJY9vJS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-si2MJY9vJS .row > .row {
  display: block;
}
.cid-si2MJY9vJS .mbr-gallery-item {
  width: 100%;
}
.cid-si2MJY9vJS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-si2MJY9vJS .mbr-gallery-item > div {
  position: relative;
}
.cid-si2MJY9vJS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-si2MJY9vJS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-si2MJY9vJS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-si2MJY9vJS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-si2MLXGEIL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-si2MMQyPit {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-si2MMQyPit .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-si2MMQyPit .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-si2MMQyPit .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-si2MMQyPit .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-si2MMQyPit .row > .row {
  display: block;
}
.cid-si2MMQyPit .mbr-gallery-item {
  width: 100%;
}
.cid-si2MMQyPit .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-si2MMQyPit .mbr-gallery-item > div {
  position: relative;
}
.cid-si2MMQyPit .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-si2MMQyPit .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-si2MMQyPit .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-si2MMQyPit .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-si2RTF9rkf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-s3bzt3TiWs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bzt3TiWs .item {
  padding-bottom: 2rem;
}
.cid-s3bzt3TiWs .item-wrapper {
  height: 100%;
}
.cid-s3bzt3TiWs .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3bzt3TiWs .carousel-control,
.cid-s3bzt3TiWs .close {
  background: #1b1b1b;
}
.cid-s3bzt3TiWs .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3bzt3TiWs .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3bzt3TiWs .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3bzt3TiWs .close::before {
  content: '\e91a';
}
.cid-s3bzt3TiWs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3bzt3TiWs .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3bzt3TiWs .carousel-inner > .active {
  display: block;
}
.cid-s3bzt3TiWs .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3bzt3TiWs .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3bzt3TiWs .carousel-control .icon-next,
.cid-s3bzt3TiWs .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3bzt3TiWs .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3bzt3TiWs .carousel-control,
  .cid-s3bzt3TiWs .carousel-indicators,
  .cid-s3bzt3TiWs .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3bzt3TiWs .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3bzt3TiWs .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3bzt3TiWs .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3bzt3TiWs .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3bzt3TiWs .carousel-indicators {
    display: none;
  }
}
.cid-s3bzt3TiWs .carousel-indicators .active,
.cid-s3bzt3TiWs .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3bzt3TiWs .carousel-indicators .active {
  background: #fff;
}
.cid-s3bzt3TiWs .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3bzt3TiWs .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3bzt3TiWs .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3bzt3TiWs .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3bzt3TiWs .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3bzt3TiWs .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3bzt3TiWs .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3bzt3TiWs .carousel {
  width: 100%;
}
.cid-s3bzt3TiWs .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3bzt3TiWs .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3bzt3TiWs .modal.fade .modal-dialog,
.cid-s3bzt3TiWs .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3bzt3TiWs .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3bzt3TiWs a {
  display: block;
}
.cid-s3bzt3TiWs a.img {
  pointer-events: none;
}
.cid-s3bzt4wQ9f {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3bzt4wQ9f .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3bzt4wQ9f div.b {
  padding-top: 2rem;
}
.cid-s3bEW63UqA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bEW63UqA .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bEW63UqA .section-text {
  padding: 2rem 0;
}
.cid-s3bEW63UqA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bEW63UqA .inner-container {
    width: 100% !important;
  }
}
.cid-v7a7Bll40N {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7a7Bll40N .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7a7Bll40N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7a7Bll40N .row {
  justify-content: center;
}
.cid-v7a7Bll40N .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7a7Bll40N .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7a7Bll40N .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7a7Bll40N .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7a7Bll40N .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7a7Bll40N .mbr-text_1,
.cid-v7a7Bll40N .mbr-text_2,
.cid-v7a7Bll40N .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7a7Bll40N .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a7Bll40N .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7a7Bll40N .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a7Bll40N .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a7Bll40N .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a7Bll40N .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7a7Bll40N .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7a7Bll40N .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a7Bll40N .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a7Bll40N .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7a7Bll40N .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7a7Bll40N .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7a7Bll40N .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7a7A9wKdQ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7a7A9wKdQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7a7A9wKdQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7a7A9wKdQ .row {
  justify-content: center;
}
.cid-v7a7A9wKdQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7a7A9wKdQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7a7A9wKdQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7a7A9wKdQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7a7A9wKdQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7a7A9wKdQ .mbr-text_1,
.cid-v7a7A9wKdQ .mbr-text_2,
.cid-v7a7A9wKdQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7a7A9wKdQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a7A9wKdQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7a7A9wKdQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a7A9wKdQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a7A9wKdQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a7A9wKdQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7a7A9wKdQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7a7A9wKdQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a7A9wKdQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a7A9wKdQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7a7A9wKdQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7a7A9wKdQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7a7A9wKdQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3bEW6vVbu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bEW6vVbu .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bEW6vVbu .section-text {
  padding: 2rem 0;
}
.cid-s3bEW6vVbu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bEW6vVbu .inner-container {
    width: 100% !important;
  }
}
.cid-s3bEW6RDov {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bEW6RDov .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bEW6RDov .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3bEW6RDov .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bEW6RDov .inner-container {
    width: 100% !important;
  }
}
.cid-s3bEW72rnp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bEW72rnp .item {
  padding-bottom: 2rem;
}
.cid-s3bEW72rnp .item-wrapper {
  height: 100%;
}
.cid-s3bEW72rnp .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3bEW72rnp .carousel-control,
.cid-s3bEW72rnp .close {
  background: #1b1b1b;
}
.cid-s3bEW72rnp .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3bEW72rnp .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3bEW72rnp .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3bEW72rnp .close::before {
  content: '\e91a';
}
.cid-s3bEW72rnp .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3bEW72rnp .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3bEW72rnp .carousel-inner > .active {
  display: block;
}
.cid-s3bEW72rnp .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3bEW72rnp .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3bEW72rnp .carousel-control .icon-next,
.cid-s3bEW72rnp .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3bEW72rnp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3bEW72rnp .carousel-control,
  .cid-s3bEW72rnp .carousel-indicators,
  .cid-s3bEW72rnp .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3bEW72rnp .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3bEW72rnp .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3bEW72rnp .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3bEW72rnp .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3bEW72rnp .carousel-indicators {
    display: none;
  }
}
.cid-s3bEW72rnp .carousel-indicators .active,
.cid-s3bEW72rnp .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3bEW72rnp .carousel-indicators .active {
  background: #fff;
}
.cid-s3bEW72rnp .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3bEW72rnp .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3bEW72rnp .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3bEW72rnp .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3bEW72rnp .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3bEW72rnp .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3bEW72rnp .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3bEW72rnp .carousel {
  width: 100%;
}
.cid-s3bEW72rnp .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3bEW72rnp .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3bEW72rnp .modal.fade .modal-dialog,
.cid-s3bEW72rnp .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3bEW72rnp .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3bEW72rnp a {
  display: block;
}
.cid-s3bEW72rnp a.img {
  pointer-events: none;
}
.cid-s3bEW72rnp H3 {
  color: #232323;
}
.cid-s3bEW9OxjH {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3bEW9OxjH .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3bEW9OxjH div.b {
  padding-top: 2rem;
}
.cid-s3bIcWCY7V {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bIcWCY7V .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bIcWCY7V .section-text {
  padding: 2rem 0;
}
.cid-s3bIcWCY7V .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bIcWCY7V .inner-container {
    width: 100% !important;
  }
}
.cid-v79o048Lb3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v79o048Lb3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79o048Lb3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79o048Lb3 .row {
  justify-content: center;
}
.cid-v79o048Lb3 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79o048Lb3 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79o048Lb3 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79o048Lb3 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79o048Lb3 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79o048Lb3 .mbr-text_1,
.cid-v79o048Lb3 .mbr-text_2,
.cid-v79o048Lb3 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79o048Lb3 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79o048Lb3 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79o048Lb3 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79o048Lb3 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79o048Lb3 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79o048Lb3 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79o048Lb3 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79o048Lb3 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79o048Lb3 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v79o048Lb3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79o048Lb3 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79o048Lb3 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79o048Lb3 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v79o16rXnB {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v79o16rXnB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v79o16rXnB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v79o16rXnB .row {
  justify-content: center;
}
.cid-v79o16rXnB .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v79o16rXnB .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v79o16rXnB .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v79o16rXnB .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v79o16rXnB .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v79o16rXnB .mbr-text_1,
.cid-v79o16rXnB .mbr-text_2,
.cid-v79o16rXnB .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v79o16rXnB .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79o16rXnB .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v79o16rXnB .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79o16rXnB .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79o16rXnB .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79o16rXnB .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v79o16rXnB .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v79o16rXnB .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v79o16rXnB .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v79o16rXnB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v79o16rXnB .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v79o16rXnB .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v79o16rXnB .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3bIcWVLCQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bIcWVLCQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bIcWVLCQ .section-text {
  padding: 2rem 0;
}
.cid-s3bIcWVLCQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bIcWVLCQ .inner-container {
    width: 100% !important;
  }
}
.cid-s3bIcXnxce {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bIcXnxce .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bIcXnxce .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3bIcXnxce .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bIcXnxce .inner-container {
    width: 100% !important;
  }
}
.cid-shWGLJbcnP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-shWGMNm56V {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shWGMNm56V .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shWGMNm56V .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shWGMNm56V .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shWGMNm56V .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shWGMNm56V .row > .row {
  display: block;
}
.cid-shWGMNm56V .mbr-gallery-item {
  width: 100%;
}
.cid-shWGMNm56V .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shWGMNm56V .mbr-gallery-item > div {
  position: relative;
}
.cid-shWGMNm56V .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shWGMNm56V .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shWGMNm56V .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shWGMNm56V .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3bIcYPlmt {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3bIcYPlmt .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3bIcYPlmt div.b {
  padding-top: 2rem;
}
.cid-s3bNETIaL9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bNETIaL9 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bNETIaL9 .section-text {
  padding: 2rem 0;
}
.cid-s3bNETIaL9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bNETIaL9 .inner-container {
    width: 100% !important;
  }
}
.cid-v7a9IYG6jQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7a9IYG6jQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7a9IYG6jQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7a9IYG6jQ .row {
  justify-content: center;
}
.cid-v7a9IYG6jQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7a9IYG6jQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7a9IYG6jQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7a9IYG6jQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7a9IYG6jQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7a9IYG6jQ .mbr-text_1,
.cid-v7a9IYG6jQ .mbr-text_2,
.cid-v7a9IYG6jQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7a9IYG6jQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a9IYG6jQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7a9IYG6jQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a9IYG6jQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a9IYG6jQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a9IYG6jQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7a9IYG6jQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7a9IYG6jQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a9IYG6jQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a9IYG6jQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7a9IYG6jQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7a9IYG6jQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7a9IYG6jQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7a9JPSjz8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7a9JPSjz8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7a9JPSjz8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7a9JPSjz8 .row {
  justify-content: center;
}
.cid-v7a9JPSjz8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7a9JPSjz8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7a9JPSjz8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7a9JPSjz8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7a9JPSjz8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7a9JPSjz8 .mbr-text_1,
.cid-v7a9JPSjz8 .mbr-text_2,
.cid-v7a9JPSjz8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7a9JPSjz8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a9JPSjz8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7a9JPSjz8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a9JPSjz8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a9JPSjz8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a9JPSjz8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7a9JPSjz8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7a9JPSjz8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a9JPSjz8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a9JPSjz8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7a9JPSjz8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7a9JPSjz8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7a9JPSjz8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3bNEU1GRh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bNEU1GRh .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bNEU1GRh .section-text {
  padding: 2rem 0;
}
.cid-s3bNEU1GRh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bNEU1GRh .inner-container {
    width: 100% !important;
  }
}
.cid-s3bNEUpYm1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3bNEUpYm1 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3bNEUpYm1 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3bNEUpYm1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3bNEUpYm1 .inner-container {
    width: 100% !important;
  }
}
.cid-si5B9iTWdq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-si5BgUN69y {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-si5BgUN69y .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-si5BgUN69y .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-si5BgUN69y .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-si5BgUN69y .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-si5BgUN69y .row > .row {
  display: block;
}
.cid-si5BgUN69y .mbr-gallery-item {
  width: 100%;
}
.cid-si5BgUN69y .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-si5BgUN69y .mbr-gallery-item > div {
  position: relative;
}
.cid-si5BgUN69y .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-si5BgUN69y .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-si5BgUN69y .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-si5BgUN69y .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-si5BalFQ1f {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-si5Bf1INtH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-si5Bf1INtH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-si5Bf1INtH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-si5Bf1INtH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-si5Bf1INtH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-si5Bf1INtH .row > .row {
  display: block;
}
.cid-si5Bf1INtH .mbr-gallery-item {
  width: 100%;
}
.cid-si5Bf1INtH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-si5Bf1INtH .mbr-gallery-item > div {
  position: relative;
}
.cid-si5Bf1INtH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-si5Bf1INtH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-si5Bf1INtH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-si5Bf1INtH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-si5Bce9DNr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-si5BdmeT7m {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-si5BdmeT7m .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-si5BdmeT7m .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-si5BdmeT7m .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-si5BdmeT7m .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-si5BdmeT7m .row > .row {
  display: block;
}
.cid-si5BdmeT7m .mbr-gallery-item {
  width: 100%;
}
.cid-si5BdmeT7m .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-si5BdmeT7m .mbr-gallery-item > div {
  position: relative;
}
.cid-si5BdmeT7m .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-si5BdmeT7m .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-si5BdmeT7m .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-si5BdmeT7m .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3bNEZO7XH {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3bNEZO7XH .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3bNEZO7XH div.b {
  padding-top: 2rem;
}
.cid-s3c0OhuSu4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3c0OhuSu4 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3c0OhuSu4 .section-text {
  padding: 2rem 0;
}
.cid-s3c0OhuSu4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3c0OhuSu4 .inner-container {
    width: 100% !important;
  }
}
.cid-v7aaf6SINs {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7aaf6SINs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7aaf6SINs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7aaf6SINs .row {
  justify-content: center;
}
.cid-v7aaf6SINs .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7aaf6SINs .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7aaf6SINs .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7aaf6SINs .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7aaf6SINs .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7aaf6SINs .mbr-text_1,
.cid-v7aaf6SINs .mbr-text_2,
.cid-v7aaf6SINs .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7aaf6SINs .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aaf6SINs .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7aaf6SINs .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7aaf6SINs .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7aaf6SINs .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aaf6SINs .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7aaf6SINs .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7aaf6SINs .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aaf6SINs .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7aaf6SINs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7aaf6SINs .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7aaf6SINs .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7aaf6SINs .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7aafSrq7R {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7aafSrq7R .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7aafSrq7R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7aafSrq7R .row {
  justify-content: center;
}
.cid-v7aafSrq7R .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7aafSrq7R .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7aafSrq7R .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7aafSrq7R .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7aafSrq7R .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7aafSrq7R .mbr-text_1,
.cid-v7aafSrq7R .mbr-text_2,
.cid-v7aafSrq7R .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7aafSrq7R .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aafSrq7R .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7aafSrq7R .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7aafSrq7R .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7aafSrq7R .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aafSrq7R .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7aafSrq7R .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7aafSrq7R .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aafSrq7R .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7aafSrq7R .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7aafSrq7R .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7aafSrq7R .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7aafSrq7R .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3c0OhX8Io {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3c0OhX8Io .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3c0OhX8Io .section-text {
  padding: 2rem 0;
}
.cid-s3c0OhX8Io .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3c0OhX8Io .inner-container {
    width: 100% !important;
  }
}
.cid-s3c0Oj3IWU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3c0Oj3IWU .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3c0Oj3IWU .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3c0Oj3IWU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3c0Oj3IWU .inner-container {
    width: 100% !important;
  }
}
.cid-s3c0OjqmF2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3c0OjqmF2 .item {
  padding-bottom: 2rem;
}
.cid-s3c0OjqmF2 .item-wrapper {
  height: 100%;
}
.cid-s3c0OjqmF2 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3c0OjqmF2 .carousel-control,
.cid-s3c0OjqmF2 .close {
  background: #1b1b1b;
}
.cid-s3c0OjqmF2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3c0OjqmF2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3c0OjqmF2 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3c0OjqmF2 .close::before {
  content: '\e91a';
}
.cid-s3c0OjqmF2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3c0OjqmF2 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3c0OjqmF2 .carousel-inner > .active {
  display: block;
}
.cid-s3c0OjqmF2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3c0OjqmF2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3c0OjqmF2 .carousel-control .icon-next,
.cid-s3c0OjqmF2 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3c0OjqmF2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3c0OjqmF2 .carousel-control,
  .cid-s3c0OjqmF2 .carousel-indicators,
  .cid-s3c0OjqmF2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3c0OjqmF2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3c0OjqmF2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3c0OjqmF2 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3c0OjqmF2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3c0OjqmF2 .carousel-indicators {
    display: none;
  }
}
.cid-s3c0OjqmF2 .carousel-indicators .active,
.cid-s3c0OjqmF2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3c0OjqmF2 .carousel-indicators .active {
  background: #fff;
}
.cid-s3c0OjqmF2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3c0OjqmF2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3c0OjqmF2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3c0OjqmF2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3c0OjqmF2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3c0OjqmF2 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3c0OjqmF2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3c0OjqmF2 .carousel {
  width: 100%;
}
.cid-s3c0OjqmF2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3c0OjqmF2 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3c0OjqmF2 .modal.fade .modal-dialog,
.cid-s3c0OjqmF2 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3c0OjqmF2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3c0OjqmF2 a {
  display: block;
}
.cid-s3c0OjqmF2 a.img {
  pointer-events: none;
}
.cid-s3c0OjqmF2 H3 {
  color: #232323;
}
.cid-s3c0OkbDAw {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3c0OkbDAw .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3c0OkbDAw div.b {
  padding-top: 2rem;
}
.cid-s3c2CQh03u {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3c2CQh03u .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3c2CQh03u .section-text {
  padding: 2rem 0;
}
.cid-s3c2CQh03u .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3c2CQh03u .inner-container {
    width: 100% !important;
  }
}
.cid-v7aapO5t2g {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7aapO5t2g .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7aapO5t2g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7aapO5t2g .row {
  justify-content: center;
}
.cid-v7aapO5t2g .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7aapO5t2g .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7aapO5t2g .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7aapO5t2g .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7aapO5t2g .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7aapO5t2g .mbr-text_1,
.cid-v7aapO5t2g .mbr-text_2,
.cid-v7aapO5t2g .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7aapO5t2g .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aapO5t2g .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7aapO5t2g .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7aapO5t2g .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7aapO5t2g .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aapO5t2g .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7aapO5t2g .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7aapO5t2g .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aapO5t2g .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7aapO5t2g .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7aapO5t2g .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7aapO5t2g .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7aapO5t2g .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7aarc5Oy6 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7aarc5Oy6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7aarc5Oy6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7aarc5Oy6 .row {
  justify-content: center;
}
.cid-v7aarc5Oy6 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7aarc5Oy6 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7aarc5Oy6 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7aarc5Oy6 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7aarc5Oy6 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7aarc5Oy6 .mbr-text_1,
.cid-v7aarc5Oy6 .mbr-text_2,
.cid-v7aarc5Oy6 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7aarc5Oy6 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aarc5Oy6 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7aarc5Oy6 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7aarc5Oy6 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7aarc5Oy6 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aarc5Oy6 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7aarc5Oy6 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7aarc5Oy6 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aarc5Oy6 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7aarc5Oy6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7aarc5Oy6 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7aarc5Oy6 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7aarc5Oy6 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3c2CQEYw7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3c2CQEYw7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3c2CQEYw7 .section-text {
  padding: 2rem 0;
}
.cid-s3c2CQEYw7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3c2CQEYw7 .inner-container {
    width: 100% !important;
  }
}
.cid-s3c2CR3RwI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3c2CR3RwI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3c2CR3RwI .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3c2CR3RwI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3c2CR3RwI .inner-container {
    width: 100% !important;
  }
}
.cid-si6J2yqEsj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-si6J8ZUM35 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-si6J8ZUM35 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-si6J8ZUM35 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-si6J8ZUM35 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-si6J8ZUM35 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-si6J8ZUM35 .row > .row {
  display: block;
}
.cid-si6J8ZUM35 .mbr-gallery-item {
  width: 100%;
}
.cid-si6J8ZUM35 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-si6J8ZUM35 .mbr-gallery-item > div {
  position: relative;
}
.cid-si6J8ZUM35 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-si6J8ZUM35 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-si6J8ZUM35 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-si6J8ZUM35 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-si6J62KkbN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-si6J7ioEWu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-si6J7ioEWu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-si6J7ioEWu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-si6J7ioEWu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-si6J7ioEWu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-si6J7ioEWu .row > .row {
  display: block;
}
.cid-si6J7ioEWu .mbr-gallery-item {
  width: 100%;
}
.cid-si6J7ioEWu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-si6J7ioEWu .mbr-gallery-item > div {
  position: relative;
}
.cid-si6J7ioEWu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-si6J7ioEWu .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-si6J7ioEWu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-si6J7ioEWu .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-si6JfX5Tje {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-si6Jhi0NXu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-si6Jhi0NXu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-si6Jhi0NXu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-si6Jhi0NXu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-si6Jhi0NXu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-si6Jhi0NXu .row > .row {
  display: block;
}
.cid-si6Jhi0NXu .mbr-gallery-item {
  width: 100%;
}
.cid-si6Jhi0NXu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-si6Jhi0NXu .mbr-gallery-item > div {
  position: relative;
}
.cid-si6Jhi0NXu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-si6Jhi0NXu .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-si6Jhi0NXu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-si6Jhi0NXu .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-si6JjLrdJQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-si6JkCPqjM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-si6JkCPqjM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-si6JkCPqjM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-si6JkCPqjM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-si6JkCPqjM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-si6JkCPqjM .row > .row {
  display: block;
}
.cid-si6JkCPqjM .mbr-gallery-item {
  width: 100%;
}
.cid-si6JkCPqjM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-si6JkCPqjM .mbr-gallery-item > div {
  position: relative;
}
.cid-si6JkCPqjM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-si6JkCPqjM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-si6JkCPqjM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-si6JkCPqjM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-si6JoMqZoz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-si6JquW7Dk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-si6JquW7Dk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-si6JquW7Dk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-si6JquW7Dk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-si6JquW7Dk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-si6JquW7Dk .row > .row {
  display: block;
}
.cid-si6JquW7Dk .mbr-gallery-item {
  width: 100%;
}
.cid-si6JquW7Dk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-si6JquW7Dk .mbr-gallery-item > div {
  position: relative;
}
.cid-si6JquW7Dk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-si6JquW7Dk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-si6JquW7Dk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-si6JquW7Dk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-si6UxruitP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-si6UypBvEt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-si6UypBvEt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-si6UypBvEt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-si6UypBvEt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-si6UypBvEt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-si6UypBvEt .row > .row {
  display: block;
}
.cid-si6UypBvEt .mbr-gallery-item {
  width: 100%;
}
.cid-si6UypBvEt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-si6UypBvEt .mbr-gallery-item > div {
  position: relative;
}
.cid-si6UypBvEt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-si6UypBvEt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-si6UypBvEt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-si6UypBvEt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-si6KX4pkHI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-si6KYmNt5R {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-si6KYmNt5R .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-si6KYmNt5R .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-si6KYmNt5R .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-si6KYmNt5R .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-si6KYmNt5R .row > .row {
  display: block;
}
.cid-si6KYmNt5R .mbr-gallery-item {
  width: 100%;
}
.cid-si6KYmNt5R .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-si6KYmNt5R .mbr-gallery-item > div {
  position: relative;
}
.cid-si6KYmNt5R .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-si6KYmNt5R .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-si6KYmNt5R .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-si6KYmNt5R .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-si6KZL9wbo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-si6L0C5pZ4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-si6L0C5pZ4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-si6L0C5pZ4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-si6L0C5pZ4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-si6L0C5pZ4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-si6L0C5pZ4 .row > .row {
  display: block;
}
.cid-si6L0C5pZ4 .mbr-gallery-item {
  width: 100%;
}
.cid-si6L0C5pZ4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-si6L0C5pZ4 .mbr-gallery-item > div {
  position: relative;
}
.cid-si6L0C5pZ4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-si6L0C5pZ4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-si6L0C5pZ4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-si6L0C5pZ4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3c2CSGd7n {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3c2CSGd7n .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3c2CSGd7n div.b {
  padding-top: 2rem;
}
.cid-s3cGbog0Qd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3cGbog0Qd .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3cGbog0Qd .section-text {
  padding: 2rem 0;
}
.cid-s3cGbog0Qd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3cGbog0Qd .inner-container {
    width: 100% !important;
  }
}
.cid-v72iRtKH2V {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v72iRtKH2V .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72iRtKH2V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72iRtKH2V .row {
  justify-content: center;
}
.cid-v72iRtKH2V .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72iRtKH2V .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72iRtKH2V .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72iRtKH2V .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72iRtKH2V .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72iRtKH2V .mbr-text_1,
.cid-v72iRtKH2V .mbr-text_2,
.cid-v72iRtKH2V .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72iRtKH2V .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72iRtKH2V .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72iRtKH2V .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72iRtKH2V .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72iRtKH2V .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72iRtKH2V .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72iRtKH2V .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72iRtKH2V .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72iRtKH2V .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72iRtKH2V .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72iRtKH2V .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72iRtKH2V .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72iRtKH2V .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72iSpWj50 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v72iSpWj50 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72iSpWj50 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72iSpWj50 .row {
  justify-content: center;
}
.cid-v72iSpWj50 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72iSpWj50 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72iSpWj50 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72iSpWj50 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72iSpWj50 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72iSpWj50 .mbr-text_1,
.cid-v72iSpWj50 .mbr-text_2,
.cid-v72iSpWj50 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72iSpWj50 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72iSpWj50 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72iSpWj50 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72iSpWj50 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72iSpWj50 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72iSpWj50 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72iSpWj50 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72iSpWj50 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72iSpWj50 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72iSpWj50 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72iSpWj50 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72iSpWj50 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72iSpWj50 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3cGbot4eT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3cGbot4eT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3cGbot4eT .section-text {
  padding: 2rem 0;
}
.cid-s3cGbot4eT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3cGbot4eT .inner-container {
    width: 100% !important;
  }
}
.cid-s3cGboOHVg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3cGboOHVg .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3cGboOHVg .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3cGboOHVg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3cGboOHVg .inner-container {
    width: 100% !important;
  }
}
.cid-s9253u8hwj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s9253u8hwj .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s9253u8hwj .section-text {
  padding: 2rem 0;
}
.cid-s9253u8hwj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s9253u8hwj .inner-container {
    width: 100% !important;
  }
}
.cid-sic5nQehWZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sic5pwdYJc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sic5pwdYJc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sic5pwdYJc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sic5pwdYJc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sic5pwdYJc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sic5pwdYJc .row > .row {
  display: block;
}
.cid-sic5pwdYJc .mbr-gallery-item {
  width: 100%;
}
.cid-sic5pwdYJc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sic5pwdYJc .mbr-gallery-item > div {
  position: relative;
}
.cid-sic5pwdYJc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sic5pwdYJc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sic5pwdYJc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sic5pwdYJc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sic5qZvCfL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sic5sPSWUm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sic5sPSWUm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sic5sPSWUm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sic5sPSWUm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sic5sPSWUm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sic5sPSWUm .row > .row {
  display: block;
}
.cid-sic5sPSWUm .mbr-gallery-item {
  width: 100%;
}
.cid-sic5sPSWUm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sic5sPSWUm .mbr-gallery-item > div {
  position: relative;
}
.cid-sic5sPSWUm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sic5sPSWUm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sic5sPSWUm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sic5sPSWUm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sic5upUsRF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sic5vDmzFU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sic5vDmzFU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sic5vDmzFU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sic5vDmzFU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sic5vDmzFU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sic5vDmzFU .row > .row {
  display: block;
}
.cid-sic5vDmzFU .mbr-gallery-item {
  width: 100%;
}
.cid-sic5vDmzFU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sic5vDmzFU .mbr-gallery-item > div {
  position: relative;
}
.cid-sic5vDmzFU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sic5vDmzFU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sic5vDmzFU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sic5vDmzFU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sicfqjX4ZZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sicftnhqGm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sicftnhqGm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sicftnhqGm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sicftnhqGm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sicftnhqGm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sicftnhqGm .row > .row {
  display: block;
}
.cid-sicftnhqGm .mbr-gallery-item {
  width: 100%;
}
.cid-sicftnhqGm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sicftnhqGm .mbr-gallery-item > div {
  position: relative;
}
.cid-sicftnhqGm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sicftnhqGm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sicftnhqGm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sicftnhqGm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sic5zoJs8n {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sic5APkAMm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sic5APkAMm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sic5APkAMm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sic5APkAMm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sic5APkAMm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sic5APkAMm .row > .row {
  display: block;
}
.cid-sic5APkAMm .mbr-gallery-item {
  width: 100%;
}
.cid-sic5APkAMm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sic5APkAMm .mbr-gallery-item > div {
  position: relative;
}
.cid-sic5APkAMm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sic5APkAMm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sic5APkAMm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sic5APkAMm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sic5CtfYq4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sic5DjH3Qt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sic5DjH3Qt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sic5DjH3Qt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sic5DjH3Qt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sic5DjH3Qt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sic5DjH3Qt .row > .row {
  display: block;
}
.cid-sic5DjH3Qt .mbr-gallery-item {
  width: 100%;
}
.cid-sic5DjH3Qt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sic5DjH3Qt .mbr-gallery-item > div {
  position: relative;
}
.cid-sic5DjH3Qt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sic5DjH3Qt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sic5DjH3Qt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sic5DjH3Qt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3cGbpN8MO {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3cGbpN8MO .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3cGbpN8MO div.b {
  padding-top: 2rem;
}
.cid-s3cHmRkusI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3cHmRkusI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3cHmRkusI .section-text {
  padding: 2rem 0;
}
.cid-s3cHmRkusI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3cHmRkusI .inner-container {
    width: 100% !important;
  }
}
.cid-v7acoiaffU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7acoiaffU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7acoiaffU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7acoiaffU .row {
  justify-content: center;
}
.cid-v7acoiaffU .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7acoiaffU .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7acoiaffU .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7acoiaffU .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7acoiaffU .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7acoiaffU .mbr-text_1,
.cid-v7acoiaffU .mbr-text_2,
.cid-v7acoiaffU .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7acoiaffU .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7acoiaffU .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7acoiaffU .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7acoiaffU .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7acoiaffU .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7acoiaffU .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7acoiaffU .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7acoiaffU .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7acoiaffU .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7acoiaffU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7acoiaffU .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7acoiaffU .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7acoiaffU .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7acp6qP73 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7acp6qP73 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7acp6qP73 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7acp6qP73 .row {
  justify-content: center;
}
.cid-v7acp6qP73 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7acp6qP73 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7acp6qP73 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7acp6qP73 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7acp6qP73 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7acp6qP73 .mbr-text_1,
.cid-v7acp6qP73 .mbr-text_2,
.cid-v7acp6qP73 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7acp6qP73 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7acp6qP73 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7acp6qP73 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7acp6qP73 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7acp6qP73 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7acp6qP73 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7acp6qP73 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7acp6qP73 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7acp6qP73 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7acp6qP73 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7acp6qP73 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7acp6qP73 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7acp6qP73 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3cHmREsfr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3cHmREsfr .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3cHmREsfr .section-text {
  padding: 2rem 0;
}
.cid-s3cHmREsfr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3cHmREsfr .inner-container {
    width: 100% !important;
  }
}
.cid-s3cHmS1pQf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3cHmS1pQf .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3cHmS1pQf .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3cHmS1pQf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3cHmS1pQf .inner-container {
    width: 100% !important;
  }
}
.cid-s3cMtnpLox {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3eddea;
}
.cid-s3cMtnpLox .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3cMtnpLox .section-text {
  padding: 2rem 0;
}
.cid-s3cMtnpLox .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3cMtnpLox .inner-container {
    width: 100% !important;
  }
}
.cid-sie9RIoeXe {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-siejfXd1dJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-siejh0T9qB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-siejh0T9qB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siejh0T9qB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siejh0T9qB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siejh0T9qB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siejh0T9qB .row > .row {
  display: block;
}
.cid-siejh0T9qB .mbr-gallery-item {
  width: 100%;
}
.cid-siejh0T9qB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siejh0T9qB .mbr-gallery-item > div {
  position: relative;
}
.cid-siejh0T9qB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siejh0T9qB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siejh0T9qB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siejh0T9qB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sie9wZlhKf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sie9y1JIWB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sie9y1JIWB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sie9y1JIWB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sie9y1JIWB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sie9y1JIWB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sie9y1JIWB .row > .row {
  display: block;
}
.cid-sie9y1JIWB .mbr-gallery-item {
  width: 100%;
}
.cid-sie9y1JIWB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sie9y1JIWB .mbr-gallery-item > div {
  position: relative;
}
.cid-sie9y1JIWB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sie9y1JIWB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sie9y1JIWB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sie9y1JIWB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siee3av5DM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-siefBuPAAS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-siefBuPAAS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siefBuPAAS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siefBuPAAS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siefBuPAAS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siefBuPAAS .row > .row {
  display: block;
}
.cid-siefBuPAAS .mbr-gallery-item {
  width: 100%;
}
.cid-siefBuPAAS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siefBuPAAS .mbr-gallery-item > div {
  position: relative;
}
.cid-siefBuPAAS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siefBuPAAS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siefBuPAAS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siefBuPAAS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sie9DDMcgy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sie9yISB5d {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sie9yISB5d .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sie9yISB5d .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sie9yISB5d .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sie9yISB5d .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sie9yISB5d .row > .row {
  display: block;
}
.cid-sie9yISB5d .mbr-gallery-item {
  width: 100%;
}
.cid-sie9yISB5d .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sie9yISB5d .mbr-gallery-item > div {
  position: relative;
}
.cid-sie9yISB5d .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sie9yISB5d .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sie9yISB5d .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sie9yISB5d .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sie9BeeaUc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-siee4xyao1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-siee4xyao1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siee4xyao1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siee4xyao1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siee4xyao1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siee4xyao1 .row > .row {
  display: block;
}
.cid-siee4xyao1 .mbr-gallery-item {
  width: 100%;
}
.cid-siee4xyao1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siee4xyao1 .mbr-gallery-item > div {
  position: relative;
}
.cid-siee4xyao1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siee4xyao1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siee4xyao1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siee4xyao1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3cHmSJBRi {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3cHmSJBRi .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3cHmSJBRi div.b {
  padding-top: 2rem;
}
.cid-s3cK4Ii9BB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3cK4Ii9BB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3cK4Ii9BB .section-text {
  padding: 2rem 0;
}
.cid-s3cK4Ii9BB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3cK4Ii9BB .inner-container {
    width: 100% !important;
  }
}
.cid-v7acGbcZ9z {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7acGbcZ9z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7acGbcZ9z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7acGbcZ9z .row {
  justify-content: center;
}
.cid-v7acGbcZ9z .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7acGbcZ9z .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7acGbcZ9z .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7acGbcZ9z .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7acGbcZ9z .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7acGbcZ9z .mbr-text_1,
.cid-v7acGbcZ9z .mbr-text_2,
.cid-v7acGbcZ9z .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7acGbcZ9z .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7acGbcZ9z .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7acGbcZ9z .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7acGbcZ9z .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7acGbcZ9z .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7acGbcZ9z .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7acGbcZ9z .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7acGbcZ9z .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7acGbcZ9z .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7acGbcZ9z .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7acGbcZ9z .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7acGbcZ9z .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7acGbcZ9z .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7acHcjb1k {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7acHcjb1k .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7acHcjb1k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7acHcjb1k .row {
  justify-content: center;
}
.cid-v7acHcjb1k .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7acHcjb1k .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7acHcjb1k .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7acHcjb1k .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7acHcjb1k .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7acHcjb1k .mbr-text_1,
.cid-v7acHcjb1k .mbr-text_2,
.cid-v7acHcjb1k .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7acHcjb1k .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7acHcjb1k .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7acHcjb1k .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7acHcjb1k .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7acHcjb1k .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7acHcjb1k .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7acHcjb1k .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7acHcjb1k .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7acHcjb1k .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7acHcjb1k .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7acHcjb1k .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7acHcjb1k .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7acHcjb1k .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3cK4IJ4UR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3cK4IJ4UR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3cK4IJ4UR .section-text {
  padding: 2rem 0;
}
.cid-s3cK4IJ4UR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3cK4IJ4UR .inner-container {
    width: 100% !important;
  }
}
.cid-s3cK4J7YBv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3cK4J7YBv .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3cK4J7YBv .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3cK4J7YBv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3cK4J7YBv .inner-container {
    width: 100% !important;
  }
}
.cid-s3cK4Jf4M1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3cK4Jf4M1 .item {
  padding-bottom: 2rem;
}
.cid-s3cK4Jf4M1 .item-wrapper {
  height: 100%;
}
.cid-s3cK4Jf4M1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3cK4Jf4M1 .carousel-control,
.cid-s3cK4Jf4M1 .close {
  background: #1b1b1b;
}
.cid-s3cK4Jf4M1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3cK4Jf4M1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3cK4Jf4M1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3cK4Jf4M1 .close::before {
  content: '\e91a';
}
.cid-s3cK4Jf4M1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3cK4Jf4M1 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3cK4Jf4M1 .carousel-inner > .active {
  display: block;
}
.cid-s3cK4Jf4M1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3cK4Jf4M1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3cK4Jf4M1 .carousel-control .icon-next,
.cid-s3cK4Jf4M1 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3cK4Jf4M1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3cK4Jf4M1 .carousel-control,
  .cid-s3cK4Jf4M1 .carousel-indicators,
  .cid-s3cK4Jf4M1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3cK4Jf4M1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3cK4Jf4M1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3cK4Jf4M1 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3cK4Jf4M1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3cK4Jf4M1 .carousel-indicators {
    display: none;
  }
}
.cid-s3cK4Jf4M1 .carousel-indicators .active,
.cid-s3cK4Jf4M1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3cK4Jf4M1 .carousel-indicators .active {
  background: #fff;
}
.cid-s3cK4Jf4M1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3cK4Jf4M1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3cK4Jf4M1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3cK4Jf4M1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3cK4Jf4M1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3cK4Jf4M1 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3cK4Jf4M1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3cK4Jf4M1 .carousel {
  width: 100%;
}
.cid-s3cK4Jf4M1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3cK4Jf4M1 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3cK4Jf4M1 .modal.fade .modal-dialog,
.cid-s3cK4Jf4M1 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3cK4Jf4M1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3cK4Jf4M1 a {
  display: block;
}
.cid-s3cK4Jf4M1 a.img {
  pointer-events: none;
}
.cid-s3cK4Jf4M1 H3 {
  color: #232323;
}
.cid-s3cK4JHjde {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3cK4JHjde .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3cK4JHjde div.b {
  padding-top: 2rem;
}
.cid-s3cKsWt2nM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3cKsWt2nM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3cKsWt2nM .section-text {
  padding: 2rem 0;
}
.cid-s3cKsWt2nM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3cKsWt2nM .inner-container {
    width: 100% !important;
  }
}
.cid-v7fciRRdnY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7fciRRdnY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fciRRdnY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fciRRdnY .row {
  justify-content: center;
}
.cid-v7fciRRdnY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fciRRdnY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fciRRdnY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fciRRdnY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fciRRdnY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fciRRdnY .mbr-text_1,
.cid-v7fciRRdnY .mbr-text_2,
.cid-v7fciRRdnY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fciRRdnY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fciRRdnY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fciRRdnY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fciRRdnY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fciRRdnY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fciRRdnY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fciRRdnY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fciRRdnY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fciRRdnY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fciRRdnY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fciRRdnY .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fciRRdnY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fciRRdnY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7fck1jpGU {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7fck1jpGU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fck1jpGU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fck1jpGU .row {
  justify-content: center;
}
.cid-v7fck1jpGU .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fck1jpGU .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fck1jpGU .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fck1jpGU .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fck1jpGU .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fck1jpGU .mbr-text_1,
.cid-v7fck1jpGU .mbr-text_2,
.cid-v7fck1jpGU .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fck1jpGU .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fck1jpGU .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fck1jpGU .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7fck1jpGU .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7fck1jpGU .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fck1jpGU .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fck1jpGU .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fck1jpGU .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fck1jpGU .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7fck1jpGU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fck1jpGU .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fck1jpGU .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fck1jpGU .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3cKsWSwKK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3cKsWSwKK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3cKsWSwKK .section-text {
  padding: 2rem 0;
}
.cid-s3cKsWSwKK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3cKsWSwKK .inner-container {
    width: 100% !important;
  }
}
.cid-s3cKsXfiVB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3cKsXfiVB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3cKsXfiVB .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3cKsXfiVB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3cKsXfiVB .inner-container {
    width: 100% !important;
  }
}
.cid-s3cKsXnvRG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3cKsXnvRG .item {
  padding-bottom: 2rem;
}
.cid-s3cKsXnvRG .item-wrapper {
  height: 100%;
}
.cid-s3cKsXnvRG .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3cKsXnvRG .carousel-control,
.cid-s3cKsXnvRG .close {
  background: #1b1b1b;
}
.cid-s3cKsXnvRG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3cKsXnvRG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3cKsXnvRG .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3cKsXnvRG .close::before {
  content: '\e91a';
}
.cid-s3cKsXnvRG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3cKsXnvRG .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3cKsXnvRG .carousel-inner > .active {
  display: block;
}
.cid-s3cKsXnvRG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3cKsXnvRG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3cKsXnvRG .carousel-control .icon-next,
.cid-s3cKsXnvRG .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3cKsXnvRG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3cKsXnvRG .carousel-control,
  .cid-s3cKsXnvRG .carousel-indicators,
  .cid-s3cKsXnvRG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3cKsXnvRG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3cKsXnvRG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3cKsXnvRG .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3cKsXnvRG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3cKsXnvRG .carousel-indicators {
    display: none;
  }
}
.cid-s3cKsXnvRG .carousel-indicators .active,
.cid-s3cKsXnvRG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3cKsXnvRG .carousel-indicators .active {
  background: #fff;
}
.cid-s3cKsXnvRG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3cKsXnvRG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3cKsXnvRG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3cKsXnvRG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3cKsXnvRG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3cKsXnvRG .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3cKsXnvRG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3cKsXnvRG .carousel {
  width: 100%;
}
.cid-s3cKsXnvRG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3cKsXnvRG .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3cKsXnvRG .modal.fade .modal-dialog,
.cid-s3cKsXnvRG .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3cKsXnvRG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3cKsXnvRG a {
  display: block;
}
.cid-s3cKsXnvRG a.img {
  pointer-events: none;
}
.cid-s3cKsXnvRG H3 {
  color: #232323;
}
.cid-s3cKsXPJPK {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3cKsXPJPK .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3cKsXPJPK div.b {
  padding-top: 2rem;
}
.cid-s3eqhF7xpH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3eqhF7xpH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3eqhF7xpH .section-text {
  padding: 2rem 0;
}
.cid-s3eqhF7xpH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3eqhF7xpH .inner-container {
    width: 100% !important;
  }
}
.cid-v72haoaRuK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v72haoaRuK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72haoaRuK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72haoaRuK .row {
  justify-content: center;
}
.cid-v72haoaRuK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72haoaRuK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72haoaRuK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72haoaRuK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72haoaRuK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72haoaRuK .mbr-text_1,
.cid-v72haoaRuK .mbr-text_2,
.cid-v72haoaRuK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72haoaRuK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72haoaRuK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72haoaRuK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72haoaRuK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72haoaRuK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72haoaRuK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72haoaRuK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72haoaRuK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72haoaRuK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72haoaRuK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72haoaRuK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72haoaRuK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72haoaRuK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72hbjBmvD {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v72hbjBmvD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72hbjBmvD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72hbjBmvD .row {
  justify-content: center;
}
.cid-v72hbjBmvD .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72hbjBmvD .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72hbjBmvD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72hbjBmvD .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72hbjBmvD .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72hbjBmvD .mbr-text_1,
.cid-v72hbjBmvD .mbr-text_2,
.cid-v72hbjBmvD .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72hbjBmvD .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72hbjBmvD .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72hbjBmvD .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72hbjBmvD .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72hbjBmvD .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72hbjBmvD .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72hbjBmvD .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72hbjBmvD .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72hbjBmvD .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72hbjBmvD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72hbjBmvD .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72hbjBmvD .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72hbjBmvD .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3eqhFlRVP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3eqhFlRVP .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3eqhFlRVP .section-text {
  padding: 2rem 0;
}
.cid-s3eqhFlRVP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3eqhFlRVP .inner-container {
    width: 100% !important;
  }
}
.cid-s3eqhFGepy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3eqhFGepy .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3eqhFGepy .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3eqhFGepy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3eqhFGepy .inner-container {
    width: 100% !important;
  }
}
.cid-sgXVXKzL2O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgXVZaAXcx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgXVZaAXcx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgXVZaAXcx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgXVZaAXcx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgXVZaAXcx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgXVZaAXcx .row > .row {
  display: block;
}
.cid-sgXVZaAXcx .mbr-gallery-item {
  width: 100%;
}
.cid-sgXVZaAXcx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgXVZaAXcx .mbr-gallery-item > div {
  position: relative;
}
.cid-sgXVZaAXcx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgXVZaAXcx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgXVZaAXcx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgXVZaAXcx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sgXW0Fbk3T {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgXXCVhf76 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgXXCVhf76 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgXXCVhf76 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgXXCVhf76 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgXXCVhf76 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgXXCVhf76 .row > .row {
  display: block;
}
.cid-sgXXCVhf76 .mbr-gallery-item {
  width: 100%;
}
.cid-sgXXCVhf76 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgXXCVhf76 .mbr-gallery-item > div {
  position: relative;
}
.cid-sgXXCVhf76 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgXXCVhf76 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgXXCVhf76 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgXXCVhf76 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3eqhGsy44 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3eqhGsy44 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3eqhGsy44 div.b {
  padding-top: 2rem;
}
.cid-s3eqEQuWg7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3eqEQuWg7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3eqEQuWg7 .section-text {
  padding: 2rem 0;
}
.cid-s3eqEQuWg7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3eqEQuWg7 .inner-container {
    width: 100% !important;
  }
}
.cid-v7a9kGjP5n {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7a9kGjP5n .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7a9kGjP5n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7a9kGjP5n .row {
  justify-content: center;
}
.cid-v7a9kGjP5n .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7a9kGjP5n .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7a9kGjP5n .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7a9kGjP5n .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7a9kGjP5n .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7a9kGjP5n .mbr-text_1,
.cid-v7a9kGjP5n .mbr-text_2,
.cid-v7a9kGjP5n .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7a9kGjP5n .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a9kGjP5n .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7a9kGjP5n .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a9kGjP5n .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a9kGjP5n .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a9kGjP5n .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7a9kGjP5n .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7a9kGjP5n .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a9kGjP5n .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7a9kGjP5n .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7a9kGjP5n .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7a9kGjP5n .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7a9kGjP5n .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7a9lyEA9q {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7a9lyEA9q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7a9lyEA9q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7a9lyEA9q .row {
  justify-content: center;
}
.cid-v7a9lyEA9q .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7a9lyEA9q .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7a9lyEA9q .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7a9lyEA9q .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7a9lyEA9q .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7a9lyEA9q .mbr-text_1,
.cid-v7a9lyEA9q .mbr-text_2,
.cid-v7a9lyEA9q .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7a9lyEA9q .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a9lyEA9q .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7a9lyEA9q .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a9lyEA9q .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a9lyEA9q .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a9lyEA9q .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7a9lyEA9q .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7a9lyEA9q .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7a9lyEA9q .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7a9lyEA9q .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7a9lyEA9q .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7a9lyEA9q .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7a9lyEA9q .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3eqEQX9z2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3eqEQX9z2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3eqEQX9z2 .section-text {
  padding: 2rem 0;
}
.cid-s3eqEQX9z2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3eqEQX9z2 .inner-container {
    width: 100% !important;
  }
}
.cid-s3eqERkKBj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3eqERkKBj .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3eqERkKBj .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3eqERkKBj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3eqERkKBj .inner-container {
    width: 100% !important;
  }
}
.cid-s3eqERtkll {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3eqERtkll .item {
  padding-bottom: 2rem;
}
.cid-s3eqERtkll .item-wrapper {
  height: 100%;
}
.cid-s3eqERtkll .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3eqERtkll .carousel-control,
.cid-s3eqERtkll .close {
  background: #1b1b1b;
}
.cid-s3eqERtkll .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3eqERtkll .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3eqERtkll .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3eqERtkll .close::before {
  content: '\e91a';
}
.cid-s3eqERtkll .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3eqERtkll .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3eqERtkll .carousel-inner > .active {
  display: block;
}
.cid-s3eqERtkll .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3eqERtkll .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3eqERtkll .carousel-control .icon-next,
.cid-s3eqERtkll .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3eqERtkll .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3eqERtkll .carousel-control,
  .cid-s3eqERtkll .carousel-indicators,
  .cid-s3eqERtkll .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3eqERtkll .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3eqERtkll .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3eqERtkll .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3eqERtkll .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3eqERtkll .carousel-indicators {
    display: none;
  }
}
.cid-s3eqERtkll .carousel-indicators .active,
.cid-s3eqERtkll .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3eqERtkll .carousel-indicators .active {
  background: #fff;
}
.cid-s3eqERtkll .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3eqERtkll .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3eqERtkll .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3eqERtkll .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3eqERtkll .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3eqERtkll .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3eqERtkll .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3eqERtkll .carousel {
  width: 100%;
}
.cid-s3eqERtkll .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3eqERtkll .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3eqERtkll .modal.fade .modal-dialog,
.cid-s3eqERtkll .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3eqERtkll .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3eqERtkll a {
  display: block;
}
.cid-s3eqERtkll a.img {
  pointer-events: none;
}
.cid-s8t3WzOZ8P {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s8t3WzOZ8P .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s8t3WzOZ8P .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s8t3WzOZ8P .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s8t3WzOZ8P .inner-container {
    width: 100% !important;
  }
}
.cid-s8t2KO09Si {
  background: #3eddea;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-s8t2KO09Si .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-s8t2KO09Si .video-block {
    width: 100% !important;
  }
}
.cid-s8t3yq2olW {
  background: #3eddea;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-s8t3yq2olW .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-s8t3yq2olW .video-block {
    width: 100% !important;
  }
}
.cid-s3eqES6PQj {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3eqES6PQj .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3eqES6PQj div.b {
  padding-top: 2rem;
}
.cid-s3inoM7Os0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3inoM7Os0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3inoM7Os0 .section-text {
  padding: 2rem 0;
}
.cid-s3inoM7Os0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3inoM7Os0 .inner-container {
    width: 100% !important;
  }
}
.cid-v7abQS62qq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7abQS62qq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7abQS62qq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7abQS62qq .row {
  justify-content: center;
}
.cid-v7abQS62qq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7abQS62qq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7abQS62qq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7abQS62qq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7abQS62qq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7abQS62qq .mbr-text_1,
.cid-v7abQS62qq .mbr-text_2,
.cid-v7abQS62qq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7abQS62qq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7abQS62qq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7abQS62qq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7abQS62qq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7abQS62qq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7abQS62qq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7abQS62qq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7abQS62qq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7abQS62qq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7abQS62qq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7abQS62qq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7abQS62qq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7abQS62qq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7abRJ5FJu {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7abRJ5FJu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7abRJ5FJu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7abRJ5FJu .row {
  justify-content: center;
}
.cid-v7abRJ5FJu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7abRJ5FJu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7abRJ5FJu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7abRJ5FJu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7abRJ5FJu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7abRJ5FJu .mbr-text_1,
.cid-v7abRJ5FJu .mbr-text_2,
.cid-v7abRJ5FJu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7abRJ5FJu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7abRJ5FJu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7abRJ5FJu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7abRJ5FJu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7abRJ5FJu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7abRJ5FJu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7abRJ5FJu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7abRJ5FJu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7abRJ5FJu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7abRJ5FJu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7abRJ5FJu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7abRJ5FJu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7abRJ5FJu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3inoMz621 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3inoMz621 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3inoMz621 .section-text {
  padding: 2rem 0;
}
.cid-s3inoMz621 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3inoMz621 .inner-container {
    width: 100% !important;
  }
}
.cid-s3inoMSdBh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3inoMSdBh .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3inoMSdBh .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3inoMSdBh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3inoMSdBh .inner-container {
    width: 100% !important;
  }
}
.cid-shD0gjLGQt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-shD0hKbBHI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shD0hKbBHI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shD0hKbBHI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shD0hKbBHI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shD0hKbBHI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shD0hKbBHI .row > .row {
  display: block;
}
.cid-shD0hKbBHI .mbr-gallery-item {
  width: 100%;
}
.cid-shD0hKbBHI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shD0hKbBHI .mbr-gallery-item > div {
  position: relative;
}
.cid-shD0hKbBHI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shD0hKbBHI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shD0hKbBHI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shD0hKbBHI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3inoNMYcI {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3inoNMYcI .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3inoNMYcI div.b {
  padding-top: 2rem;
}
.cid-s3ioDE7T47 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3ioDE7T47 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3ioDE7T47 .section-text {
  padding: 2rem 0;
}
.cid-s3ioDE7T47 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3ioDE7T47 .inner-container {
    width: 100% !important;
  }
}
.cid-svFQBKc7Rr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFQBKc7Rr .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFQBKc7Rr .section-text {
  padding: 2rem 0;
}
.cid-svFQBKc7Rr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFQBKc7Rr .inner-container {
    width: 100% !important;
  }
}
.cid-s3ioDEwMfR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3ioDEwMfR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3ioDEwMfR .section-text {
  padding: 2rem 0;
}
.cid-s3ioDEwMfR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3ioDEwMfR .inner-container {
    width: 100% !important;
  }
}
.cid-s3ioDEVwOj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3ioDEVwOj .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3ioDEVwOj .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3ioDEVwOj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3ioDEVwOj .inner-container {
    width: 100% !important;
  }
}
.cid-shD2KknJMW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-shD2Lnw60p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shD2Lnw60p .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shD2Lnw60p .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shD2Lnw60p .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shD2Lnw60p .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shD2Lnw60p .row > .row {
  display: block;
}
.cid-shD2Lnw60p .mbr-gallery-item {
  width: 100%;
}
.cid-shD2Lnw60p .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shD2Lnw60p .mbr-gallery-item > div {
  position: relative;
}
.cid-shD2Lnw60p .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shD2Lnw60p .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shD2Lnw60p .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shD2Lnw60p .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3ioDG7Fwc {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3ioDG7Fwc .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3ioDG7Fwc div.b {
  padding-top: 2rem;
}
.cid-s3ipYnG9zv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3ipYnG9zv .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3ipYnG9zv .section-text {
  padding: 2rem 0;
}
.cid-s3ipYnG9zv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3ipYnG9zv .inner-container {
    width: 100% !important;
  }
}
.cid-s3ipYnWbJM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3ipYnWbJM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3ipYnWbJM .section-text {
  padding: 2rem 0;
}
.cid-s3ipYnWbJM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3ipYnWbJM .inner-container {
    width: 100% !important;
  }
}
.cid-v9Xb1ulrsP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9Xb1ulrsP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Xb1ulrsP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Xb1ulrsP .row {
  justify-content: center;
}
.cid-v9Xb1ulrsP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9Xb1ulrsP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9Xb1ulrsP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9Xb1ulrsP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9Xb1ulrsP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9Xb1ulrsP .mbr-text_1,
.cid-v9Xb1ulrsP .mbr-text_2,
.cid-v9Xb1ulrsP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9Xb1ulrsP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xb1ulrsP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xb1ulrsP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xb1ulrsP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xb1ulrsP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xb1ulrsP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xb1ulrsP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9Xb1ulrsP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xb1ulrsP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xb1ulrsP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9Xb1ulrsP .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9Xb1ulrsP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9Xb1ulrsP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9Xb2yo2c2 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9Xb2yo2c2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Xb2yo2c2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Xb2yo2c2 .row {
  justify-content: center;
}
.cid-v9Xb2yo2c2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9Xb2yo2c2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9Xb2yo2c2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9Xb2yo2c2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9Xb2yo2c2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9Xb2yo2c2 .mbr-text_1,
.cid-v9Xb2yo2c2 .mbr-text_2,
.cid-v9Xb2yo2c2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9Xb2yo2c2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xb2yo2c2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xb2yo2c2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xb2yo2c2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xb2yo2c2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xb2yo2c2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xb2yo2c2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9Xb2yo2c2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xb2yo2c2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xb2yo2c2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9Xb2yo2c2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9Xb2yo2c2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9Xb2yo2c2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3ipYohT8b {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3ipYohT8b .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3ipYohT8b .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3ipYohT8b .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3ipYohT8b .inner-container {
    width: 100% !important;
  }
}
.cid-u0onAlbkMG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-u0onAlbkMG .mbr-section-subtitle {
  color: #767676;
}
.cid-u0onAlbkMG .container-table {
  margin: 0 auto;
}
.cid-u0onAlbkMG .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u0onAlbkMG .dataTables_wrapper {
  display: block;
}
.cid-u0onAlbkMG .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u0onAlbkMG .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u0onAlbkMG table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-u0onAlbkMG table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u0onAlbkMG table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-u0onAlbkMG table td {
  border-top: 1px solid #232323;
}
.cid-u0onAlbkMG table.table {
  background: #3eddea;
}
.cid-u0onAlbkMG .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u0onAlbkMG .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u0onAlbkMG .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u0onAlbkMG .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u0onAlbkMG .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u0onAlbkMG .dataTables_filter {
    text-align: center;
  }
  .cid-u0onAlbkMG .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u0onAlbkMG .mbr-section-title {
  color: #ff3366;
}
.cid-u0onAlbkMG .head-item {
  text-align: center;
  color: #232323;
}
.cid-u0onAlbkMG .body-item {
  text-align: center;
}
.cid-s3iqIPJbnZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iqIPJbnZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iqIPJbnZ .section-text {
  padding: 2rem 0;
}
.cid-s3iqIPJbnZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iqIPJbnZ .inner-container {
    width: 100% !important;
  }
}
.cid-s3iqIPJbnZ .section-text DIV {
  text-align: center;
}
.cid-sh3C7qfBqG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh3C8GjW3d {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh3C8GjW3d .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh3C8GjW3d .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh3C8GjW3d .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh3C8GjW3d .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh3C8GjW3d .row > .row {
  display: block;
}
.cid-sh3C8GjW3d .mbr-gallery-item {
  width: 100%;
}
.cid-sh3C8GjW3d .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh3C8GjW3d .mbr-gallery-item > div {
  position: relative;
}
.cid-sh3C8GjW3d .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh3C8GjW3d .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh3C8GjW3d .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh3C8GjW3d .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sh3CZaqlwH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh3D138ocM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh3D138ocM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh3D138ocM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh3D138ocM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh3D138ocM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh3D138ocM .row > .row {
  display: block;
}
.cid-sh3D138ocM .mbr-gallery-item {
  width: 100%;
}
.cid-sh3D138ocM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh3D138ocM .mbr-gallery-item > div {
  position: relative;
}
.cid-sh3D138ocM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh3D138ocM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh3D138ocM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh3D138ocM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3ipYoWr27 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3ipYoWr27 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3ipYoWr27 div.b {
  padding-top: 2rem;
}
.cid-s3it83LzOY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3it83LzOY .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3it83LzOY .section-text {
  padding: 2rem 0;
}
.cid-s3it83LzOY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3it83LzOY .inner-container {
    width: 100% !important;
  }
}
.cid-s3it8472q6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3it8472q6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3it8472q6 .section-text {
  padding: 2rem 0;
}
.cid-s3it8472q6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3it8472q6 .inner-container {
    width: 100% !important;
  }
}
.cid-v9Xb9ZR3bX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9Xb9ZR3bX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Xb9ZR3bX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Xb9ZR3bX .row {
  justify-content: center;
}
.cid-v9Xb9ZR3bX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9Xb9ZR3bX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9Xb9ZR3bX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9Xb9ZR3bX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9Xb9ZR3bX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9Xb9ZR3bX .mbr-text_1,
.cid-v9Xb9ZR3bX .mbr-text_2,
.cid-v9Xb9ZR3bX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9Xb9ZR3bX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xb9ZR3bX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xb9ZR3bX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xb9ZR3bX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xb9ZR3bX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xb9ZR3bX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xb9ZR3bX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9Xb9ZR3bX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xb9ZR3bX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xb9ZR3bX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9Xb9ZR3bX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9Xb9ZR3bX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9Xb9ZR3bX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9Xbbz97g8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9Xbbz97g8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Xbbz97g8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Xbbz97g8 .row {
  justify-content: center;
}
.cid-v9Xbbz97g8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9Xbbz97g8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9Xbbz97g8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9Xbbz97g8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9Xbbz97g8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9Xbbz97g8 .mbr-text_1,
.cid-v9Xbbz97g8 .mbr-text_2,
.cid-v9Xbbz97g8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9Xbbz97g8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xbbz97g8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xbbz97g8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xbbz97g8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xbbz97g8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xbbz97g8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xbbz97g8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9Xbbz97g8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xbbz97g8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xbbz97g8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9Xbbz97g8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9Xbbz97g8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9Xbbz97g8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-u0oojT8n1P {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-u0oojT8n1P .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u0oojT8n1P .section-text {
  padding: 2rem 0;
}
.cid-u0oojT8n1P .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u0oojT8n1P .inner-container {
    width: 100% !important;
  }
}
.cid-s3it84p0pL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3it84p0pL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3it84p0pL .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3it84p0pL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3it84p0pL .inner-container {
    width: 100% !important;
  }
}
.cid-v9Xbd34VhK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9Xbd34VhK .mbr-section-subtitle {
  color: #767676;
}
.cid-v9Xbd34VhK .container-table {
  margin: 0 auto;
}
.cid-v9Xbd34VhK .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9Xbd34VhK .dataTables_wrapper {
  display: block;
}
.cid-v9Xbd34VhK .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9Xbd34VhK .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9Xbd34VhK table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9Xbd34VhK table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9Xbd34VhK table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9Xbd34VhK table td {
  border-top: 1px solid #232323;
}
.cid-v9Xbd34VhK table.table {
  background: #3eddea;
}
.cid-v9Xbd34VhK .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9Xbd34VhK .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9Xbd34VhK .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9Xbd34VhK .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9Xbd34VhK .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9Xbd34VhK .dataTables_filter {
    text-align: center;
  }
  .cid-v9Xbd34VhK .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9Xbd34VhK .mbr-section-title {
  color: #ff3366;
}
.cid-v9Xbd34VhK .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9Xbd34VhK .body-item {
  text-align: center;
}
.cid-s3it84zej1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3it84zej1 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3it84zej1 .section-text {
  padding: 2rem 0;
}
.cid-s3it84zej1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3it84zej1 .inner-container {
    width: 100% !important;
  }
}
.cid-s3it84zej1 .section-text DIV {
  text-align: center;
}
.cid-sh3DYu9h6U {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-shKZU5dr0s {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shKZU5dr0s .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-shKZU5dr0s .section-text {
  padding: 2rem 0;
}
.cid-shKZU5dr0s .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-shKZU5dr0s .inner-container {
    width: 100% !important;
  }
}
.cid-shKZU5dr0s .section-text DIV {
  text-align: center;
}
.cid-shL0pFETup {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-shL0pFETup .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-shL0pFETup .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-shL0pFETup .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-shL0pFETup .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-shL0pFETup .row > .row {
  display: block;
}
.cid-shL0pFETup .mbr-gallery-item {
  width: 100%;
}
.cid-shL0pFETup .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-shL0pFETup .mbr-gallery-item > div {
  position: relative;
}
.cid-shL0pFETup .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-shL0pFETup .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-shL0pFETup .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-shL0pFETup .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3it85mQpr {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3it85mQpr .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3it85mQpr div.b {
  padding-top: 2rem;
}
.cid-s3iud5CjNz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iud5CjNz .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iud5CjNz .section-text {
  padding: 2rem 0;
}
.cid-s3iud5CjNz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iud5CjNz .inner-container {
    width: 100% !important;
  }
}
.cid-s3iud5SXdQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iud5SXdQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iud5SXdQ .section-text {
  padding: 2rem 0;
}
.cid-s3iud5SXdQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iud5SXdQ .inner-container {
    width: 100% !important;
  }
}
.cid-v9XbmCTvp6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9XbmCTvp6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XbmCTvp6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XbmCTvp6 .row {
  justify-content: center;
}
.cid-v9XbmCTvp6 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XbmCTvp6 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XbmCTvp6 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XbmCTvp6 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XbmCTvp6 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XbmCTvp6 .mbr-text_1,
.cid-v9XbmCTvp6 .mbr-text_2,
.cid-v9XbmCTvp6 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XbmCTvp6 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbmCTvp6 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbmCTvp6 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XbmCTvp6 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XbmCTvp6 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbmCTvp6 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbmCTvp6 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XbmCTvp6 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbmCTvp6 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XbmCTvp6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XbmCTvp6 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XbmCTvp6 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XbmCTvp6 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9XbnFw3zc {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9XbnFw3zc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XbnFw3zc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XbnFw3zc .row {
  justify-content: center;
}
.cid-v9XbnFw3zc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XbnFw3zc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XbnFw3zc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XbnFw3zc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XbnFw3zc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XbnFw3zc .mbr-text_1,
.cid-v9XbnFw3zc .mbr-text_2,
.cid-v9XbnFw3zc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XbnFw3zc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbnFw3zc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbnFw3zc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XbnFw3zc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XbnFw3zc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbnFw3zc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbnFw3zc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XbnFw3zc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbnFw3zc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XbnFw3zc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XbnFw3zc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XbnFw3zc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XbnFw3zc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3iud6sXW6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iud6sXW6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iud6sXW6 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3iud6sXW6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iud6sXW6 .inner-container {
    width: 100% !important;
  }
}
.cid-v9Xbp7hUqS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9Xbp7hUqS .mbr-section-subtitle {
  color: #767676;
}
.cid-v9Xbp7hUqS .container-table {
  margin: 0 auto;
}
.cid-v9Xbp7hUqS .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9Xbp7hUqS .dataTables_wrapper {
  display: block;
}
.cid-v9Xbp7hUqS .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9Xbp7hUqS .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9Xbp7hUqS table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9Xbp7hUqS table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9Xbp7hUqS table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9Xbp7hUqS table td {
  border-top: 1px solid #232323;
}
.cid-v9Xbp7hUqS table.table {
  background: #3eddea;
}
.cid-v9Xbp7hUqS .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9Xbp7hUqS .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9Xbp7hUqS .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9Xbp7hUqS .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9Xbp7hUqS .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9Xbp7hUqS .dataTables_filter {
    text-align: center;
  }
  .cid-v9Xbp7hUqS .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9Xbp7hUqS .mbr-section-title {
  color: #ff3366;
}
.cid-v9Xbp7hUqS .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9Xbp7hUqS .body-item {
  text-align: center;
}
.cid-s3iud6DuRj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iud6DuRj .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iud6DuRj .section-text {
  padding: 2rem 0;
}
.cid-s3iud6DuRj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iud6DuRj .inner-container {
    width: 100% !important;
  }
}
.cid-s3iud6DuRj .section-text DIV {
  text-align: center;
}
.cid-sh3EPXB3Cu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh3ERfc52j {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh3ERfc52j .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh3ERfc52j .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh3ERfc52j .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh3ERfc52j .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh3ERfc52j .row > .row {
  display: block;
}
.cid-sh3ERfc52j .mbr-gallery-item {
  width: 100%;
}
.cid-sh3ERfc52j .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh3ERfc52j .mbr-gallery-item > div {
  position: relative;
}
.cid-sh3ERfc52j .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh3ERfc52j .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh3ERfc52j .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh3ERfc52j .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sh3FFyqeUy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh3FGXGTOf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh3FGXGTOf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh3FGXGTOf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh3FGXGTOf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh3FGXGTOf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh3FGXGTOf .row > .row {
  display: block;
}
.cid-sh3FGXGTOf .mbr-gallery-item {
  width: 100%;
}
.cid-sh3FGXGTOf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh3FGXGTOf .mbr-gallery-item > div {
  position: relative;
}
.cid-sh3FGXGTOf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh3FGXGTOf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh3FGXGTOf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh3FGXGTOf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4xxdIlcZU {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s4xxdIlcZU .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4xxdIlcZU div.b {
  padding-top: 2rem;
}
.cid-s4xxdIlcZU H5 {
  color: #232323;
}
.cid-s4xxdIlcZU H2 {
  color: #232323;
}
.cid-s3iumzzth6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iumzzth6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iumzzth6 .section-text {
  padding: 2rem 0;
}
.cid-s3iumzzth6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iumzzth6 .inner-container {
    width: 100% !important;
  }
}
.cid-s3iumzZqz8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iumzZqz8 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iumzZqz8 .section-text {
  padding: 2rem 0;
}
.cid-s3iumzZqz8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iumzZqz8 .inner-container {
    width: 100% !important;
  }
}
.cid-v9XbyoB8bh {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9XbyoB8bh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XbyoB8bh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XbyoB8bh .row {
  justify-content: center;
}
.cid-v9XbyoB8bh .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XbyoB8bh .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XbyoB8bh .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XbyoB8bh .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XbyoB8bh .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XbyoB8bh .mbr-text_1,
.cid-v9XbyoB8bh .mbr-text_2,
.cid-v9XbyoB8bh .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XbyoB8bh .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbyoB8bh .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbyoB8bh .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XbyoB8bh .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XbyoB8bh .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbyoB8bh .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbyoB8bh .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XbyoB8bh .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbyoB8bh .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XbyoB8bh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XbyoB8bh .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XbyoB8bh .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XbyoB8bh .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9XbznB9gG {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9XbznB9gG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XbznB9gG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XbznB9gG .row {
  justify-content: center;
}
.cid-v9XbznB9gG .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XbznB9gG .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XbznB9gG .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XbznB9gG .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XbznB9gG .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XbznB9gG .mbr-text_1,
.cid-v9XbznB9gG .mbr-text_2,
.cid-v9XbznB9gG .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XbznB9gG .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbznB9gG .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbznB9gG .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XbznB9gG .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XbznB9gG .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbznB9gG .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbznB9gG .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XbznB9gG .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbznB9gG .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XbznB9gG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XbznB9gG .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XbznB9gG .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XbznB9gG .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3iumAhRNs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iumAhRNs .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iumAhRNs .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3iumAhRNs .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iumAhRNs .inner-container {
    width: 100% !important;
  }
}
.cid-v9XbACzi6b {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9XbACzi6b .mbr-section-subtitle {
  color: #767676;
}
.cid-v9XbACzi6b .container-table {
  margin: 0 auto;
}
.cid-v9XbACzi6b .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9XbACzi6b .dataTables_wrapper {
  display: block;
}
.cid-v9XbACzi6b .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9XbACzi6b .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9XbACzi6b table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9XbACzi6b table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9XbACzi6b table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9XbACzi6b table td {
  border-top: 1px solid #232323;
}
.cid-v9XbACzi6b table.table {
  background: #3eddea;
}
.cid-v9XbACzi6b .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9XbACzi6b .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9XbACzi6b .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9XbACzi6b .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9XbACzi6b .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9XbACzi6b .dataTables_filter {
    text-align: center;
  }
  .cid-v9XbACzi6b .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9XbACzi6b .mbr-section-title {
  color: #ff3366;
}
.cid-v9XbACzi6b .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9XbACzi6b .body-item {
  text-align: center;
}
.cid-s3iumArsqM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iumArsqM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iumArsqM .section-text {
  padding: 2rem 0;
}
.cid-s3iumArsqM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iumArsqM .inner-container {
    width: 100% !important;
  }
}
.cid-s3iumArsqM .section-text DIV {
  text-align: center;
}
.cid-s3iumAz38T {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iumAz38T .item {
  padding-bottom: 2rem;
}
.cid-s3iumAz38T .item-wrapper {
  height: 100%;
}
.cid-s3iumAz38T .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3iumAz38T .carousel-control,
.cid-s3iumAz38T .close {
  background: #1b1b1b;
}
.cid-s3iumAz38T .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3iumAz38T .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3iumAz38T .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3iumAz38T .close::before {
  content: '\e91a';
}
.cid-s3iumAz38T .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3iumAz38T .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3iumAz38T .carousel-inner > .active {
  display: block;
}
.cid-s3iumAz38T .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3iumAz38T .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3iumAz38T .carousel-control .icon-next,
.cid-s3iumAz38T .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3iumAz38T .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3iumAz38T .carousel-control,
  .cid-s3iumAz38T .carousel-indicators,
  .cid-s3iumAz38T .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3iumAz38T .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3iumAz38T .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3iumAz38T .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3iumAz38T .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3iumAz38T .carousel-indicators {
    display: none;
  }
}
.cid-s3iumAz38T .carousel-indicators .active,
.cid-s3iumAz38T .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3iumAz38T .carousel-indicators .active {
  background: #fff;
}
.cid-s3iumAz38T .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3iumAz38T .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3iumAz38T .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3iumAz38T .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3iumAz38T .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3iumAz38T .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3iumAz38T .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3iumAz38T .carousel {
  width: 100%;
}
.cid-s3iumAz38T .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3iumAz38T .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3iumAz38T .modal.fade .modal-dialog,
.cid-s3iumAz38T .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3iumAz38T .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3iumAz38T a {
  display: block;
}
.cid-s3iumAz38T a.img {
  pointer-events: none;
}
.cid-s3iumAYKEs {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3iumAYKEs .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3iumAYKEs div.b {
  padding-top: 2rem;
}
.cid-s3iusUqZ97 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iusUqZ97 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iusUqZ97 .section-text {
  padding: 2rem 0;
}
.cid-s3iusUqZ97 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iusUqZ97 .inner-container {
    width: 100% !important;
  }
}
.cid-s3iusUSrNj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iusUSrNj .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iusUSrNj .section-text {
  padding: 2rem 0;
}
.cid-s3iusUSrNj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iusUSrNj .inner-container {
    width: 100% !important;
  }
}
.cid-v9XbKEYxzG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9XbKEYxzG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XbKEYxzG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XbKEYxzG .row {
  justify-content: center;
}
.cid-v9XbKEYxzG .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XbKEYxzG .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XbKEYxzG .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XbKEYxzG .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XbKEYxzG .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XbKEYxzG .mbr-text_1,
.cid-v9XbKEYxzG .mbr-text_2,
.cid-v9XbKEYxzG .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XbKEYxzG .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbKEYxzG .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbKEYxzG .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XbKEYxzG .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XbKEYxzG .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbKEYxzG .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbKEYxzG .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XbKEYxzG .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbKEYxzG .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XbKEYxzG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XbKEYxzG .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XbKEYxzG .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XbKEYxzG .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9XbLxhfzf {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9XbLxhfzf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XbLxhfzf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XbLxhfzf .row {
  justify-content: center;
}
.cid-v9XbLxhfzf .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XbLxhfzf .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XbLxhfzf .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XbLxhfzf .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XbLxhfzf .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XbLxhfzf .mbr-text_1,
.cid-v9XbLxhfzf .mbr-text_2,
.cid-v9XbLxhfzf .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XbLxhfzf .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbLxhfzf .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbLxhfzf .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XbLxhfzf .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XbLxhfzf .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbLxhfzf .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbLxhfzf .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XbLxhfzf .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbLxhfzf .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XbLxhfzf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XbLxhfzf .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XbLxhfzf .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XbLxhfzf .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3iusVp63n {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iusVp63n .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iusVp63n .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3iusVp63n .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iusVp63n .inner-container {
    width: 100% !important;
  }
}
.cid-v9XbMGxLme {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9XbMGxLme .mbr-section-subtitle {
  color: #767676;
}
.cid-v9XbMGxLme .container-table {
  margin: 0 auto;
}
.cid-v9XbMGxLme .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9XbMGxLme .dataTables_wrapper {
  display: block;
}
.cid-v9XbMGxLme .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9XbMGxLme .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9XbMGxLme table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9XbMGxLme table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9XbMGxLme table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9XbMGxLme table td {
  border-top: 1px solid #232323;
}
.cid-v9XbMGxLme table.table {
  background: #3eddea;
}
.cid-v9XbMGxLme .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9XbMGxLme .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9XbMGxLme .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9XbMGxLme .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9XbMGxLme .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9XbMGxLme .dataTables_filter {
    text-align: center;
  }
  .cid-v9XbMGxLme .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9XbMGxLme .mbr-section-title {
  color: #ff3366;
}
.cid-v9XbMGxLme .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9XbMGxLme .body-item {
  text-align: center;
}
.cid-s3iusVzw0q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iusVzw0q .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iusVzw0q .section-text {
  padding: 2rem 0;
}
.cid-s3iusVzw0q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iusVzw0q .inner-container {
    width: 100% !important;
  }
}
.cid-s3iusVzw0q .section-text DIV {
  text-align: center;
}
.cid-sh3GslilRs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh3GvK6xb5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh3GvK6xb5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh3GvK6xb5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh3GvK6xb5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh3GvK6xb5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh3GvK6xb5 .row > .row {
  display: block;
}
.cid-sh3GvK6xb5 .mbr-gallery-item {
  width: 100%;
}
.cid-sh3GvK6xb5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh3GvK6xb5 .mbr-gallery-item > div {
  position: relative;
}
.cid-sh3GvK6xb5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh3GvK6xb5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh3GvK6xb5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh3GvK6xb5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sh3GtO5hDH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh3GuUH1i0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh3GuUH1i0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh3GuUH1i0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh3GuUH1i0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh3GuUH1i0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh3GuUH1i0 .row > .row {
  display: block;
}
.cid-sh3GuUH1i0 .mbr-gallery-item {
  width: 100%;
}
.cid-sh3GuUH1i0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh3GuUH1i0 .mbr-gallery-item > div {
  position: relative;
}
.cid-sh3GuUH1i0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh3GuUH1i0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh3GuUH1i0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh3GuUH1i0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3iusW76fy {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3iusW76fy .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3iusW76fy div.b {
  padding-top: 2rem;
}
.cid-s3iuwvowHk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuwvowHk .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuwvowHk .section-text {
  padding: 2rem 0;
}
.cid-s3iuwvowHk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuwvowHk .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuwvCtHn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuwvCtHn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuwvCtHn .section-text {
  padding: 2rem 0;
}
.cid-s3iuwvCtHn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuwvCtHn .inner-container {
    width: 100% !important;
  }
}
.cid-v9Xc4R8hNl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9Xc4R8hNl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Xc4R8hNl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Xc4R8hNl .row {
  justify-content: center;
}
.cid-v9Xc4R8hNl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9Xc4R8hNl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9Xc4R8hNl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9Xc4R8hNl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9Xc4R8hNl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9Xc4R8hNl .mbr-text_1,
.cid-v9Xc4R8hNl .mbr-text_2,
.cid-v9Xc4R8hNl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9Xc4R8hNl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xc4R8hNl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xc4R8hNl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xc4R8hNl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xc4R8hNl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xc4R8hNl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xc4R8hNl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9Xc4R8hNl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xc4R8hNl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xc4R8hNl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9Xc4R8hNl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9Xc4R8hNl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9Xc4R8hNl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9Xc5T39rX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9Xc5T39rX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Xc5T39rX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Xc5T39rX .row {
  justify-content: center;
}
.cid-v9Xc5T39rX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9Xc5T39rX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9Xc5T39rX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9Xc5T39rX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9Xc5T39rX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9Xc5T39rX .mbr-text_1,
.cid-v9Xc5T39rX .mbr-text_2,
.cid-v9Xc5T39rX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9Xc5T39rX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xc5T39rX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xc5T39rX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xc5T39rX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xc5T39rX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xc5T39rX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xc5T39rX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9Xc5T39rX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xc5T39rX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xc5T39rX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9Xc5T39rX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9Xc5T39rX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9Xc5T39rX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3iuwvZdY2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuwvZdY2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuwvZdY2 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3iuwvZdY2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuwvZdY2 .inner-container {
    width: 100% !important;
  }
}
.cid-v9Xc708HYr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9Xc708HYr .mbr-section-subtitle {
  color: #767676;
}
.cid-v9Xc708HYr .container-table {
  margin: 0 auto;
}
.cid-v9Xc708HYr .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9Xc708HYr .dataTables_wrapper {
  display: block;
}
.cid-v9Xc708HYr .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9Xc708HYr .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9Xc708HYr table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9Xc708HYr table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9Xc708HYr table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9Xc708HYr table td {
  border-top: 1px solid #232323;
}
.cid-v9Xc708HYr table.table {
  background: #3eddea;
}
.cid-v9Xc708HYr .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9Xc708HYr .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9Xc708HYr .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9Xc708HYr .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9Xc708HYr .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9Xc708HYr .dataTables_filter {
    text-align: center;
  }
  .cid-v9Xc708HYr .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9Xc708HYr .mbr-section-title {
  color: #ff3366;
}
.cid-v9Xc708HYr .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9Xc708HYr .body-item {
  text-align: center;
}
.cid-s3iuww722e {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuww722e .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuww722e .section-text {
  padding: 2rem 0;
}
.cid-s3iuww722e .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuww722e .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuww722e .section-text DIV {
  text-align: center;
}
.cid-suQgFoMuMf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-suQiXT9Tml {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-suQiXT9Tml .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suQiXT9Tml .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suQiXT9Tml .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suQiXT9Tml .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suQiXT9Tml .row > .row {
  display: block;
}
.cid-suQiXT9Tml .mbr-gallery-item {
  width: 100%;
}
.cid-suQiXT9Tml .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suQiXT9Tml .mbr-gallery-item > div {
  position: relative;
}
.cid-suQiXT9Tml .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suQiXT9Tml .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suQiXT9Tml .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suQiXT9Tml .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-suQjotwhrl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-suQjt5Xkdw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-suQjt5Xkdw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suQjt5Xkdw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suQjt5Xkdw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suQjt5Xkdw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suQjt5Xkdw .row > .row {
  display: block;
}
.cid-suQjt5Xkdw .mbr-gallery-item {
  width: 100%;
}
.cid-suQjt5Xkdw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suQjt5Xkdw .mbr-gallery-item > div {
  position: relative;
}
.cid-suQjt5Xkdw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suQjt5Xkdw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suQjt5Xkdw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suQjt5Xkdw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-suQjpgMZWF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-suQjtTdjOB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-suQjtTdjOB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suQjtTdjOB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suQjtTdjOB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suQjtTdjOB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suQjtTdjOB .row > .row {
  display: block;
}
.cid-suQjtTdjOB .mbr-gallery-item {
  width: 100%;
}
.cid-suQjtTdjOB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suQjtTdjOB .mbr-gallery-item > div {
  position: relative;
}
.cid-suQjtTdjOB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suQjtTdjOB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suQjtTdjOB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suQjtTdjOB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3iuwwU5sG {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3iuwwU5sG .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3iuwwU5sG div.b {
  padding-top: 2rem;
}
.cid-s3iuAf1mLY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuAf1mLY .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuAf1mLY .section-text {
  padding: 2rem 0;
}
.cid-s3iuAf1mLY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuAf1mLY .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuAfkUuE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuAfkUuE .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuAfkUuE .section-text {
  padding: 2rem 0;
}
.cid-s3iuAfkUuE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuAfkUuE .inner-container {
    width: 100% !important;
  }
}
.cid-v9XbUOX4yd {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9XbUOX4yd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XbUOX4yd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XbUOX4yd .row {
  justify-content: center;
}
.cid-v9XbUOX4yd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XbUOX4yd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XbUOX4yd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XbUOX4yd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XbUOX4yd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XbUOX4yd .mbr-text_1,
.cid-v9XbUOX4yd .mbr-text_2,
.cid-v9XbUOX4yd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XbUOX4yd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbUOX4yd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbUOX4yd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XbUOX4yd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XbUOX4yd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbUOX4yd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbUOX4yd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XbUOX4yd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbUOX4yd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XbUOX4yd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XbUOX4yd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XbUOX4yd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XbUOX4yd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9XbVVPgzr {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9XbVVPgzr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XbVVPgzr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XbVVPgzr .row {
  justify-content: center;
}
.cid-v9XbVVPgzr .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XbVVPgzr .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XbVVPgzr .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XbVVPgzr .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XbVVPgzr .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XbVVPgzr .mbr-text_1,
.cid-v9XbVVPgzr .mbr-text_2,
.cid-v9XbVVPgzr .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XbVVPgzr .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbVVPgzr .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbVVPgzr .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XbVVPgzr .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XbVVPgzr .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbVVPgzr .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XbVVPgzr .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XbVVPgzr .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XbVVPgzr .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XbVVPgzr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XbVVPgzr .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XbVVPgzr .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XbVVPgzr .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3iuAfJBnX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuAfJBnX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuAfJBnX .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3iuAfJBnX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuAfJBnX .inner-container {
    width: 100% !important;
  }
}
.cid-v9XbWUVjLG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9XbWUVjLG .mbr-section-subtitle {
  color: #767676;
}
.cid-v9XbWUVjLG .container-table {
  margin: 0 auto;
}
.cid-v9XbWUVjLG .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9XbWUVjLG .dataTables_wrapper {
  display: block;
}
.cid-v9XbWUVjLG .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9XbWUVjLG .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9XbWUVjLG table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9XbWUVjLG table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9XbWUVjLG table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9XbWUVjLG table td {
  border-top: 1px solid #232323;
}
.cid-v9XbWUVjLG table.table {
  background: #3eddea;
}
.cid-v9XbWUVjLG .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9XbWUVjLG .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9XbWUVjLG .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9XbWUVjLG .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9XbWUVjLG .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9XbWUVjLG .dataTables_filter {
    text-align: center;
  }
  .cid-v9XbWUVjLG .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9XbWUVjLG .mbr-section-title {
  color: #ff3366;
}
.cid-v9XbWUVjLG .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9XbWUVjLG .body-item {
  text-align: center;
}
.cid-s3iuAfTYUI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuAfTYUI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuAfTYUI .section-text {
  padding: 2rem 0;
}
.cid-s3iuAfTYUI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuAfTYUI .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuAfTYUI .section-text DIV {
  text-align: center;
}
.cid-suQm5nxCxH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-suQm6HigXK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-suQm6HigXK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suQm6HigXK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suQm6HigXK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suQm6HigXK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suQm6HigXK .row > .row {
  display: block;
}
.cid-suQm6HigXK .mbr-gallery-item {
  width: 100%;
}
.cid-suQm6HigXK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suQm6HigXK .mbr-gallery-item > div {
  position: relative;
}
.cid-suQm6HigXK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suQm6HigXK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suQm6HigXK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suQm6HigXK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3iuAgmkkk {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3iuAgmkkk .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3iuAgmkkk div.b {
  padding-top: 2rem;
}
.cid-s3iuDq9sfO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuDq9sfO .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuDq9sfO .section-text {
  padding: 2rem 0;
}
.cid-s3iuDq9sfO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuDq9sfO .inner-container {
    width: 100% !important;
  }
}
.cid-v9XcibIaS4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9XcibIaS4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XcibIaS4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XcibIaS4 .row {
  justify-content: center;
}
.cid-v9XcibIaS4 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XcibIaS4 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XcibIaS4 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XcibIaS4 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XcibIaS4 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XcibIaS4 .mbr-text_1,
.cid-v9XcibIaS4 .mbr-text_2,
.cid-v9XcibIaS4 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XcibIaS4 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcibIaS4 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XcibIaS4 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XcibIaS4 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XcibIaS4 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcibIaS4 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XcibIaS4 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XcibIaS4 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcibIaS4 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XcibIaS4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XcibIaS4 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XcibIaS4 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XcibIaS4 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9XcjtquEI {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9XcjtquEI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XcjtquEI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XcjtquEI .row {
  justify-content: center;
}
.cid-v9XcjtquEI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XcjtquEI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XcjtquEI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XcjtquEI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XcjtquEI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XcjtquEI .mbr-text_1,
.cid-v9XcjtquEI .mbr-text_2,
.cid-v9XcjtquEI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XcjtquEI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcjtquEI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XcjtquEI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XcjtquEI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XcjtquEI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcjtquEI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XcjtquEI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XcjtquEI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcjtquEI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XcjtquEI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XcjtquEI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XcjtquEI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XcjtquEI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3iuDqBb7U {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuDqBb7U .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuDqBb7U .section-text {
  padding: 2rem 0;
}
.cid-s3iuDqBb7U .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuDqBb7U .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuDqWXOr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuDqWXOr .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuDqWXOr .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3iuDqWXOr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuDqWXOr .inner-container {
    width: 100% !important;
  }
}
.cid-v9Xckr8RDP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9Xckr8RDP .mbr-section-subtitle {
  color: #767676;
}
.cid-v9Xckr8RDP .container-table {
  margin: 0 auto;
}
.cid-v9Xckr8RDP .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9Xckr8RDP .dataTables_wrapper {
  display: block;
}
.cid-v9Xckr8RDP .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9Xckr8RDP .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9Xckr8RDP table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9Xckr8RDP table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9Xckr8RDP table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9Xckr8RDP table td {
  border-top: 1px solid #232323;
}
.cid-v9Xckr8RDP table.table {
  background: #3eddea;
}
.cid-v9Xckr8RDP .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9Xckr8RDP .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9Xckr8RDP .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9Xckr8RDP .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9Xckr8RDP .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9Xckr8RDP .dataTables_filter {
    text-align: center;
  }
  .cid-v9Xckr8RDP .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9Xckr8RDP .mbr-section-title {
  color: #ff3366;
}
.cid-v9Xckr8RDP .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9Xckr8RDP .body-item {
  text-align: center;
}
.cid-s3iuDr4DPm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuDr4DPm .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuDr4DPm .section-text {
  padding: 2rem 0;
}
.cid-s3iuDr4DPm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuDr4DPm .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuDr4DPm .section-text DIV {
  text-align: center;
}
.cid-s3iuDrdaeh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuDrdaeh .item {
  padding-bottom: 2rem;
}
.cid-s3iuDrdaeh .item-wrapper {
  height: 100%;
}
.cid-s3iuDrdaeh .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3iuDrdaeh .carousel-control,
.cid-s3iuDrdaeh .close {
  background: #1b1b1b;
}
.cid-s3iuDrdaeh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3iuDrdaeh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3iuDrdaeh .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3iuDrdaeh .close::before {
  content: '\e91a';
}
.cid-s3iuDrdaeh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3iuDrdaeh .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3iuDrdaeh .carousel-inner > .active {
  display: block;
}
.cid-s3iuDrdaeh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3iuDrdaeh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3iuDrdaeh .carousel-control .icon-next,
.cid-s3iuDrdaeh .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3iuDrdaeh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3iuDrdaeh .carousel-control,
  .cid-s3iuDrdaeh .carousel-indicators,
  .cid-s3iuDrdaeh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3iuDrdaeh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3iuDrdaeh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3iuDrdaeh .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3iuDrdaeh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3iuDrdaeh .carousel-indicators {
    display: none;
  }
}
.cid-s3iuDrdaeh .carousel-indicators .active,
.cid-s3iuDrdaeh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3iuDrdaeh .carousel-indicators .active {
  background: #fff;
}
.cid-s3iuDrdaeh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3iuDrdaeh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3iuDrdaeh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3iuDrdaeh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3iuDrdaeh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3iuDrdaeh .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3iuDrdaeh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3iuDrdaeh .carousel {
  width: 100%;
}
.cid-s3iuDrdaeh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3iuDrdaeh .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3iuDrdaeh .modal.fade .modal-dialog,
.cid-s3iuDrdaeh .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3iuDrdaeh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3iuDrdaeh a {
  display: block;
}
.cid-s3iuDrdaeh a.img {
  pointer-events: none;
}
.cid-s3iuDryhRP {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3iuDryhRP .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3iuDryhRP div.b {
  padding-top: 2rem;
}
.cid-s3iuGPq00l {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuGPq00l .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuGPq00l .section-text {
  padding: 2rem 0;
}
.cid-s3iuGPq00l .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuGPq00l .inner-container {
    width: 100% !important;
  }
}
.cid-v9XcyFW8gF {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9XcyFW8gF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XcyFW8gF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XcyFW8gF .row {
  justify-content: center;
}
.cid-v9XcyFW8gF .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XcyFW8gF .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XcyFW8gF .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XcyFW8gF .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XcyFW8gF .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XcyFW8gF .mbr-text_1,
.cid-v9XcyFW8gF .mbr-text_2,
.cid-v9XcyFW8gF .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XcyFW8gF .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcyFW8gF .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XcyFW8gF .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XcyFW8gF .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XcyFW8gF .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcyFW8gF .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XcyFW8gF .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XcyFW8gF .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcyFW8gF .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XcyFW8gF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XcyFW8gF .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XcyFW8gF .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XcyFW8gF .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9XczKsBWO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9XczKsBWO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XczKsBWO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XczKsBWO .row {
  justify-content: center;
}
.cid-v9XczKsBWO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XczKsBWO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XczKsBWO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XczKsBWO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XczKsBWO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XczKsBWO .mbr-text_1,
.cid-v9XczKsBWO .mbr-text_2,
.cid-v9XczKsBWO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XczKsBWO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XczKsBWO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XczKsBWO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XczKsBWO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XczKsBWO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XczKsBWO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XczKsBWO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XczKsBWO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XczKsBWO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XczKsBWO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XczKsBWO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XczKsBWO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XczKsBWO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3iuGPHWK6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuGPHWK6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuGPHWK6 .section-text {
  padding: 2rem 0;
}
.cid-s3iuGPHWK6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuGPHWK6 .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuGQ8CrT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuGQ8CrT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuGQ8CrT .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3iuGQ8CrT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuGQ8CrT .inner-container {
    width: 100% !important;
  }
}
.cid-v9XcAQwiFv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9XcAQwiFv .mbr-section-subtitle {
  color: #767676;
}
.cid-v9XcAQwiFv .container-table {
  margin: 0 auto;
}
.cid-v9XcAQwiFv .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9XcAQwiFv .dataTables_wrapper {
  display: block;
}
.cid-v9XcAQwiFv .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9XcAQwiFv .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9XcAQwiFv table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9XcAQwiFv table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9XcAQwiFv table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9XcAQwiFv table td {
  border-top: 1px solid #232323;
}
.cid-v9XcAQwiFv table.table {
  background: #3eddea;
}
.cid-v9XcAQwiFv .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9XcAQwiFv .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9XcAQwiFv .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9XcAQwiFv .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9XcAQwiFv .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9XcAQwiFv .dataTables_filter {
    text-align: center;
  }
  .cid-v9XcAQwiFv .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9XcAQwiFv .mbr-section-title {
  color: #ff3366;
}
.cid-v9XcAQwiFv .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9XcAQwiFv .body-item {
  text-align: center;
}
.cid-s3iuGQhknw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuGQhknw .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuGQhknw .section-text {
  padding: 2rem 0;
}
.cid-s3iuGQhknw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuGQhknw .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuGQhknw .section-text DIV {
  text-align: center;
}
.cid-s3iuGQqaD2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuGQqaD2 .item {
  padding-bottom: 2rem;
}
.cid-s3iuGQqaD2 .item-wrapper {
  height: 100%;
}
.cid-s3iuGQqaD2 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3iuGQqaD2 .carousel-control,
.cid-s3iuGQqaD2 .close {
  background: #1b1b1b;
}
.cid-s3iuGQqaD2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3iuGQqaD2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3iuGQqaD2 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3iuGQqaD2 .close::before {
  content: '\e91a';
}
.cid-s3iuGQqaD2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3iuGQqaD2 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3iuGQqaD2 .carousel-inner > .active {
  display: block;
}
.cid-s3iuGQqaD2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3iuGQqaD2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3iuGQqaD2 .carousel-control .icon-next,
.cid-s3iuGQqaD2 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3iuGQqaD2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3iuGQqaD2 .carousel-control,
  .cid-s3iuGQqaD2 .carousel-indicators,
  .cid-s3iuGQqaD2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3iuGQqaD2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3iuGQqaD2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3iuGQqaD2 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3iuGQqaD2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3iuGQqaD2 .carousel-indicators {
    display: none;
  }
}
.cid-s3iuGQqaD2 .carousel-indicators .active,
.cid-s3iuGQqaD2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3iuGQqaD2 .carousel-indicators .active {
  background: #fff;
}
.cid-s3iuGQqaD2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3iuGQqaD2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3iuGQqaD2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3iuGQqaD2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3iuGQqaD2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3iuGQqaD2 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3iuGQqaD2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3iuGQqaD2 .carousel {
  width: 100%;
}
.cid-s3iuGQqaD2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3iuGQqaD2 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3iuGQqaD2 .modal.fade .modal-dialog,
.cid-s3iuGQqaD2 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3iuGQqaD2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3iuGQqaD2 a {
  display: block;
}
.cid-s3iuGQqaD2 a.img {
  pointer-events: none;
}
.cid-s3iuGQMoxR {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3iuGQMoxR .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3iuGQMoxR div.b {
  padding-top: 2rem;
}
.cid-s3iuKgmHzQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuKgmHzQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuKgmHzQ .section-text {
  padding: 2rem 0;
}
.cid-s3iuKgmHzQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuKgmHzQ .inner-container {
    width: 100% !important;
  }
}
.cid-v9XcKPeXrd {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9XcKPeXrd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XcKPeXrd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XcKPeXrd .row {
  justify-content: center;
}
.cid-v9XcKPeXrd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XcKPeXrd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XcKPeXrd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XcKPeXrd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XcKPeXrd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XcKPeXrd .mbr-text_1,
.cid-v9XcKPeXrd .mbr-text_2,
.cid-v9XcKPeXrd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XcKPeXrd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcKPeXrd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XcKPeXrd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XcKPeXrd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XcKPeXrd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcKPeXrd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XcKPeXrd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XcKPeXrd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcKPeXrd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XcKPeXrd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XcKPeXrd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XcKPeXrd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XcKPeXrd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9XcLH02PE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9XcLH02PE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XcLH02PE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XcLH02PE .row {
  justify-content: center;
}
.cid-v9XcLH02PE .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XcLH02PE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XcLH02PE .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XcLH02PE .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XcLH02PE .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XcLH02PE .mbr-text_1,
.cid-v9XcLH02PE .mbr-text_2,
.cid-v9XcLH02PE .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XcLH02PE .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcLH02PE .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XcLH02PE .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XcLH02PE .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XcLH02PE .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcLH02PE .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XcLH02PE .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XcLH02PE .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcLH02PE .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XcLH02PE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XcLH02PE .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XcLH02PE .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XcLH02PE .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3iuKgzgX0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuKgzgX0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuKgzgX0 .section-text {
  padding: 2rem 0;
}
.cid-s3iuKgzgX0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuKgzgX0 .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuKhqltS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuKhqltS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuKhqltS .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3iuKhqltS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuKhqltS .inner-container {
    width: 100% !important;
  }
}
.cid-v9XcMDyy1u {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9XcMDyy1u .mbr-section-subtitle {
  color: #767676;
}
.cid-v9XcMDyy1u .container-table {
  margin: 0 auto;
}
.cid-v9XcMDyy1u .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9XcMDyy1u .dataTables_wrapper {
  display: block;
}
.cid-v9XcMDyy1u .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9XcMDyy1u .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9XcMDyy1u table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9XcMDyy1u table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9XcMDyy1u table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9XcMDyy1u table td {
  border-top: 1px solid #232323;
}
.cid-v9XcMDyy1u table.table {
  background: #3eddea;
}
.cid-v9XcMDyy1u .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9XcMDyy1u .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9XcMDyy1u .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9XcMDyy1u .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9XcMDyy1u .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9XcMDyy1u .dataTables_filter {
    text-align: center;
  }
  .cid-v9XcMDyy1u .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9XcMDyy1u .mbr-section-title {
  color: #ff3366;
}
.cid-v9XcMDyy1u .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9XcMDyy1u .body-item {
  text-align: center;
}
.cid-s3iuKhyveG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuKhyveG .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuKhyveG .section-text {
  padding: 2rem 0;
}
.cid-s3iuKhyveG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuKhyveG .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuKhyveG .section-text DIV {
  text-align: center;
}
.cid-s3iuKhIyyQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuKhIyyQ .item {
  padding-bottom: 2rem;
}
.cid-s3iuKhIyyQ .item-wrapper {
  height: 100%;
}
.cid-s3iuKhIyyQ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3iuKhIyyQ .carousel-control,
.cid-s3iuKhIyyQ .close {
  background: #1b1b1b;
}
.cid-s3iuKhIyyQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3iuKhIyyQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3iuKhIyyQ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3iuKhIyyQ .close::before {
  content: '\e91a';
}
.cid-s3iuKhIyyQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3iuKhIyyQ .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3iuKhIyyQ .carousel-inner > .active {
  display: block;
}
.cid-s3iuKhIyyQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3iuKhIyyQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3iuKhIyyQ .carousel-control .icon-next,
.cid-s3iuKhIyyQ .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3iuKhIyyQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3iuKhIyyQ .carousel-control,
  .cid-s3iuKhIyyQ .carousel-indicators,
  .cid-s3iuKhIyyQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3iuKhIyyQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3iuKhIyyQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3iuKhIyyQ .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3iuKhIyyQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3iuKhIyyQ .carousel-indicators {
    display: none;
  }
}
.cid-s3iuKhIyyQ .carousel-indicators .active,
.cid-s3iuKhIyyQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3iuKhIyyQ .carousel-indicators .active {
  background: #fff;
}
.cid-s3iuKhIyyQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3iuKhIyyQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3iuKhIyyQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3iuKhIyyQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3iuKhIyyQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3iuKhIyyQ .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3iuKhIyyQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3iuKhIyyQ .carousel {
  width: 100%;
}
.cid-s3iuKhIyyQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3iuKhIyyQ .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3iuKhIyyQ .modal.fade .modal-dialog,
.cid-s3iuKhIyyQ .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3iuKhIyyQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3iuKhIyyQ a {
  display: block;
}
.cid-s3iuKhIyyQ a.img {
  pointer-events: none;
}
.cid-s3iuKi1Yk8 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3iuKi1Yk8 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3iuKi1Yk8 div.b {
  padding-top: 2rem;
}
.cid-s3iuOMcrnN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuOMcrnN .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuOMcrnN .section-text {
  padding: 2rem 0;
}
.cid-s3iuOMcrnN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuOMcrnN .inner-container {
    width: 100% !important;
  }
}
.cid-v9XcVka9JL {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9XcVka9JL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XcVka9JL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XcVka9JL .row {
  justify-content: center;
}
.cid-v9XcVka9JL .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XcVka9JL .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XcVka9JL .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XcVka9JL .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XcVka9JL .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XcVka9JL .mbr-text_1,
.cid-v9XcVka9JL .mbr-text_2,
.cid-v9XcVka9JL .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XcVka9JL .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcVka9JL .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XcVka9JL .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XcVka9JL .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XcVka9JL .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcVka9JL .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XcVka9JL .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XcVka9JL .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcVka9JL .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XcVka9JL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XcVka9JL .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XcVka9JL .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XcVka9JL .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9XcW9SUcC {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9XcW9SUcC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XcW9SUcC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XcW9SUcC .row {
  justify-content: center;
}
.cid-v9XcW9SUcC .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XcW9SUcC .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XcW9SUcC .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XcW9SUcC .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XcW9SUcC .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XcW9SUcC .mbr-text_1,
.cid-v9XcW9SUcC .mbr-text_2,
.cid-v9XcW9SUcC .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XcW9SUcC .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcW9SUcC .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XcW9SUcC .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XcW9SUcC .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XcW9SUcC .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcW9SUcC .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XcW9SUcC .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XcW9SUcC .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XcW9SUcC .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XcW9SUcC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XcW9SUcC .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XcW9SUcC .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XcW9SUcC .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3iuOMptnn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuOMptnn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuOMptnn .section-text {
  padding: 2rem 0;
}
.cid-s3iuOMptnn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuOMptnn .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuOMLhvF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuOMLhvF .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuOMLhvF .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3iuOMLhvF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuOMLhvF .inner-container {
    width: 100% !important;
  }
}
.cid-v9XcTznwxq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9XcTznwxq .mbr-section-subtitle {
  color: #767676;
}
.cid-v9XcTznwxq .container-table {
  margin: 0 auto;
}
.cid-v9XcTznwxq .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9XcTznwxq .dataTables_wrapper {
  display: block;
}
.cid-v9XcTznwxq .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9XcTznwxq .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9XcTznwxq table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9XcTznwxq table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9XcTznwxq table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9XcTznwxq table td {
  border-top: 1px solid #232323;
}
.cid-v9XcTznwxq table.table {
  background: #3eddea;
}
.cid-v9XcTznwxq .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9XcTznwxq .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9XcTznwxq .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9XcTznwxq .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9XcTznwxq .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9XcTznwxq .dataTables_filter {
    text-align: center;
  }
  .cid-v9XcTznwxq .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9XcTznwxq .mbr-section-title {
  color: #ff3366;
}
.cid-v9XcTznwxq .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9XcTznwxq .body-item {
  text-align: center;
}
.cid-s3iuOMUiwn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuOMUiwn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuOMUiwn .section-text {
  padding: 2rem 0;
}
.cid-s3iuOMUiwn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuOMUiwn .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuOMUiwn .section-text DIV {
  text-align: center;
}
.cid-sivmyI7jLU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sivmzDBSWm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sivmzDBSWm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivmzDBSWm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivmzDBSWm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivmzDBSWm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivmzDBSWm .row > .row {
  display: block;
}
.cid-sivmzDBSWm .mbr-gallery-item {
  width: 100%;
}
.cid-sivmzDBSWm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivmzDBSWm .mbr-gallery-item > div {
  position: relative;
}
.cid-sivmzDBSWm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivmzDBSWm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivmzDBSWm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivmzDBSWm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3iuONBgd5 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3iuONBgd5 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3iuONBgd5 div.b {
  padding-top: 2rem;
}
.cid-s3iuS6mJce {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuS6mJce .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuS6mJce .section-text {
  padding: 2rem 0;
}
.cid-s3iuS6mJce .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuS6mJce .inner-container {
    width: 100% !important;
  }
}
.cid-v9Xd3kSAdT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9Xd3kSAdT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Xd3kSAdT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Xd3kSAdT .row {
  justify-content: center;
}
.cid-v9Xd3kSAdT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9Xd3kSAdT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9Xd3kSAdT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9Xd3kSAdT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9Xd3kSAdT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9Xd3kSAdT .mbr-text_1,
.cid-v9Xd3kSAdT .mbr-text_2,
.cid-v9Xd3kSAdT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9Xd3kSAdT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xd3kSAdT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xd3kSAdT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xd3kSAdT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xd3kSAdT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xd3kSAdT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xd3kSAdT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9Xd3kSAdT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xd3kSAdT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xd3kSAdT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9Xd3kSAdT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9Xd3kSAdT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9Xd3kSAdT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9Xd4B3TDb {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9Xd4B3TDb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Xd4B3TDb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Xd4B3TDb .row {
  justify-content: center;
}
.cid-v9Xd4B3TDb .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9Xd4B3TDb .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9Xd4B3TDb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9Xd4B3TDb .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9Xd4B3TDb .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9Xd4B3TDb .mbr-text_1,
.cid-v9Xd4B3TDb .mbr-text_2,
.cid-v9Xd4B3TDb .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9Xd4B3TDb .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xd4B3TDb .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xd4B3TDb .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xd4B3TDb .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xd4B3TDb .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xd4B3TDb .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xd4B3TDb .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9Xd4B3TDb .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xd4B3TDb .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xd4B3TDb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9Xd4B3TDb .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9Xd4B3TDb .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9Xd4B3TDb .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3iuS6ALIx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuS6ALIx .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuS6ALIx .section-text {
  padding: 2rem 0;
}
.cid-s3iuS6ALIx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuS6ALIx .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuS6WTOz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuS6WTOz .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuS6WTOz .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3iuS6WTOz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuS6WTOz .inner-container {
    width: 100% !important;
  }
}
.cid-v9Xd5Fyd2T {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9Xd5Fyd2T .mbr-section-subtitle {
  color: #767676;
}
.cid-v9Xd5Fyd2T .container-table {
  margin: 0 auto;
}
.cid-v9Xd5Fyd2T .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9Xd5Fyd2T .dataTables_wrapper {
  display: block;
}
.cid-v9Xd5Fyd2T .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9Xd5Fyd2T .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9Xd5Fyd2T table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9Xd5Fyd2T table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9Xd5Fyd2T table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9Xd5Fyd2T table td {
  border-top: 1px solid #232323;
}
.cid-v9Xd5Fyd2T table.table {
  background: #3eddea;
}
.cid-v9Xd5Fyd2T .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9Xd5Fyd2T .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9Xd5Fyd2T .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9Xd5Fyd2T .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9Xd5Fyd2T .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9Xd5Fyd2T .dataTables_filter {
    text-align: center;
  }
  .cid-v9Xd5Fyd2T .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9Xd5Fyd2T .mbr-section-title {
  color: #ff3366;
}
.cid-v9Xd5Fyd2T .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9Xd5Fyd2T .body-item {
  text-align: center;
}
.cid-s3iuS75BNE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuS75BNE .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuS75BNE .section-text {
  padding: 2rem 0;
}
.cid-s3iuS75BNE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuS75BNE .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuS75BNE .section-text DIV {
  text-align: center;
}
.cid-sh3I8Uu0Ia {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh3I9ziEFn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh3I9ziEFn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh3I9ziEFn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh3I9ziEFn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh3I9ziEFn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh3I9ziEFn .row > .row {
  display: block;
}
.cid-sh3I9ziEFn .mbr-gallery-item {
  width: 100%;
}
.cid-sh3I9ziEFn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh3I9ziEFn .mbr-gallery-item > div {
  position: relative;
}
.cid-sh3I9ziEFn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh3I9ziEFn .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh3I9ziEFn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh3I9ziEFn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3iuS7yrOu {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3iuS7yrOu .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3iuS7yrOu div.b {
  padding-top: 2rem;
}
.cid-s3iuVsuBE9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuVsuBE9 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuVsuBE9 .section-text {
  padding: 2rem 0;
}
.cid-s3iuVsuBE9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuVsuBE9 .inner-container {
    width: 100% !important;
  }
}
.cid-v9XddDNidT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9XddDNidT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XddDNidT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XddDNidT .row {
  justify-content: center;
}
.cid-v9XddDNidT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XddDNidT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XddDNidT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XddDNidT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XddDNidT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XddDNidT .mbr-text_1,
.cid-v9XddDNidT .mbr-text_2,
.cid-v9XddDNidT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XddDNidT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XddDNidT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XddDNidT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XddDNidT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XddDNidT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XddDNidT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XddDNidT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XddDNidT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XddDNidT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XddDNidT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XddDNidT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XddDNidT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XddDNidT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9XdeyvFEI {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9XdeyvFEI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XdeyvFEI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XdeyvFEI .row {
  justify-content: center;
}
.cid-v9XdeyvFEI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XdeyvFEI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XdeyvFEI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XdeyvFEI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XdeyvFEI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XdeyvFEI .mbr-text_1,
.cid-v9XdeyvFEI .mbr-text_2,
.cid-v9XdeyvFEI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XdeyvFEI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XdeyvFEI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XdeyvFEI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XdeyvFEI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XdeyvFEI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XdeyvFEI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XdeyvFEI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XdeyvFEI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XdeyvFEI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XdeyvFEI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XdeyvFEI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XdeyvFEI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XdeyvFEI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3iuVsJ3Vo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuVsJ3Vo .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuVsJ3Vo .section-text {
  padding: 2rem 0;
}
.cid-s3iuVsJ3Vo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuVsJ3Vo .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuVt4DrX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuVt4DrX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuVt4DrX .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3iuVt4DrX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuVt4DrX .inner-container {
    width: 100% !important;
  }
}
.cid-v9XdfEBkMs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9XdfEBkMs .mbr-section-subtitle {
  color: #767676;
}
.cid-v9XdfEBkMs .container-table {
  margin: 0 auto;
}
.cid-v9XdfEBkMs .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9XdfEBkMs .dataTables_wrapper {
  display: block;
}
.cid-v9XdfEBkMs .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9XdfEBkMs .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9XdfEBkMs table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9XdfEBkMs table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9XdfEBkMs table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9XdfEBkMs table td {
  border-top: 1px solid #232323;
}
.cid-v9XdfEBkMs table.table {
  background: #3eddea;
}
.cid-v9XdfEBkMs .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9XdfEBkMs .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9XdfEBkMs .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9XdfEBkMs .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9XdfEBkMs .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9XdfEBkMs .dataTables_filter {
    text-align: center;
  }
  .cid-v9XdfEBkMs .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9XdfEBkMs .mbr-section-title {
  color: #ff3366;
}
.cid-v9XdfEBkMs .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9XdfEBkMs .body-item {
  text-align: center;
}
.cid-s3iuVtrafC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3iuVtrafC .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3iuVtrafC .section-text {
  padding: 2rem 0;
}
.cid-s3iuVtrafC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3iuVtrafC .inner-container {
    width: 100% !important;
  }
}
.cid-s3iuVtrafC .section-text DIV {
  text-align: center;
}
.cid-sh3Jc1QMSE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh3JecINxv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh3JecINxv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh3JecINxv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh3JecINxv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh3JecINxv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh3JecINxv .row > .row {
  display: block;
}
.cid-sh3JecINxv .mbr-gallery-item {
  width: 100%;
}
.cid-sh3JecINxv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh3JecINxv .mbr-gallery-item > div {
  position: relative;
}
.cid-sh3JecINxv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh3JecINxv .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh3JecINxv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh3JecINxv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sh3JF6pzun {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh3JFZEnvN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh3JFZEnvN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh3JFZEnvN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh3JFZEnvN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh3JFZEnvN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh3JFZEnvN .row > .row {
  display: block;
}
.cid-sh3JFZEnvN .mbr-gallery-item {
  width: 100%;
}
.cid-sh3JFZEnvN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh3JFZEnvN .mbr-gallery-item > div {
  position: relative;
}
.cid-sh3JFZEnvN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh3JFZEnvN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh3JFZEnvN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh3JFZEnvN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3iuVtVvX0 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3iuVtVvX0 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3iuVtVvX0 div.b {
  padding-top: 2rem;
}
.cid-s3jFHkfe1V {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3jFHkfe1V .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3jFHkfe1V .section-text {
  padding: 2rem 0;
}
.cid-s3jFHkfe1V .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3jFHkfe1V .inner-container {
    width: 100% !important;
  }
}
.cid-svFIuxyGth {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFIuxyGth .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFIuxyGth .section-text {
  padding: 2rem 0;
}
.cid-svFIuxyGth .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFIuxyGth .inner-container {
    width: 100% !important;
  }
}
.cid-s3jFHkx4pA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3jFHkx4pA .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3jFHkx4pA .section-text {
  padding: 2rem 0;
}
.cid-s3jFHkx4pA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3jFHkx4pA .inner-container {
    width: 100% !important;
  }
}
.cid-s3jFHkPT0I {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3jFHkPT0I .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3jFHkPT0I .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3jFHkPT0I .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3jFHkPT0I .inner-container {
    width: 100% !important;
  }
}
.cid-s3jFHkXtpg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3jFHkXtpg .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3jFHkXtpg .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-s3jFHkXtpg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3jFHkXtpg .inner-container {
    width: 100% !important;
  }
}
.cid-s3jFHkXtpg .section-text DIV {
  text-align: center;
}
.cid-sgIDLnyg0Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sgIDONeqF2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgIDONeqF2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgIDONeqF2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgIDONeqF2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgIDONeqF2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgIDONeqF2 .row > .row {
  display: block;
}
.cid-sgIDONeqF2 .mbr-gallery-item {
  width: 100%;
}
.cid-sgIDONeqF2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgIDONeqF2 .mbr-gallery-item > div {
  position: relative;
}
.cid-sgIDONeqF2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgIDONeqF2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgIDONeqF2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgIDONeqF2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sh3Kn7oVOg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgIEKhixlM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgIEKhixlM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgIEKhixlM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgIEKhixlM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgIEKhixlM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgIEKhixlM .row > .row {
  display: block;
}
.cid-sgIEKhixlM .mbr-gallery-item {
  width: 100%;
}
.cid-sgIEKhixlM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgIEKhixlM .mbr-gallery-item > div {
  position: relative;
}
.cid-sgIEKhixlM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgIEKhixlM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgIEKhixlM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgIEKhixlM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sgIHLsFK70 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sgIHLsFK70 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgIHLsFK70 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgIHLsFK70 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgIHLsFK70 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgIHLsFK70 .row > .row {
  display: block;
}
.cid-sgIHLsFK70 .mbr-gallery-item {
  width: 100%;
}
.cid-sgIHLsFK70 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgIHLsFK70 .mbr-gallery-item > div {
  position: relative;
}
.cid-sgIHLsFK70 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgIHLsFK70 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgIHLsFK70 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgIHLsFK70 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3jFHlAsUh {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3jFHlAsUh .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3jFHlAsUh div.b {
  padding-top: 2rem;
}
.cid-s3jHSDPq9B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3jHSDPq9B .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3jHSDPq9B .section-text {
  padding: 2rem 0;
}
.cid-s3jHSDPq9B .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3jHSDPq9B .inner-container {
    width: 100% !important;
  }
}
.cid-svFICXTIm9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFICXTIm9 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFICXTIm9 .section-text {
  padding: 2rem 0;
}
.cid-svFICXTIm9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFICXTIm9 .inner-container {
    width: 100% !important;
  }
}
.cid-s3jHSEfOhC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3jHSEfOhC .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3jHSEfOhC .section-text {
  padding: 2rem 0;
}
.cid-s3jHSEfOhC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3jHSEfOhC .inner-container {
    width: 100% !important;
  }
}
.cid-s3jHSECIei {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3jHSECIei .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3jHSECIei .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3jHSECIei .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3jHSECIei .inner-container {
    width: 100% !important;
  }
}
.cid-s3jHSELMNQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3jHSELMNQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3jHSELMNQ .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-s3jHSELMNQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3jHSELMNQ .inner-container {
    width: 100% !important;
  }
}
.cid-s3jHSELMNQ .section-text DIV {
  text-align: center;
}
.cid-sh3ZZFZEBz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh401CB8aq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh401CB8aq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh401CB8aq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh401CB8aq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh401CB8aq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh401CB8aq .row > .row {
  display: block;
}
.cid-sh401CB8aq .mbr-gallery-item {
  width: 100%;
}
.cid-sh401CB8aq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh401CB8aq .mbr-gallery-item > div {
  position: relative;
}
.cid-sh401CB8aq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh401CB8aq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh401CB8aq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh401CB8aq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sh400Gsolk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh402z9trL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh402z9trL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh402z9trL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh402z9trL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh402z9trL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh402z9trL .row > .row {
  display: block;
}
.cid-sh402z9trL .mbr-gallery-item {
  width: 100%;
}
.cid-sh402z9trL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh402z9trL .mbr-gallery-item > div {
  position: relative;
}
.cid-sh402z9trL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh402z9trL .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh402z9trL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh402z9trL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sh42ieUmgA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh42j86VQj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh42j86VQj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh42j86VQj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh42j86VQj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh42j86VQj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh42j86VQj .row > .row {
  display: block;
}
.cid-sh42j86VQj .mbr-gallery-item {
  width: 100%;
}
.cid-sh42j86VQj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh42j86VQj .mbr-gallery-item > div {
  position: relative;
}
.cid-sh42j86VQj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh42j86VQj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh42j86VQj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh42j86VQj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3jHSGNTuc {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3jHSGNTuc .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3jHSGNTuc div.b {
  padding-top: 2rem;
}
.cid-s3jJHHarra {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3jJHHarra .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3jJHHarra .section-text {
  padding: 2rem 0;
}
.cid-s3jJHHarra .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3jJHHarra .inner-container {
    width: 100% !important;
  }
}
.cid-svFIIaJIEw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFIIaJIEw .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svFIIaJIEw .section-text {
  padding: 2rem 0;
}
.cid-svFIIaJIEw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svFIIaJIEw .inner-container {
    width: 100% !important;
  }
}
.cid-s3jJHHy8Hm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3jJHHy8Hm .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3jJHHy8Hm .section-text {
  padding: 2rem 0;
}
.cid-s3jJHHy8Hm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3jJHHy8Hm .inner-container {
    width: 100% !important;
  }
}
.cid-s3jJHHRon6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3jJHHRon6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3jJHHRon6 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s3jJHHRon6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3jJHHRon6 .inner-container {
    width: 100% !important;
  }
}
.cid-s3jJHI0fCb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s3jJHI0fCb .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3jJHI0fCb .section-text {
  padding: 2rem 0;
  color: #ff3366;
}
.cid-s3jJHI0fCb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3jJHI0fCb .inner-container {
    width: 100% !important;
  }
}
.cid-s3jJHI0fCb .section-text DIV {
  text-align: center;
}
.cid-sh434wjdfU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh43Uj8GLb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh43Uj8GLb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh43Uj8GLb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh43Uj8GLb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh43Uj8GLb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh43Uj8GLb .row > .row {
  display: block;
}
.cid-sh43Uj8GLb .mbr-gallery-item {
  width: 100%;
}
.cid-sh43Uj8GLb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh43Uj8GLb .mbr-gallery-item > div {
  position: relative;
}
.cid-sh43Uj8GLb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh43Uj8GLb .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh43Uj8GLb .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh43Uj8GLb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sh436JhOKH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh43Vug5qy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh43Vug5qy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh43Vug5qy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh43Vug5qy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh43Vug5qy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh43Vug5qy .row > .row {
  display: block;
}
.cid-sh43Vug5qy .mbr-gallery-item {
  width: 100%;
}
.cid-sh43Vug5qy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh43Vug5qy .mbr-gallery-item > div {
  position: relative;
}
.cid-sh43Vug5qy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh43Vug5qy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh43Vug5qy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh43Vug5qy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sh437D0Yww {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh43Wsfw4K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh43Wsfw4K .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh43Wsfw4K .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh43Wsfw4K .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh43Wsfw4K .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh43Wsfw4K .row > .row {
  display: block;
}
.cid-sh43Wsfw4K .mbr-gallery-item {
  width: 100%;
}
.cid-sh43Wsfw4K .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh43Wsfw4K .mbr-gallery-item > div {
  position: relative;
}
.cid-sh43Wsfw4K .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh43Wsfw4K .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh43Wsfw4K .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh43Wsfw4K .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sh435VyqzU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh43Xhpg3Z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh43Xhpg3Z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh43Xhpg3Z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh43Xhpg3Z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh43Xhpg3Z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh43Xhpg3Z .row > .row {
  display: block;
}
.cid-sh43Xhpg3Z .mbr-gallery-item {
  width: 100%;
}
.cid-sh43Xhpg3Z .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh43Xhpg3Z .mbr-gallery-item > div {
  position: relative;
}
.cid-sh43Xhpg3Z .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh43Xhpg3Z .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh43Xhpg3Z .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh43Xhpg3Z .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sh43bdvWj4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sh43YefGde {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sh43YefGde .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sh43YefGde .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sh43YefGde .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sh43YefGde .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sh43YefGde .row > .row {
  display: block;
}
.cid-sh43YefGde .mbr-gallery-item {
  width: 100%;
}
.cid-sh43YefGde .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sh43YefGde .mbr-gallery-item > div {
  position: relative;
}
.cid-sh43YefGde .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sh43YefGde .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sh43YefGde .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sh43YefGde .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3jJHK6AS0 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s3jJHK6AS0 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3jJHK6AS0 div.b {
  padding-top: 2rem;
}
.cid-s3mKoegCZQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3mKoegCZQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3mKoegCZQ .section-text {
  padding: 2rem 0;
}
.cid-s3mKoegCZQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3mKoegCZQ .inner-container {
    width: 100% !important;
  }
}
.cid-v6XsjOXowt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6XsjOXowt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XsjOXowt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XsjOXowt .row {
  justify-content: center;
}
.cid-v6XsjOXowt .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XsjOXowt .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XsjOXowt .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XsjOXowt .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XsjOXowt .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XsjOXowt .mbr-text_1,
.cid-v6XsjOXowt .mbr-text_2,
.cid-v6XsjOXowt .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XsjOXowt .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XsjOXowt .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XsjOXowt .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XsjOXowt .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XsjOXowt .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XsjOXowt .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XsjOXowt .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XsjOXowt .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XsjOXowt .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XsjOXowt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XsjOXowt .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XsjOXowt .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XsjOXowt .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XskPBnFx {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6XskPBnFx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XskPBnFx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XskPBnFx .row {
  justify-content: center;
}
.cid-v6XskPBnFx .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XskPBnFx .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XskPBnFx .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XskPBnFx .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XskPBnFx .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XskPBnFx .mbr-text_1,
.cid-v6XskPBnFx .mbr-text_2,
.cid-v6XskPBnFx .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XskPBnFx .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XskPBnFx .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XskPBnFx .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XskPBnFx .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XskPBnFx .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XskPBnFx .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XskPBnFx .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XskPBnFx .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XskPBnFx .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XskPBnFx .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XskPBnFx .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XskPBnFx .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XskPBnFx .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XshqVVj2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6XshqVVj2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6XshqVVj2 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6XshqVVj2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6XshqVVj2 .inner-container {
    width: 100% !important;
  }
}
.cid-s3mKof5Q79 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3mKof5Q79 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3mKof5Q79 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s3mKof5Q79 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3mKof5Q79 .inner-container {
    width: 100% !important;
  }
}
.cid-uybf8I8xsw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybf8I8xsw .mbr-section-subtitle {
  color: #767676;
}
.cid-uybf8I8xsw .container-table {
  margin: 0 auto;
}
.cid-uybf8I8xsw .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybf8I8xsw .dataTables_wrapper {
  display: block;
}
.cid-uybf8I8xsw .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybf8I8xsw .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybf8I8xsw table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybf8I8xsw table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybf8I8xsw table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybf8I8xsw table td {
  border-top: 1px solid #232323;
}
.cid-uybf8I8xsw .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybf8I8xsw .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybf8I8xsw .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybf8I8xsw .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybf8I8xsw .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybf8I8xsw .dataTables_filter {
    text-align: center;
  }
  .cid-uybf8I8xsw .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybf8I8xsw .mbr-section-title {
  color: #ff3366;
}
.cid-uybf8I8xsw .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybf8I8xsw .body-item {
  text-align: center;
}
.cid-s3ugvTf3UY {
  background: #64df87;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-s3ugvTf3UY .image-block {
  margin: auto;
}
.cid-s3ugvTf3UY figcaption {
  position: relative;
}
.cid-s3ugvTf3UY figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-s3ugvTf3UY .image-block {
    width: 100% !important;
  }
}
.cid-sfDVwyDSY9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sfDVxIao1s {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sfDVxIao1s .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sfDVxIao1s .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sfDVxIao1s .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sfDVxIao1s .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sfDVxIao1s .row > .row {
  display: block;
}
.cid-sfDVxIao1s .mbr-gallery-item {
  width: 100%;
}
.cid-sfDVxIao1s .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sfDVxIao1s .mbr-gallery-item > div {
  position: relative;
}
.cid-sfDVxIao1s .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sfDVxIao1s .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sfDVxIao1s .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sfDVxIao1s .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sfDVtwZlIl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sfDVuxnH6J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sfDVuxnH6J .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sfDVuxnH6J .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sfDVuxnH6J .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sfDVuxnH6J .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sfDVuxnH6J .row > .row {
  display: block;
}
.cid-sfDVuxnH6J .mbr-gallery-item {
  width: 100%;
}
.cid-sfDVuxnH6J .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sfDVuxnH6J .mbr-gallery-item > div {
  position: relative;
}
.cid-sfDVuxnH6J .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sfDVuxnH6J .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sfDVuxnH6J .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sfDVuxnH6J .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sfDVow0tDY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sfDVlkykCh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sfRZ07ytK5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sfRZq0iWG0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sfRZGBm5A2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sfRZGBm5A2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sfRZGBm5A2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sfRZGBm5A2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sfRZGBm5A2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sfRZGBm5A2 .row > .row {
  display: block;
}
.cid-sfRZGBm5A2 .mbr-gallery-item {
  width: 100%;
}
.cid-sfRZGBm5A2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sfRZGBm5A2 .mbr-gallery-item > div {
  position: relative;
}
.cid-sfRZGBm5A2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sfRZGBm5A2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sfRZGBm5A2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sfRZGBm5A2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sfS1RGXkiM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sfS1X8771m {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sfS1X8771m .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sfS1X8771m .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sfS1X8771m .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sfS1X8771m .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sfS1X8771m .row > .row {
  display: block;
}
.cid-sfS1X8771m .mbr-gallery-item {
  width: 100%;
}
.cid-sfS1X8771m .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sfS1X8771m .mbr-gallery-item > div {
  position: relative;
}
.cid-sfS1X8771m .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sfS1X8771m .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sfS1X8771m .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sfS1X8771m .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sfS2bmsm24 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sgjhTmPzdP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sgjhTmPzdP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgjhTmPzdP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgjhTmPzdP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgjhTmPzdP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgjhTmPzdP .row > .row {
  display: block;
}
.cid-sgjhTmPzdP .mbr-gallery-item {
  width: 100%;
}
.cid-sgjhTmPzdP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgjhTmPzdP .mbr-gallery-item > div {
  position: relative;
}
.cid-sgjhTmPzdP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgjhTmPzdP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgjhTmPzdP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgjhTmPzdP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sfDVgIrA38 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sfDVhZqS4r {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sfDVhZqS4r .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sfDVhZqS4r .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sfDVhZqS4r .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sfDVhZqS4r .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sfDVhZqS4r .row > .row {
  display: block;
}
.cid-sfDVhZqS4r .mbr-gallery-item {
  width: 100%;
}
.cid-sfDVhZqS4r .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sfDVhZqS4r .mbr-gallery-item > div {
  position: relative;
}
.cid-sfDVhZqS4r .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sfDVhZqS4r .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sfDVhZqS4r .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sfDVhZqS4r .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sfDV8SzO9r {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sgj9MavCr0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sgj9MavCr0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgj9MavCr0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgj9MavCr0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgj9MavCr0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgj9MavCr0 .row > .row {
  display: block;
}
.cid-sgj9MavCr0 .mbr-gallery-item {
  width: 100%;
}
.cid-sgj9MavCr0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgj9MavCr0 .mbr-gallery-item > div {
  position: relative;
}
.cid-sgj9MavCr0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sgj9MavCr0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sgj9MavCr0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sgj9MavCr0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8kplBUTIk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-s8kpmLkcg4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s8kpmLkcg4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s8kpmLkcg4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s8kpmLkcg4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s8kpmLkcg4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s8kpmLkcg4 .row > .row {
  display: block;
}
.cid-s8kpmLkcg4 .mbr-gallery-item {
  width: 100%;
}
.cid-s8kpmLkcg4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s8kpmLkcg4 .mbr-gallery-item > div {
  position: relative;
}
.cid-s8kpmLkcg4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s8kpmLkcg4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s8kpmLkcg4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s8kpmLkcg4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8kprAFcfl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-s8kptVvg9B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s8kptVvg9B .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s8kptVvg9B .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s8kptVvg9B .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s8kptVvg9B .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s8kptVvg9B .row > .row {
  display: block;
}
.cid-s8kptVvg9B .mbr-gallery-item {
  width: 100%;
}
.cid-s8kptVvg9B .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s8kptVvg9B .mbr-gallery-item > div {
  position: relative;
}
.cid-s8kptVvg9B .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s8kptVvg9B .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s8kptVvg9B .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s8kptVvg9B .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3mKoheFxJ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-s3mKoheFxJ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3mKoheFxJ div.b {
  padding-top: 2rem;
}
.cid-s3mKoheFxJ H5 {
  color: #232323;
}
.cid-s3u3GqNvPT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3u3GqNvPT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3u3GqNvPT .section-text {
  padding: 2rem 0;
}
.cid-s3u3GqNvPT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3u3GqNvPT .inner-container {
    width: 100% !important;
  }
}
.cid-v72pBMdRyf {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v72pBMdRyf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72pBMdRyf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72pBMdRyf .row {
  justify-content: center;
}
.cid-v72pBMdRyf .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72pBMdRyf .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72pBMdRyf .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72pBMdRyf .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72pBMdRyf .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72pBMdRyf .mbr-text_1,
.cid-v72pBMdRyf .mbr-text_2,
.cid-v72pBMdRyf .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72pBMdRyf .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72pBMdRyf .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72pBMdRyf .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72pBMdRyf .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72pBMdRyf .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72pBMdRyf .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72pBMdRyf .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72pBMdRyf .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72pBMdRyf .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72pBMdRyf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72pBMdRyf .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72pBMdRyf .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72pBMdRyf .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72pCGTtBI {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v72pCGTtBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72pCGTtBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72pCGTtBI .row {
  justify-content: center;
}
.cid-v72pCGTtBI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72pCGTtBI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72pCGTtBI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72pCGTtBI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72pCGTtBI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72pCGTtBI .mbr-text_1,
.cid-v72pCGTtBI .mbr-text_2,
.cid-v72pCGTtBI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72pCGTtBI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72pCGTtBI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72pCGTtBI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72pCGTtBI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72pCGTtBI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72pCGTtBI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72pCGTtBI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72pCGTtBI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72pCGTtBI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72pCGTtBI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72pCGTtBI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72pCGTtBI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72pCGTtBI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72pAazFd4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72pAazFd4 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v72pAazFd4 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v72pAazFd4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v72pAazFd4 .inner-container {
    width: 100% !important;
  }
}
.cid-s3u3GriRwt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3u3GriRwt .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3u3GriRwt .section-text {
  padding: 2rem 0;
}
.cid-s3u3GriRwt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3u3GriRwt .inner-container {
    width: 100% !important;
  }
}
.cid-v72pxK0pte {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72pxK0pte .mbr-section-subtitle {
  color: #767676;
}
.cid-v72pxK0pte .container-table {
  margin: 0 auto;
}
.cid-v72pxK0pte .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v72pxK0pte .dataTables_wrapper {
  display: block;
}
.cid-v72pxK0pte .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v72pxK0pte .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v72pxK0pte table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v72pxK0pte table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v72pxK0pte table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v72pxK0pte table td {
  border-top: 1px solid #232323;
}
.cid-v72pxK0pte table.table {
  background: #ecae15;
}
.cid-v72pxK0pte .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v72pxK0pte .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v72pxK0pte .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v72pxK0pte .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v72pxK0pte .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v72pxK0pte .dataTables_filter {
    text-align: center;
  }
  .cid-v72pxK0pte .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v72pxK0pte .mbr-section-title {
  color: #232323;
}
.cid-v72pxK0pte .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v72pxK0pte .body-item {
  text-align: center;
}
.cid-s3u3GtKSnP {
  background: #ecae15;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-s3u3GtKSnP .image-block {
  margin: auto;
}
.cid-s3u3GtKSnP figcaption {
  position: relative;
}
.cid-s3u3GtKSnP figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-s3u3GtKSnP .image-block {
    width: 100% !important;
  }
}
.cid-s88iENnTtd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s88iENnTtd .mbr-section-subtitle {
  color: #232323;
}
.cid-s88iENnTtd .container-table {
  margin: 0 auto;
}
.cid-s88iENnTtd .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s88iENnTtd .dataTables_wrapper {
  display: block;
}
.cid-s88iENnTtd .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s88iENnTtd .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s88iENnTtd table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s88iENnTtd table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s88iENnTtd table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s88iENnTtd table td {
  border-top: 1px solid #232323;
}
.cid-s88iENnTtd table.table {
  background: #ecae15;
}
.cid-s88iENnTtd .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s88iENnTtd .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s88iENnTtd .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s88iENnTtd .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s88iENnTtd .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s88iENnTtd .dataTables_filter {
    text-align: center;
  }
  .cid-s88iENnTtd .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s88iENnTtd .mbr-section-title {
  color: #232323;
}
.cid-s88iENnTtd .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s88iENnTtd .body-item {
  text-align: center;
}
.cid-s3u5EAYFUi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3u5EAYFUi .item {
  padding-bottom: 2rem;
}
.cid-s3u5EAYFUi .item-wrapper {
  height: 100%;
}
.cid-s3u5EAYFUi .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3u5EAYFUi .carousel-control,
.cid-s3u5EAYFUi .close {
  background: #1b1b1b;
}
.cid-s3u5EAYFUi .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3u5EAYFUi .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3u5EAYFUi .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3u5EAYFUi .close::before {
  content: '\e91a';
}
.cid-s3u5EAYFUi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3u5EAYFUi .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3u5EAYFUi .carousel-inner > .active {
  display: block;
}
.cid-s3u5EAYFUi .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3u5EAYFUi .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3u5EAYFUi .carousel-control .icon-next,
.cid-s3u5EAYFUi .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3u5EAYFUi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3u5EAYFUi .carousel-control,
  .cid-s3u5EAYFUi .carousel-indicators,
  .cid-s3u5EAYFUi .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3u5EAYFUi .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3u5EAYFUi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3u5EAYFUi .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3u5EAYFUi .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3u5EAYFUi .carousel-indicators {
    display: none;
  }
}
.cid-s3u5EAYFUi .carousel-indicators .active,
.cid-s3u5EAYFUi .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3u5EAYFUi .carousel-indicators .active {
  background: #fff;
}
.cid-s3u5EAYFUi .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3u5EAYFUi .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3u5EAYFUi .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3u5EAYFUi .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3u5EAYFUi .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3u5EAYFUi .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3u5EAYFUi .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3u5EAYFUi .carousel {
  width: 100%;
}
.cid-s3u5EAYFUi .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3u5EAYFUi .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3u5EAYFUi .modal.fade .modal-dialog,
.cid-s3u5EAYFUi .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3u5EAYFUi .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3u5EAYFUi a {
  display: block;
}
.cid-s3u5EAYFUi a.img {
  pointer-events: none;
}
.cid-s3u5EAYFUi H3 {
  color: #232323;
}
.cid-s3u6Vz8oD1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3u6Vz8oD1 .item {
  padding-bottom: 2rem;
}
.cid-s3u6Vz8oD1 .item-wrapper {
  height: 100%;
}
.cid-s3u6Vz8oD1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3u6Vz8oD1 .carousel-control,
.cid-s3u6Vz8oD1 .close {
  background: #1b1b1b;
}
.cid-s3u6Vz8oD1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3u6Vz8oD1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3u6Vz8oD1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3u6Vz8oD1 .close::before {
  content: '\e91a';
}
.cid-s3u6Vz8oD1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3u6Vz8oD1 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3u6Vz8oD1 .carousel-inner > .active {
  display: block;
}
.cid-s3u6Vz8oD1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3u6Vz8oD1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3u6Vz8oD1 .carousel-control .icon-next,
.cid-s3u6Vz8oD1 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3u6Vz8oD1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3u6Vz8oD1 .carousel-control,
  .cid-s3u6Vz8oD1 .carousel-indicators,
  .cid-s3u6Vz8oD1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3u6Vz8oD1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3u6Vz8oD1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3u6Vz8oD1 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3u6Vz8oD1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3u6Vz8oD1 .carousel-indicators {
    display: none;
  }
}
.cid-s3u6Vz8oD1 .carousel-indicators .active,
.cid-s3u6Vz8oD1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3u6Vz8oD1 .carousel-indicators .active {
  background: #fff;
}
.cid-s3u6Vz8oD1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3u6Vz8oD1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3u6Vz8oD1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3u6Vz8oD1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3u6Vz8oD1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3u6Vz8oD1 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3u6Vz8oD1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3u6Vz8oD1 .carousel {
  width: 100%;
}
.cid-s3u6Vz8oD1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3u6Vz8oD1 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3u6Vz8oD1 .modal.fade .modal-dialog,
.cid-s3u6Vz8oD1 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3u6Vz8oD1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3u6Vz8oD1 a {
  display: block;
}
.cid-s3u6Vz8oD1 a.img {
  pointer-events: none;
}
.cid-s3u6Vz8oD1 H3 {
  color: #232323;
}
.cid-s3u7Naqwx3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3u7Naqwx3 .item {
  padding-bottom: 2rem;
}
.cid-s3u7Naqwx3 .item-wrapper {
  height: 100%;
}
.cid-s3u7Naqwx3 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3u7Naqwx3 .carousel-control,
.cid-s3u7Naqwx3 .close {
  background: #1b1b1b;
}
.cid-s3u7Naqwx3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3u7Naqwx3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3u7Naqwx3 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3u7Naqwx3 .close::before {
  content: '\e91a';
}
.cid-s3u7Naqwx3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3u7Naqwx3 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3u7Naqwx3 .carousel-inner > .active {
  display: block;
}
.cid-s3u7Naqwx3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3u7Naqwx3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3u7Naqwx3 .carousel-control .icon-next,
.cid-s3u7Naqwx3 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3u7Naqwx3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3u7Naqwx3 .carousel-control,
  .cid-s3u7Naqwx3 .carousel-indicators,
  .cid-s3u7Naqwx3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3u7Naqwx3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3u7Naqwx3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3u7Naqwx3 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3u7Naqwx3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3u7Naqwx3 .carousel-indicators {
    display: none;
  }
}
.cid-s3u7Naqwx3 .carousel-indicators .active,
.cid-s3u7Naqwx3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3u7Naqwx3 .carousel-indicators .active {
  background: #fff;
}
.cid-s3u7Naqwx3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3u7Naqwx3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3u7Naqwx3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3u7Naqwx3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3u7Naqwx3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3u7Naqwx3 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3u7Naqwx3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3u7Naqwx3 .carousel {
  width: 100%;
}
.cid-s3u7Naqwx3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3u7Naqwx3 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3u7Naqwx3 .modal.fade .modal-dialog,
.cid-s3u7Naqwx3 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3u7Naqwx3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3u7Naqwx3 a {
  display: block;
}
.cid-s3u7Naqwx3 a.img {
  pointer-events: none;
}
.cid-s3u7Naqwx3 H3 {
  color: #232323;
}
.cid-s3u94nGupA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3u94nGupA .item {
  padding-bottom: 2rem;
}
.cid-s3u94nGupA .item-wrapper {
  height: 100%;
}
.cid-s3u94nGupA .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3u94nGupA .carousel-control,
.cid-s3u94nGupA .close {
  background: #1b1b1b;
}
.cid-s3u94nGupA .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3u94nGupA .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3u94nGupA .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3u94nGupA .close::before {
  content: '\e91a';
}
.cid-s3u94nGupA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3u94nGupA .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3u94nGupA .carousel-inner > .active {
  display: block;
}
.cid-s3u94nGupA .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3u94nGupA .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3u94nGupA .carousel-control .icon-next,
.cid-s3u94nGupA .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3u94nGupA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3u94nGupA .carousel-control,
  .cid-s3u94nGupA .carousel-indicators,
  .cid-s3u94nGupA .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3u94nGupA .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3u94nGupA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3u94nGupA .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3u94nGupA .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3u94nGupA .carousel-indicators {
    display: none;
  }
}
.cid-s3u94nGupA .carousel-indicators .active,
.cid-s3u94nGupA .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3u94nGupA .carousel-indicators .active {
  background: #fff;
}
.cid-s3u94nGupA .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3u94nGupA .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3u94nGupA .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3u94nGupA .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3u94nGupA .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3u94nGupA .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3u94nGupA .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3u94nGupA .carousel {
  width: 100%;
}
.cid-s3u94nGupA .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3u94nGupA .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3u94nGupA .modal.fade .modal-dialog,
.cid-s3u94nGupA .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3u94nGupA .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3u94nGupA a {
  display: block;
}
.cid-s3u94nGupA a.img {
  pointer-events: none;
}
.cid-s3u94nGupA H3 {
  color: #232323;
}
.cid-s3u9nZBwbv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3u9nZBwbv .item {
  padding-bottom: 2rem;
}
.cid-s3u9nZBwbv .item-wrapper {
  height: 100%;
}
.cid-s3u9nZBwbv .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3u9nZBwbv .carousel-control,
.cid-s3u9nZBwbv .close {
  background: #1b1b1b;
}
.cid-s3u9nZBwbv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3u9nZBwbv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3u9nZBwbv .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3u9nZBwbv .close::before {
  content: '\e91a';
}
.cid-s3u9nZBwbv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3u9nZBwbv .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3u9nZBwbv .carousel-inner > .active {
  display: block;
}
.cid-s3u9nZBwbv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3u9nZBwbv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3u9nZBwbv .carousel-control .icon-next,
.cid-s3u9nZBwbv .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3u9nZBwbv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3u9nZBwbv .carousel-control,
  .cid-s3u9nZBwbv .carousel-indicators,
  .cid-s3u9nZBwbv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3u9nZBwbv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3u9nZBwbv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3u9nZBwbv .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3u9nZBwbv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3u9nZBwbv .carousel-indicators {
    display: none;
  }
}
.cid-s3u9nZBwbv .carousel-indicators .active,
.cid-s3u9nZBwbv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3u9nZBwbv .carousel-indicators .active {
  background: #fff;
}
.cid-s3u9nZBwbv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3u9nZBwbv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3u9nZBwbv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3u9nZBwbv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3u9nZBwbv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3u9nZBwbv .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3u9nZBwbv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3u9nZBwbv .carousel {
  width: 100%;
}
.cid-s3u9nZBwbv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3u9nZBwbv .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3u9nZBwbv .modal.fade .modal-dialog,
.cid-s3u9nZBwbv .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3u9nZBwbv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3u9nZBwbv a {
  display: block;
}
.cid-s3u9nZBwbv a.img {
  pointer-events: none;
}
.cid-s3u9nZBwbv H3 {
  color: #232323;
}
.cid-s3u9rvGzzJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3u9rvGzzJ .item {
  padding-bottom: 2rem;
}
.cid-s3u9rvGzzJ .item-wrapper {
  height: 100%;
}
.cid-s3u9rvGzzJ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3u9rvGzzJ .carousel-control,
.cid-s3u9rvGzzJ .close {
  background: #1b1b1b;
}
.cid-s3u9rvGzzJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3u9rvGzzJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3u9rvGzzJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3u9rvGzzJ .close::before {
  content: '\e91a';
}
.cid-s3u9rvGzzJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3u9rvGzzJ .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3u9rvGzzJ .carousel-inner > .active {
  display: block;
}
.cid-s3u9rvGzzJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3u9rvGzzJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3u9rvGzzJ .carousel-control .icon-next,
.cid-s3u9rvGzzJ .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3u9rvGzzJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3u9rvGzzJ .carousel-control,
  .cid-s3u9rvGzzJ .carousel-indicators,
  .cid-s3u9rvGzzJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3u9rvGzzJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3u9rvGzzJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3u9rvGzzJ .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3u9rvGzzJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3u9rvGzzJ .carousel-indicators {
    display: none;
  }
}
.cid-s3u9rvGzzJ .carousel-indicators .active,
.cid-s3u9rvGzzJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3u9rvGzzJ .carousel-indicators .active {
  background: #fff;
}
.cid-s3u9rvGzzJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3u9rvGzzJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3u9rvGzzJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3u9rvGzzJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3u9rvGzzJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3u9rvGzzJ .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3u9rvGzzJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3u9rvGzzJ .carousel {
  width: 100%;
}
.cid-s3u9rvGzzJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3u9rvGzzJ .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3u9rvGzzJ .modal.fade .modal-dialog,
.cid-s3u9rvGzzJ .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3u9rvGzzJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3u9rvGzzJ a {
  display: block;
}
.cid-s3u9rvGzzJ a.img {
  pointer-events: none;
}
.cid-s3u9rvGzzJ H3 {
  color: #232323;
}
.cid-s8u2Qz80wH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-s8u6BHEvnL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-s8u6BHEvnL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s8u6BHEvnL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s8u6BHEvnL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s8u6BHEvnL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s8u6BHEvnL .row > .row {
  display: block;
}
.cid-s8u6BHEvnL .mbr-gallery-item {
  width: 100%;
}
.cid-s8u6BHEvnL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s8u6BHEvnL .mbr-gallery-item > div {
  position: relative;
}
.cid-s8u6BHEvnL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s8u6BHEvnL .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s8u6BHEvnL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s8u6BHEvnL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8u530YUoZ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s8u530YUoZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s8u530YUoZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s8u530YUoZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s8u530YUoZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s8u530YUoZ .row > .row {
  display: block;
}
.cid-s8u530YUoZ .mbr-gallery-item {
  width: 100%;
}
.cid-s8u530YUoZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s8u530YUoZ .mbr-gallery-item > div {
  position: relative;
}
.cid-s8u530YUoZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s8u530YUoZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s8u530YUoZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s8u530YUoZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8uaX0rFES {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-s8uaYqGeL1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-s8uaYqGeL1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s8uaYqGeL1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s8uaYqGeL1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s8uaYqGeL1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s8uaYqGeL1 .row > .row {
  display: block;
}
.cid-s8uaYqGeL1 .mbr-gallery-item {
  width: 100%;
}
.cid-s8uaYqGeL1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s8uaYqGeL1 .mbr-gallery-item > div {
  position: relative;
}
.cid-s8uaYqGeL1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s8uaYqGeL1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s8uaYqGeL1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s8uaYqGeL1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8uaZCEkHw {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s8uaZCEkHw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s8uaZCEkHw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s8uaZCEkHw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s8uaZCEkHw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s8uaZCEkHw .row > .row {
  display: block;
}
.cid-s8uaZCEkHw .mbr-gallery-item {
  width: 100%;
}
.cid-s8uaZCEkHw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s8uaZCEkHw .mbr-gallery-item > div {
  position: relative;
}
.cid-s8uaZCEkHw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s8uaZCEkHw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s8uaZCEkHw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s8uaZCEkHw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8k6bXDred {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sf4LPfYEmn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sf4LPfYEmn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sf4LPfYEmn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sf4LPfYEmn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sf4LPfYEmn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sf4LPfYEmn .row > .row {
  display: block;
}
.cid-sf4LPfYEmn .mbr-gallery-item {
  width: 100%;
}
.cid-sf4LPfYEmn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sf4LPfYEmn .mbr-gallery-item > div {
  position: relative;
}
.cid-sf4LPfYEmn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sf4LPfYEmn .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sf4LPfYEmn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sf4LPfYEmn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sf4LQrmWC0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sf4LQrmWC0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sf4LQrmWC0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sf4LQrmWC0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sf4LQrmWC0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sf4LQrmWC0 .row > .row {
  display: block;
}
.cid-sf4LQrmWC0 .mbr-gallery-item {
  width: 100%;
}
.cid-sf4LQrmWC0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sf4LQrmWC0 .mbr-gallery-item > div {
  position: relative;
}
.cid-sf4LQrmWC0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sf4LQrmWC0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sf4LQrmWC0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sf4LQrmWC0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8k69tiJOq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-s8k6ilGfQE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-s8k6ilGfQE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s8k6ilGfQE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s8k6ilGfQE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s8k6ilGfQE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s8k6ilGfQE .row > .row {
  display: block;
}
.cid-s8k6ilGfQE .mbr-gallery-item {
  width: 100%;
}
.cid-s8k6ilGfQE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s8k6ilGfQE .mbr-gallery-item > div {
  position: relative;
}
.cid-s8k6ilGfQE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s8k6ilGfQE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s8k6ilGfQE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s8k6ilGfQE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sh3BOMElKh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-se2gpG8lYc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-se2gpG8lYc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-se2gpG8lYc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-se2gpG8lYc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-se2gpG8lYc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-se2gpG8lYc .row > .row {
  display: block;
}
.cid-se2gpG8lYc .mbr-gallery-item {
  width: 100%;
}
.cid-se2gpG8lYc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-se2gpG8lYc .mbr-gallery-item > div {
  position: relative;
}
.cid-se2gpG8lYc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-se2gpG8lYc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-se2gpG8lYc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-se2gpG8lYc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8k6gM66dO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-s8k67uadZu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s8k67uadZu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s8k67uadZu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s8k67uadZu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s8k67uadZu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s8k67uadZu .row > .row {
  display: block;
}
.cid-s8k67uadZu .mbr-gallery-item {
  width: 100%;
}
.cid-s8k67uadZu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s8k67uadZu .mbr-gallery-item > div {
  position: relative;
}
.cid-s8k67uadZu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s8k67uadZu .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s8k67uadZu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s8k67uadZu .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8k4w0EazL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-s8k30HUND9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s8k30HUND9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s8k30HUND9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s8k30HUND9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s8k30HUND9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s8k30HUND9 .row > .row {
  display: block;
}
.cid-s8k30HUND9 .mbr-gallery-item {
  width: 100%;
}
.cid-s8k30HUND9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s8k30HUND9 .mbr-gallery-item > div {
  position: relative;
}
.cid-s8k30HUND9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s8k30HUND9 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s8k30HUND9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s8k30HUND9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAOmpwOJa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skAOnzCN92 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skAOnzCN92 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAOnzCN92 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAOnzCN92 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAOnzCN92 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAOnzCN92 .row > .row {
  display: block;
}
.cid-skAOnzCN92 .mbr-gallery-item {
  width: 100%;
}
.cid-skAOnzCN92 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAOnzCN92 .mbr-gallery-item > div {
  position: relative;
}
.cid-skAOnzCN92 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAOnzCN92 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAOnzCN92 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAOnzCN92 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3u3GwDmj9 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s3u3GwDmj9 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3u3GwDmj9 div.b {
  padding-top: 2rem;
}
.cid-s3u3GwDmj9 H5 {
  color: #232323;
}
.cid-s3vWPsSdWk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s3vWPsSdWk .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3vWPsSdWk .section-text {
  padding: 2rem 0;
}
.cid-s3vWPsSdWk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3vWPsSdWk .inner-container {
    width: 100% !important;
  }
}
.cid-v7rEb1Ghmq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rEb1Ghmq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rEb1Ghmq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rEb1Ghmq .row {
  justify-content: center;
}
.cid-v7rEb1Ghmq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rEb1Ghmq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rEb1Ghmq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rEb1Ghmq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rEb1Ghmq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rEb1Ghmq .mbr-text_1,
.cid-v7rEb1Ghmq .mbr-text_2,
.cid-v7rEb1Ghmq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rEb1Ghmq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rEb1Ghmq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rEb1Ghmq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rEb1Ghmq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rEb1Ghmq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rEb1Ghmq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rEb1Ghmq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rEb1Ghmq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rEb1Ghmq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rEb1Ghmq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rEb1Ghmq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rEb1Ghmq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rEb1Ghmq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rEbXPGwR {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rEbXPGwR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rEbXPGwR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rEbXPGwR .row {
  justify-content: center;
}
.cid-v7rEbXPGwR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rEbXPGwR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rEbXPGwR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rEbXPGwR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rEbXPGwR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rEbXPGwR .mbr-text_1,
.cid-v7rEbXPGwR .mbr-text_2,
.cid-v7rEbXPGwR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rEbXPGwR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rEbXPGwR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rEbXPGwR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rEbXPGwR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rEbXPGwR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rEbXPGwR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rEbXPGwR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rEbXPGwR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rEbXPGwR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rEbXPGwR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rEbXPGwR .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rEbXPGwR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rEbXPGwR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3vWPvqTbU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s3vWPvqTbU .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3vWPvqTbU .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s3vWPvqTbU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3vWPvqTbU .inner-container {
    width: 100% !important;
  }
}
.cid-v8aCI4tnHP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aCI4tnHP .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aCI4tnHP .container-table {
  margin: 0 auto;
}
.cid-v8aCI4tnHP .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aCI4tnHP .dataTables_wrapper {
  display: block;
}
.cid-v8aCI4tnHP .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aCI4tnHP .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aCI4tnHP table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aCI4tnHP table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aCI4tnHP table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aCI4tnHP table td {
  border-top: 1px solid #232323;
}
.cid-v8aCI4tnHP .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aCI4tnHP .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aCI4tnHP .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aCI4tnHP .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aCI4tnHP .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aCI4tnHP .dataTables_filter {
    text-align: center;
  }
  .cid-v8aCI4tnHP .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aCI4tnHP .mbr-section-title {
  color: #232323;
}
.cid-v8aCI4tnHP .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aCI4tnHP .body-item {
  text-align: center;
}
.cid-s3vWPyNg5X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s3vWPyNg5X .mbr-section-subtitle {
  color: #767676;
}
.cid-s3vWPyNg5X .container-table {
  margin: 0 auto;
}
.cid-s3vWPyNg5X .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s3vWPyNg5X .dataTables_wrapper {
  display: block;
}
.cid-s3vWPyNg5X .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s3vWPyNg5X .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s3vWPyNg5X table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s3vWPyNg5X table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s3vWPyNg5X table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s3vWPyNg5X table td {
  border-top: 1px solid #232323;
}
.cid-s3vWPyNg5X .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s3vWPyNg5X .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s3vWPyNg5X .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s3vWPyNg5X .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s3vWPyNg5X .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s3vWPyNg5X .dataTables_filter {
    text-align: center;
  }
  .cid-s3vWPyNg5X .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s3vWPyNg5X .mbr-section-title {
  color: #232323;
}
.cid-s3vWPyNg5X .head-item {
  text-align: center;
  color: #232323;
}
.cid-s3vWPyNg5X .body-item {
  text-align: center;
}
.cid-s3vWPMe7KT {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s3vWPMe7KT .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3vWPMe7KT div.b {
  padding-top: 2rem;
}
.cid-s3vWPMe7KT H5 {
  color: #232323;
}
.cid-s3zMWEQmVF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zMWEQmVF .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zMWEQmVF .section-text {
  padding: 2rem 0;
}
.cid-s3zMWEQmVF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zMWEQmVF .inner-container {
    width: 100% !important;
  }
}
.cid-v72pZxqLjU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v72pZxqLjU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72pZxqLjU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72pZxqLjU .row {
  justify-content: center;
}
.cid-v72pZxqLjU .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72pZxqLjU .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72pZxqLjU .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72pZxqLjU .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72pZxqLjU .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72pZxqLjU .mbr-text_1,
.cid-v72pZxqLjU .mbr-text_2,
.cid-v72pZxqLjU .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72pZxqLjU .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72pZxqLjU .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72pZxqLjU .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72pZxqLjU .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72pZxqLjU .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72pZxqLjU .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72pZxqLjU .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72pZxqLjU .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72pZxqLjU .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72pZxqLjU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72pZxqLjU .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72pZxqLjU .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72pZxqLjU .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72q0vteFK {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v72q0vteFK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72q0vteFK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72q0vteFK .row {
  justify-content: center;
}
.cid-v72q0vteFK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72q0vteFK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72q0vteFK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72q0vteFK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72q0vteFK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72q0vteFK .mbr-text_1,
.cid-v72q0vteFK .mbr-text_2,
.cid-v72q0vteFK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72q0vteFK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72q0vteFK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72q0vteFK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72q0vteFK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72q0vteFK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72q0vteFK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72q0vteFK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72q0vteFK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72q0vteFK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72q0vteFK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72q0vteFK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72q0vteFK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72q0vteFK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72qz7iSaf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72qz7iSaf .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v72qz7iSaf .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v72qz7iSaf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v72qz7iSaf .inner-container {
    width: 100% !important;
  }
}
.cid-v72q2h2VZA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72q2h2VZA .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v72q2h2VZA .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v72q2h2VZA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v72q2h2VZA .inner-container {
    width: 100% !important;
  }
}
.cid-v72pXBfiEU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72pXBfiEU .mbr-section-subtitle {
  color: #767676;
}
.cid-v72pXBfiEU .container-table {
  margin: 0 auto;
}
.cid-v72pXBfiEU .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v72pXBfiEU .dataTables_wrapper {
  display: block;
}
.cid-v72pXBfiEU .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v72pXBfiEU .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v72pXBfiEU table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v72pXBfiEU table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v72pXBfiEU table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v72pXBfiEU table td {
  border-top: 1px solid #232323;
}
.cid-v72pXBfiEU table.table {
  background: #ecae15;
}
.cid-v72pXBfiEU .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v72pXBfiEU .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v72pXBfiEU .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v72pXBfiEU .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v72pXBfiEU .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v72pXBfiEU .dataTables_filter {
    text-align: center;
  }
  .cid-v72pXBfiEU .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v72pXBfiEU .mbr-section-title {
  color: #232323;
}
.cid-v72pXBfiEU .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v72pXBfiEU .body-item {
  text-align: center;
}
.cid-s3zMWHzzjT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zMWHzzjT .item {
  padding-bottom: 2rem;
}
.cid-s3zMWHzzjT .item-wrapper {
  height: 100%;
}
.cid-s3zMWHzzjT .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3zMWHzzjT .carousel-control,
.cid-s3zMWHzzjT .close {
  background: #1b1b1b;
}
.cid-s3zMWHzzjT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3zMWHzzjT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3zMWHzzjT .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3zMWHzzjT .close::before {
  content: '\e91a';
}
.cid-s3zMWHzzjT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3zMWHzzjT .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3zMWHzzjT .carousel-inner > .active {
  display: block;
}
.cid-s3zMWHzzjT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3zMWHzzjT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3zMWHzzjT .carousel-control .icon-next,
.cid-s3zMWHzzjT .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3zMWHzzjT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3zMWHzzjT .carousel-control,
  .cid-s3zMWHzzjT .carousel-indicators,
  .cid-s3zMWHzzjT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWHzzjT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3zMWHzzjT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3zMWHzzjT .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3zMWHzzjT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWHzzjT .carousel-indicators {
    display: none;
  }
}
.cid-s3zMWHzzjT .carousel-indicators .active,
.cid-s3zMWHzzjT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3zMWHzzjT .carousel-indicators .active {
  background: #fff;
}
.cid-s3zMWHzzjT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3zMWHzzjT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3zMWHzzjT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3zMWHzzjT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3zMWHzzjT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3zMWHzzjT .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3zMWHzzjT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3zMWHzzjT .carousel {
  width: 100%;
}
.cid-s3zMWHzzjT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3zMWHzzjT .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3zMWHzzjT .modal.fade .modal-dialog,
.cid-s3zMWHzzjT .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3zMWHzzjT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3zMWHzzjT a {
  display: block;
}
.cid-s3zMWHzzjT a.img {
  pointer-events: none;
}
.cid-s3zMWHzzjT H3 {
  color: #232323;
}
.cid-s3zMWID3xJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zMWID3xJ .item {
  padding-bottom: 2rem;
}
.cid-s3zMWID3xJ .item-wrapper {
  height: 100%;
}
.cid-s3zMWID3xJ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3zMWID3xJ .carousel-control,
.cid-s3zMWID3xJ .close {
  background: #1b1b1b;
}
.cid-s3zMWID3xJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3zMWID3xJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3zMWID3xJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3zMWID3xJ .close::before {
  content: '\e91a';
}
.cid-s3zMWID3xJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3zMWID3xJ .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3zMWID3xJ .carousel-inner > .active {
  display: block;
}
.cid-s3zMWID3xJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3zMWID3xJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3zMWID3xJ .carousel-control .icon-next,
.cid-s3zMWID3xJ .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3zMWID3xJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3zMWID3xJ .carousel-control,
  .cid-s3zMWID3xJ .carousel-indicators,
  .cid-s3zMWID3xJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWID3xJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3zMWID3xJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3zMWID3xJ .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3zMWID3xJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWID3xJ .carousel-indicators {
    display: none;
  }
}
.cid-s3zMWID3xJ .carousel-indicators .active,
.cid-s3zMWID3xJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3zMWID3xJ .carousel-indicators .active {
  background: #fff;
}
.cid-s3zMWID3xJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3zMWID3xJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3zMWID3xJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3zMWID3xJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3zMWID3xJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3zMWID3xJ .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3zMWID3xJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3zMWID3xJ .carousel {
  width: 100%;
}
.cid-s3zMWID3xJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3zMWID3xJ .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3zMWID3xJ .modal.fade .modal-dialog,
.cid-s3zMWID3xJ .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3zMWID3xJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3zMWID3xJ a {
  display: block;
}
.cid-s3zMWID3xJ a.img {
  pointer-events: none;
}
.cid-s3zMWID3xJ H3 {
  color: #232323;
}
.cid-s3zMWJOtin {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zMWJOtin .item {
  padding-bottom: 2rem;
}
.cid-s3zMWJOtin .item-wrapper {
  height: 100%;
}
.cid-s3zMWJOtin .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3zMWJOtin .carousel-control,
.cid-s3zMWJOtin .close {
  background: #1b1b1b;
}
.cid-s3zMWJOtin .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3zMWJOtin .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3zMWJOtin .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3zMWJOtin .close::before {
  content: '\e91a';
}
.cid-s3zMWJOtin .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3zMWJOtin .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3zMWJOtin .carousel-inner > .active {
  display: block;
}
.cid-s3zMWJOtin .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3zMWJOtin .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3zMWJOtin .carousel-control .icon-next,
.cid-s3zMWJOtin .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3zMWJOtin .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3zMWJOtin .carousel-control,
  .cid-s3zMWJOtin .carousel-indicators,
  .cid-s3zMWJOtin .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWJOtin .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3zMWJOtin .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3zMWJOtin .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3zMWJOtin .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWJOtin .carousel-indicators {
    display: none;
  }
}
.cid-s3zMWJOtin .carousel-indicators .active,
.cid-s3zMWJOtin .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3zMWJOtin .carousel-indicators .active {
  background: #fff;
}
.cid-s3zMWJOtin .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3zMWJOtin .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3zMWJOtin .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3zMWJOtin .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3zMWJOtin .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3zMWJOtin .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3zMWJOtin .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3zMWJOtin .carousel {
  width: 100%;
}
.cid-s3zMWJOtin .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3zMWJOtin .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3zMWJOtin .modal.fade .modal-dialog,
.cid-s3zMWJOtin .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3zMWJOtin .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3zMWJOtin a {
  display: block;
}
.cid-s3zMWJOtin a.img {
  pointer-events: none;
}
.cid-s3zMWJOtin H3 {
  color: #232323;
}
.cid-s3zMWKHErL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zMWKHErL .item {
  padding-bottom: 2rem;
}
.cid-s3zMWKHErL .item-wrapper {
  height: 100%;
}
.cid-s3zMWKHErL .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3zMWKHErL .carousel-control,
.cid-s3zMWKHErL .close {
  background: #1b1b1b;
}
.cid-s3zMWKHErL .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3zMWKHErL .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3zMWKHErL .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3zMWKHErL .close::before {
  content: '\e91a';
}
.cid-s3zMWKHErL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3zMWKHErL .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3zMWKHErL .carousel-inner > .active {
  display: block;
}
.cid-s3zMWKHErL .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3zMWKHErL .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3zMWKHErL .carousel-control .icon-next,
.cid-s3zMWKHErL .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3zMWKHErL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3zMWKHErL .carousel-control,
  .cid-s3zMWKHErL .carousel-indicators,
  .cid-s3zMWKHErL .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWKHErL .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3zMWKHErL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3zMWKHErL .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3zMWKHErL .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWKHErL .carousel-indicators {
    display: none;
  }
}
.cid-s3zMWKHErL .carousel-indicators .active,
.cid-s3zMWKHErL .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3zMWKHErL .carousel-indicators .active {
  background: #fff;
}
.cid-s3zMWKHErL .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3zMWKHErL .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3zMWKHErL .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3zMWKHErL .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3zMWKHErL .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3zMWKHErL .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3zMWKHErL .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3zMWKHErL .carousel {
  width: 100%;
}
.cid-s3zMWKHErL .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3zMWKHErL .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3zMWKHErL .modal.fade .modal-dialog,
.cid-s3zMWKHErL .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3zMWKHErL .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3zMWKHErL a {
  display: block;
}
.cid-s3zMWKHErL a.img {
  pointer-events: none;
}
.cid-s3zMWKHErL H3 {
  color: #232323;
}
.cid-s3zMWLjDd1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zMWLjDd1 .item {
  padding-bottom: 2rem;
}
.cid-s3zMWLjDd1 .item-wrapper {
  height: 100%;
}
.cid-s3zMWLjDd1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3zMWLjDd1 .carousel-control,
.cid-s3zMWLjDd1 .close {
  background: #1b1b1b;
}
.cid-s3zMWLjDd1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3zMWLjDd1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3zMWLjDd1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3zMWLjDd1 .close::before {
  content: '\e91a';
}
.cid-s3zMWLjDd1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3zMWLjDd1 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3zMWLjDd1 .carousel-inner > .active {
  display: block;
}
.cid-s3zMWLjDd1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3zMWLjDd1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3zMWLjDd1 .carousel-control .icon-next,
.cid-s3zMWLjDd1 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3zMWLjDd1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3zMWLjDd1 .carousel-control,
  .cid-s3zMWLjDd1 .carousel-indicators,
  .cid-s3zMWLjDd1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWLjDd1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3zMWLjDd1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3zMWLjDd1 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3zMWLjDd1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWLjDd1 .carousel-indicators {
    display: none;
  }
}
.cid-s3zMWLjDd1 .carousel-indicators .active,
.cid-s3zMWLjDd1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3zMWLjDd1 .carousel-indicators .active {
  background: #fff;
}
.cid-s3zMWLjDd1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3zMWLjDd1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3zMWLjDd1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3zMWLjDd1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3zMWLjDd1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3zMWLjDd1 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3zMWLjDd1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3zMWLjDd1 .carousel {
  width: 100%;
}
.cid-s3zMWLjDd1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3zMWLjDd1 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3zMWLjDd1 .modal.fade .modal-dialog,
.cid-s3zMWLjDd1 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3zMWLjDd1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3zMWLjDd1 a {
  display: block;
}
.cid-s3zMWLjDd1 a.img {
  pointer-events: none;
}
.cid-s3zMWLjDd1 H3 {
  color: #232323;
}
.cid-s3zMWMwlRA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zMWMwlRA .item {
  padding-bottom: 2rem;
}
.cid-s3zMWMwlRA .item-wrapper {
  height: 100%;
}
.cid-s3zMWMwlRA .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3zMWMwlRA .carousel-control,
.cid-s3zMWMwlRA .close {
  background: #1b1b1b;
}
.cid-s3zMWMwlRA .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3zMWMwlRA .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3zMWMwlRA .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3zMWMwlRA .close::before {
  content: '\e91a';
}
.cid-s3zMWMwlRA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3zMWMwlRA .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3zMWMwlRA .carousel-inner > .active {
  display: block;
}
.cid-s3zMWMwlRA .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3zMWMwlRA .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3zMWMwlRA .carousel-control .icon-next,
.cid-s3zMWMwlRA .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3zMWMwlRA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3zMWMwlRA .carousel-control,
  .cid-s3zMWMwlRA .carousel-indicators,
  .cid-s3zMWMwlRA .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWMwlRA .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3zMWMwlRA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3zMWMwlRA .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3zMWMwlRA .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWMwlRA .carousel-indicators {
    display: none;
  }
}
.cid-s3zMWMwlRA .carousel-indicators .active,
.cid-s3zMWMwlRA .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3zMWMwlRA .carousel-indicators .active {
  background: #fff;
}
.cid-s3zMWMwlRA .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3zMWMwlRA .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3zMWMwlRA .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3zMWMwlRA .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3zMWMwlRA .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3zMWMwlRA .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3zMWMwlRA .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3zMWMwlRA .carousel {
  width: 100%;
}
.cid-s3zMWMwlRA .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3zMWMwlRA .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3zMWMwlRA .modal.fade .modal-dialog,
.cid-s3zMWMwlRA .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3zMWMwlRA .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3zMWMwlRA a {
  display: block;
}
.cid-s3zMWMwlRA a.img {
  pointer-events: none;
}
.cid-s3zMWMwlRA H3 {
  color: #232323;
}
.cid-s3zMWNcKFS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zMWNcKFS .item {
  padding-bottom: 2rem;
}
.cid-s3zMWNcKFS .item-wrapper {
  height: 100%;
}
.cid-s3zMWNcKFS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3zMWNcKFS .carousel-control,
.cid-s3zMWNcKFS .close {
  background: #1b1b1b;
}
.cid-s3zMWNcKFS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3zMWNcKFS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3zMWNcKFS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3zMWNcKFS .close::before {
  content: '\e91a';
}
.cid-s3zMWNcKFS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3zMWNcKFS .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3zMWNcKFS .carousel-inner > .active {
  display: block;
}
.cid-s3zMWNcKFS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3zMWNcKFS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3zMWNcKFS .carousel-control .icon-next,
.cid-s3zMWNcKFS .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3zMWNcKFS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3zMWNcKFS .carousel-control,
  .cid-s3zMWNcKFS .carousel-indicators,
  .cid-s3zMWNcKFS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWNcKFS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3zMWNcKFS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3zMWNcKFS .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3zMWNcKFS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWNcKFS .carousel-indicators {
    display: none;
  }
}
.cid-s3zMWNcKFS .carousel-indicators .active,
.cid-s3zMWNcKFS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3zMWNcKFS .carousel-indicators .active {
  background: #fff;
}
.cid-s3zMWNcKFS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3zMWNcKFS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3zMWNcKFS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3zMWNcKFS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3zMWNcKFS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3zMWNcKFS .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3zMWNcKFS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3zMWNcKFS .carousel {
  width: 100%;
}
.cid-s3zMWNcKFS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3zMWNcKFS .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3zMWNcKFS .modal.fade .modal-dialog,
.cid-s3zMWNcKFS .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3zMWNcKFS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3zMWNcKFS a {
  display: block;
}
.cid-s3zMWNcKFS a.img {
  pointer-events: none;
}
.cid-s3zMWNcKFS H3 {
  color: #232323;
}
.cid-s3zMWNHnNa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zMWNHnNa .item {
  padding-bottom: 2rem;
}
.cid-s3zMWNHnNa .item-wrapper {
  height: 100%;
}
.cid-s3zMWNHnNa .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3zMWNHnNa .carousel-control,
.cid-s3zMWNHnNa .close {
  background: #1b1b1b;
}
.cid-s3zMWNHnNa .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3zMWNHnNa .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3zMWNHnNa .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3zMWNHnNa .close::before {
  content: '\e91a';
}
.cid-s3zMWNHnNa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3zMWNHnNa .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3zMWNHnNa .carousel-inner > .active {
  display: block;
}
.cid-s3zMWNHnNa .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3zMWNHnNa .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3zMWNHnNa .carousel-control .icon-next,
.cid-s3zMWNHnNa .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3zMWNHnNa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3zMWNHnNa .carousel-control,
  .cid-s3zMWNHnNa .carousel-indicators,
  .cid-s3zMWNHnNa .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWNHnNa .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3zMWNHnNa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3zMWNHnNa .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3zMWNHnNa .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWNHnNa .carousel-indicators {
    display: none;
  }
}
.cid-s3zMWNHnNa .carousel-indicators .active,
.cid-s3zMWNHnNa .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3zMWNHnNa .carousel-indicators .active {
  background: #fff;
}
.cid-s3zMWNHnNa .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3zMWNHnNa .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3zMWNHnNa .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3zMWNHnNa .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3zMWNHnNa .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3zMWNHnNa .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3zMWNHnNa .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3zMWNHnNa .carousel {
  width: 100%;
}
.cid-s3zMWNHnNa .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3zMWNHnNa .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3zMWNHnNa .modal.fade .modal-dialog,
.cid-s3zMWNHnNa .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3zMWNHnNa .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3zMWNHnNa a {
  display: block;
}
.cid-s3zMWNHnNa a.img {
  pointer-events: none;
}
.cid-s3zMWNHnNa H3 {
  color: #232323;
}
.cid-s3zMWOcevG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zMWOcevG .item {
  padding-bottom: 2rem;
}
.cid-s3zMWOcevG .item-wrapper {
  height: 100%;
}
.cid-s3zMWOcevG .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3zMWOcevG .carousel-control,
.cid-s3zMWOcevG .close {
  background: #1b1b1b;
}
.cid-s3zMWOcevG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3zMWOcevG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3zMWOcevG .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3zMWOcevG .close::before {
  content: '\e91a';
}
.cid-s3zMWOcevG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3zMWOcevG .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3zMWOcevG .carousel-inner > .active {
  display: block;
}
.cid-s3zMWOcevG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3zMWOcevG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3zMWOcevG .carousel-control .icon-next,
.cid-s3zMWOcevG .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3zMWOcevG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3zMWOcevG .carousel-control,
  .cid-s3zMWOcevG .carousel-indicators,
  .cid-s3zMWOcevG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWOcevG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3zMWOcevG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3zMWOcevG .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3zMWOcevG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWOcevG .carousel-indicators {
    display: none;
  }
}
.cid-s3zMWOcevG .carousel-indicators .active,
.cid-s3zMWOcevG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3zMWOcevG .carousel-indicators .active {
  background: #fff;
}
.cid-s3zMWOcevG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3zMWOcevG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3zMWOcevG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3zMWOcevG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3zMWOcevG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3zMWOcevG .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3zMWOcevG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3zMWOcevG .carousel {
  width: 100%;
}
.cid-s3zMWOcevG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3zMWOcevG .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3zMWOcevG .modal.fade .modal-dialog,
.cid-s3zMWOcevG .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3zMWOcevG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3zMWOcevG a {
  display: block;
}
.cid-s3zMWOcevG a.img {
  pointer-events: none;
}
.cid-s3zMWOcevG H3 {
  color: #232323;
}
.cid-s3zMWOHAkm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zMWOHAkm .item {
  padding-bottom: 2rem;
}
.cid-s3zMWOHAkm .item-wrapper {
  height: 100%;
}
.cid-s3zMWOHAkm .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3zMWOHAkm .carousel-control,
.cid-s3zMWOHAkm .close {
  background: #1b1b1b;
}
.cid-s3zMWOHAkm .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3zMWOHAkm .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3zMWOHAkm .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3zMWOHAkm .close::before {
  content: '\e91a';
}
.cid-s3zMWOHAkm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3zMWOHAkm .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3zMWOHAkm .carousel-inner > .active {
  display: block;
}
.cid-s3zMWOHAkm .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3zMWOHAkm .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3zMWOHAkm .carousel-control .icon-next,
.cid-s3zMWOHAkm .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3zMWOHAkm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3zMWOHAkm .carousel-control,
  .cid-s3zMWOHAkm .carousel-indicators,
  .cid-s3zMWOHAkm .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWOHAkm .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3zMWOHAkm .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3zMWOHAkm .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3zMWOHAkm .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWOHAkm .carousel-indicators {
    display: none;
  }
}
.cid-s3zMWOHAkm .carousel-indicators .active,
.cid-s3zMWOHAkm .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3zMWOHAkm .carousel-indicators .active {
  background: #fff;
}
.cid-s3zMWOHAkm .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3zMWOHAkm .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3zMWOHAkm .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3zMWOHAkm .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3zMWOHAkm .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3zMWOHAkm .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3zMWOHAkm .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3zMWOHAkm .carousel {
  width: 100%;
}
.cid-s3zMWOHAkm .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3zMWOHAkm .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3zMWOHAkm .modal.fade .modal-dialog,
.cid-s3zMWOHAkm .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3zMWOHAkm .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3zMWOHAkm a {
  display: block;
}
.cid-s3zMWOHAkm a.img {
  pointer-events: none;
}
.cid-s3zMWOHAkm H3 {
  color: #232323;
}
.cid-s3zMWPof3N {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zMWPof3N .item {
  padding-bottom: 2rem;
}
.cid-s3zMWPof3N .item-wrapper {
  height: 100%;
}
.cid-s3zMWPof3N .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3zMWPof3N .carousel-control,
.cid-s3zMWPof3N .close {
  background: #1b1b1b;
}
.cid-s3zMWPof3N .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3zMWPof3N .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3zMWPof3N .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3zMWPof3N .close::before {
  content: '\e91a';
}
.cid-s3zMWPof3N .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3zMWPof3N .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3zMWPof3N .carousel-inner > .active {
  display: block;
}
.cid-s3zMWPof3N .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3zMWPof3N .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3zMWPof3N .carousel-control .icon-next,
.cid-s3zMWPof3N .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3zMWPof3N .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3zMWPof3N .carousel-control,
  .cid-s3zMWPof3N .carousel-indicators,
  .cid-s3zMWPof3N .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWPof3N .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3zMWPof3N .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3zMWPof3N .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3zMWPof3N .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWPof3N .carousel-indicators {
    display: none;
  }
}
.cid-s3zMWPof3N .carousel-indicators .active,
.cid-s3zMWPof3N .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3zMWPof3N .carousel-indicators .active {
  background: #fff;
}
.cid-s3zMWPof3N .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3zMWPof3N .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3zMWPof3N .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3zMWPof3N .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3zMWPof3N .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3zMWPof3N .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3zMWPof3N .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3zMWPof3N .carousel {
  width: 100%;
}
.cid-s3zMWPof3N .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3zMWPof3N .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3zMWPof3N .modal.fade .modal-dialog,
.cid-s3zMWPof3N .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3zMWPof3N .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3zMWPof3N a {
  display: block;
}
.cid-s3zMWPof3N a.img {
  pointer-events: none;
}
.cid-s3zMWPof3N H3 {
  color: #232323;
}
.cid-s3zMWPXccj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zMWPXccj .item {
  padding-bottom: 2rem;
}
.cid-s3zMWPXccj .item-wrapper {
  height: 100%;
}
.cid-s3zMWPXccj .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3zMWPXccj .carousel-control,
.cid-s3zMWPXccj .close {
  background: #1b1b1b;
}
.cid-s3zMWPXccj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3zMWPXccj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3zMWPXccj .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3zMWPXccj .close::before {
  content: '\e91a';
}
.cid-s3zMWPXccj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3zMWPXccj .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3zMWPXccj .carousel-inner > .active {
  display: block;
}
.cid-s3zMWPXccj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3zMWPXccj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3zMWPXccj .carousel-control .icon-next,
.cid-s3zMWPXccj .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3zMWPXccj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3zMWPXccj .carousel-control,
  .cid-s3zMWPXccj .carousel-indicators,
  .cid-s3zMWPXccj .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWPXccj .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3zMWPXccj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3zMWPXccj .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3zMWPXccj .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3zMWPXccj .carousel-indicators {
    display: none;
  }
}
.cid-s3zMWPXccj .carousel-indicators .active,
.cid-s3zMWPXccj .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3zMWPXccj .carousel-indicators .active {
  background: #fff;
}
.cid-s3zMWPXccj .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3zMWPXccj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3zMWPXccj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3zMWPXccj .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3zMWPXccj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3zMWPXccj .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3zMWPXccj .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3zMWPXccj .carousel {
  width: 100%;
}
.cid-s3zMWPXccj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3zMWPXccj .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3zMWPXccj .modal.fade .modal-dialog,
.cid-s3zMWPXccj .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3zMWPXccj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3zMWPXccj a {
  display: block;
}
.cid-s3zMWPXccj a.img {
  pointer-events: none;
}
.cid-s3zMWPXccj H3 {
  color: #232323;
}
.cid-s3zMWQvvNj {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s3zMWQvvNj .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3zMWQvvNj div.b {
  padding-top: 2rem;
}
.cid-s3zMWQvvNj H5 {
  color: #232323;
}
.cid-s3zONqI0qy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zONqI0qy .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zONqI0qy .section-text {
  padding: 2rem 0;
}
.cid-s3zONqI0qy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zONqI0qy .inner-container {
    width: 100% !important;
  }
}
.cid-v72rm0PrZg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v72rm0PrZg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72rm0PrZg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72rm0PrZg .row {
  justify-content: center;
}
.cid-v72rm0PrZg .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72rm0PrZg .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72rm0PrZg .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72rm0PrZg .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72rm0PrZg .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72rm0PrZg .mbr-text_1,
.cid-v72rm0PrZg .mbr-text_2,
.cid-v72rm0PrZg .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72rm0PrZg .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72rm0PrZg .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72rm0PrZg .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72rm0PrZg .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72rm0PrZg .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72rm0PrZg .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72rm0PrZg .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72rm0PrZg .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72rm0PrZg .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72rm0PrZg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72rm0PrZg .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72rm0PrZg .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72rm0PrZg .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72rnigNJC {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v72rnigNJC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72rnigNJC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72rnigNJC .row {
  justify-content: center;
}
.cid-v72rnigNJC .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72rnigNJC .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72rnigNJC .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72rnigNJC .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72rnigNJC .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72rnigNJC .mbr-text_1,
.cid-v72rnigNJC .mbr-text_2,
.cid-v72rnigNJC .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72rnigNJC .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72rnigNJC .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72rnigNJC .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72rnigNJC .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72rnigNJC .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72rnigNJC .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72rnigNJC .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72rnigNJC .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72rnigNJC .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72rnigNJC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72rnigNJC .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72rnigNJC .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72rnigNJC .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72rqIYZg8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72rqIYZg8 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v72rqIYZg8 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v72rqIYZg8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v72rqIYZg8 .inner-container {
    width: 100% !important;
  }
}
.cid-v72rsabyp6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72rsabyp6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v72rsabyp6 .section-text {
  padding: 2rem 0;
}
.cid-v72rsabyp6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v72rsabyp6 .inner-container {
    width: 100% !important;
  }
}
.cid-v72rtyR6dJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72rtyR6dJ .mbr-section-subtitle {
  color: #767676;
}
.cid-v72rtyR6dJ .container-table {
  margin: 0 auto;
}
.cid-v72rtyR6dJ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v72rtyR6dJ .dataTables_wrapper {
  display: block;
}
.cid-v72rtyR6dJ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v72rtyR6dJ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v72rtyR6dJ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v72rtyR6dJ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v72rtyR6dJ table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v72rtyR6dJ table td {
  border-top: 1px solid #232323;
}
.cid-v72rtyR6dJ table.table {
  background: #ecae15;
}
.cid-v72rtyR6dJ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v72rtyR6dJ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v72rtyR6dJ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v72rtyR6dJ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v72rtyR6dJ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v72rtyR6dJ .dataTables_filter {
    text-align: center;
  }
  .cid-v72rtyR6dJ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v72rtyR6dJ .mbr-section-title {
  color: #232323;
}
.cid-v72rtyR6dJ .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v72rtyR6dJ .body-item {
  text-align: center;
}
.cid-smHRggEuND {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smHRrSexUN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smHRrSexUN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smHRrSexUN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smHRrSexUN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smHRrSexUN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smHRrSexUN .row > .row {
  display: block;
}
.cid-smHRrSexUN .mbr-gallery-item {
  width: 100%;
}
.cid-smHRrSexUN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smHRrSexUN .mbr-gallery-item > div {
  position: relative;
}
.cid-smHRrSexUN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smHRrSexUN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smHRrSexUN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smHRrSexUN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smHREJSepo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smHRG999T3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smHRG999T3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smHRG999T3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smHRG999T3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smHRG999T3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smHRG999T3 .row > .row {
  display: block;
}
.cid-smHRG999T3 .mbr-gallery-item {
  width: 100%;
}
.cid-smHRG999T3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smHRG999T3 .mbr-gallery-item > div {
  position: relative;
}
.cid-smHRG999T3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smHRG999T3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smHRG999T3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smHRG999T3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smKrDmc5bm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smKrRxP07q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smKrRxP07q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smKrRxP07q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smKrRxP07q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smKrRxP07q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smKrRxP07q .row > .row {
  display: block;
}
.cid-smKrRxP07q .mbr-gallery-item {
  width: 100%;
}
.cid-smKrRxP07q .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smKrRxP07q .mbr-gallery-item > div {
  position: relative;
}
.cid-smKrRxP07q .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smKrRxP07q .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smKrRxP07q .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smKrRxP07q .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smKrAHcW6O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smKrZ4TGip {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smKrZ4TGip .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smKrZ4TGip .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smKrZ4TGip .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smKrZ4TGip .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smKrZ4TGip .row > .row {
  display: block;
}
.cid-smKrZ4TGip .mbr-gallery-item {
  width: 100%;
}
.cid-smKrZ4TGip .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smKrZ4TGip .mbr-gallery-item > div {
  position: relative;
}
.cid-smKrZ4TGip .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smKrZ4TGip .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smKrZ4TGip .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smKrZ4TGip .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smKrE6UFLv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smKsbVupIT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smKsbVupIT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smKsbVupIT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smKsbVupIT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smKsbVupIT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smKsbVupIT .row > .row {
  display: block;
}
.cid-smKsbVupIT .mbr-gallery-item {
  width: 100%;
}
.cid-smKsbVupIT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smKsbVupIT .mbr-gallery-item > div {
  position: relative;
}
.cid-smKsbVupIT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smKsbVupIT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smKsbVupIT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smKsbVupIT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smKrJoeRdu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smKscHdpaR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smKscHdpaR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smKscHdpaR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smKscHdpaR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smKscHdpaR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smKscHdpaR .row > .row {
  display: block;
}
.cid-smKscHdpaR .mbr-gallery-item {
  width: 100%;
}
.cid-smKscHdpaR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smKscHdpaR .mbr-gallery-item > div {
  position: relative;
}
.cid-smKscHdpaR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smKscHdpaR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smKscHdpaR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smKscHdpaR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smKrBRnFy7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smKsdEBfZh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smKsdEBfZh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smKsdEBfZh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smKsdEBfZh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smKsdEBfZh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smKsdEBfZh .row > .row {
  display: block;
}
.cid-smKsdEBfZh .mbr-gallery-item {
  width: 100%;
}
.cid-smKsdEBfZh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smKsdEBfZh .mbr-gallery-item > div {
  position: relative;
}
.cid-smKsdEBfZh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smKsdEBfZh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smKsdEBfZh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smKsdEBfZh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smKrKJBpzg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smKsex30ox {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smKsex30ox .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smKsex30ox .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smKsex30ox .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smKsex30ox .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smKsex30ox .row > .row {
  display: block;
}
.cid-smKsex30ox .mbr-gallery-item {
  width: 100%;
}
.cid-smKsex30ox .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smKsex30ox .mbr-gallery-item > div {
  position: relative;
}
.cid-smKsex30ox .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smKsex30ox .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smKsex30ox .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smKsex30ox .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smKrLhjJOW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smKsfkQcmT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smKsfkQcmT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smKsfkQcmT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smKsfkQcmT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smKsfkQcmT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smKsfkQcmT .row > .row {
  display: block;
}
.cid-smKsfkQcmT .mbr-gallery-item {
  width: 100%;
}
.cid-smKsfkQcmT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smKsfkQcmT .mbr-gallery-item > div {
  position: relative;
}
.cid-smKsfkQcmT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smKsfkQcmT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smKsfkQcmT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smKsfkQcmT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3zONymeIt {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s3zONymeIt .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3zONymeIt div.b {
  padding-top: 2rem;
}
.cid-s3zONymeIt H5 {
  color: #232323;
}
.cid-s3zQklr7XN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zQklr7XN .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zQklr7XN .section-text {
  padding: 2rem 0;
}
.cid-s3zQklr7XN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zQklr7XN .inner-container {
    width: 100% !important;
  }
}
.cid-v72qPzV6Eq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v72qPzV6Eq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72qPzV6Eq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72qPzV6Eq .row {
  justify-content: center;
}
.cid-v72qPzV6Eq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72qPzV6Eq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72qPzV6Eq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72qPzV6Eq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72qPzV6Eq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72qPzV6Eq .mbr-text_1,
.cid-v72qPzV6Eq .mbr-text_2,
.cid-v72qPzV6Eq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72qPzV6Eq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72qPzV6Eq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72qPzV6Eq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72qPzV6Eq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72qPzV6Eq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72qPzV6Eq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72qPzV6Eq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72qPzV6Eq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72qPzV6Eq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72qPzV6Eq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72qPzV6Eq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72qPzV6Eq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72qPzV6Eq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72qQN1oHa {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v72qQN1oHa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72qQN1oHa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72qQN1oHa .row {
  justify-content: center;
}
.cid-v72qQN1oHa .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72qQN1oHa .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72qQN1oHa .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72qQN1oHa .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72qQN1oHa .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72qQN1oHa .mbr-text_1,
.cid-v72qQN1oHa .mbr-text_2,
.cid-v72qQN1oHa .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72qQN1oHa .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72qQN1oHa .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72qQN1oHa .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72qQN1oHa .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72qQN1oHa .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72qQN1oHa .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72qQN1oHa .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72qQN1oHa .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72qQN1oHa .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72qQN1oHa .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72qQN1oHa .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72qQN1oHa .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72qQN1oHa .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72qO6uyVV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72qO6uyVV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v72qO6uyVV .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v72qO6uyVV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v72qO6uyVV .inner-container {
    width: 100% !important;
  }
}
.cid-s3zQkm51n5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zQkm51n5 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zQkm51n5 .section-text {
  padding: 2rem 0;
}
.cid-s3zQkm51n5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zQkm51n5 .inner-container {
    width: 100% !important;
  }
}
.cid-v72qS1anoh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72qS1anoh .mbr-section-subtitle {
  color: #767676;
}
.cid-v72qS1anoh .container-table {
  margin: 0 auto;
}
.cid-v72qS1anoh .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v72qS1anoh .dataTables_wrapper {
  display: block;
}
.cid-v72qS1anoh .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v72qS1anoh .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v72qS1anoh table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v72qS1anoh table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v72qS1anoh table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v72qS1anoh table td {
  border-top: 1px solid #232323;
}
.cid-v72qS1anoh table.table {
  background: #ecae15;
}
.cid-v72qS1anoh .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v72qS1anoh .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v72qS1anoh .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v72qS1anoh .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v72qS1anoh .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v72qS1anoh .dataTables_filter {
    text-align: center;
  }
  .cid-v72qS1anoh .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v72qS1anoh .mbr-section-title {
  color: #232323;
}
.cid-v72qS1anoh .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v72qS1anoh .body-item {
  text-align: center;
}
.cid-sndSTPTe1q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sndSVsF5vj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sndSVsF5vj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sndSVsF5vj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sndSVsF5vj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sndSVsF5vj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sndSVsF5vj .row > .row {
  display: block;
}
.cid-sndSVsF5vj .mbr-gallery-item {
  width: 100%;
}
.cid-sndSVsF5vj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sndSVsF5vj .mbr-gallery-item > div {
  position: relative;
}
.cid-sndSVsF5vj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sndSVsF5vj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sndSVsF5vj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sndSVsF5vj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sneaazx6X5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sneaczPEYh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sneaczPEYh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sneaczPEYh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sneaczPEYh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sneaczPEYh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sneaczPEYh .row > .row {
  display: block;
}
.cid-sneaczPEYh .mbr-gallery-item {
  width: 100%;
}
.cid-sneaczPEYh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sneaczPEYh .mbr-gallery-item > div {
  position: relative;
}
.cid-sneaczPEYh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sneaczPEYh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sneaczPEYh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sneaczPEYh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sneadSGBQG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sneasGxD9G {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sneasGxD9G .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sneasGxD9G .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sneasGxD9G .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sneasGxD9G .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sneasGxD9G .row > .row {
  display: block;
}
.cid-sneasGxD9G .mbr-gallery-item {
  width: 100%;
}
.cid-sneasGxD9G .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sneasGxD9G .mbr-gallery-item > div {
  position: relative;
}
.cid-sneasGxD9G .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sneasGxD9G .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sneasGxD9G .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sneasGxD9G .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sneafyzbsM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sneatQjW6M {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sneatQjW6M .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sneatQjW6M .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sneatQjW6M .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sneatQjW6M .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sneatQjW6M .row > .row {
  display: block;
}
.cid-sneatQjW6M .mbr-gallery-item {
  width: 100%;
}
.cid-sneatQjW6M .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sneatQjW6M .mbr-gallery-item > div {
  position: relative;
}
.cid-sneatQjW6M .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sneatQjW6M .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sneatQjW6M .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sneatQjW6M .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sneajf79IN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sneav9cexJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sneav9cexJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sneav9cexJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sneav9cexJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sneav9cexJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sneav9cexJ .row > .row {
  display: block;
}
.cid-sneav9cexJ .mbr-gallery-item {
  width: 100%;
}
.cid-sneav9cexJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sneav9cexJ .mbr-gallery-item > div {
  position: relative;
}
.cid-sneav9cexJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sneav9cexJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sneav9cexJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sneav9cexJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sneakxk3Nu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sneawOIq9J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sneawOIq9J .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sneawOIq9J .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sneawOIq9J .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sneawOIq9J .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sneawOIq9J .row > .row {
  display: block;
}
.cid-sneawOIq9J .mbr-gallery-item {
  width: 100%;
}
.cid-sneawOIq9J .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sneawOIq9J .mbr-gallery-item > div {
  position: relative;
}
.cid-sneawOIq9J .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sneawOIq9J .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sneawOIq9J .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sneawOIq9J .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sneamwpM5T {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sneaznr8pU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sneaznr8pU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sneaznr8pU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sneaznr8pU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sneaznr8pU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sneaznr8pU .row > .row {
  display: block;
}
.cid-sneaznr8pU .mbr-gallery-item {
  width: 100%;
}
.cid-sneaznr8pU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sneaznr8pU .mbr-gallery-item > div {
  position: relative;
}
.cid-sneaznr8pU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sneaznr8pU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sneaznr8pU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sneaznr8pU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sneagUi87Y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sneaAr4cYI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sneaAr4cYI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sneaAr4cYI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sneaAr4cYI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sneaAr4cYI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sneaAr4cYI .row > .row {
  display: block;
}
.cid-sneaAr4cYI .mbr-gallery-item {
  width: 100%;
}
.cid-sneaAr4cYI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sneaAr4cYI .mbr-gallery-item > div {
  position: relative;
}
.cid-sneaAr4cYI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sneaAr4cYI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sneaAr4cYI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sneaAr4cYI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snealrbQfc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sneaBCJtN5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sneaBCJtN5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sneaBCJtN5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sneaBCJtN5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sneaBCJtN5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sneaBCJtN5 .row > .row {
  display: block;
}
.cid-sneaBCJtN5 .mbr-gallery-item {
  width: 100%;
}
.cid-sneaBCJtN5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sneaBCJtN5 .mbr-gallery-item > div {
  position: relative;
}
.cid-sneaBCJtN5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sneaBCJtN5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sneaBCJtN5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sneaBCJtN5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sneanE0fab {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sneaxXdAPY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sneaxXdAPY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sneaxXdAPY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sneaxXdAPY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sneaxXdAPY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sneaxXdAPY .row > .row {
  display: block;
}
.cid-sneaxXdAPY .mbr-gallery-item {
  width: 100%;
}
.cid-sneaxXdAPY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sneaxXdAPY .mbr-gallery-item > div {
  position: relative;
}
.cid-sneaxXdAPY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sneaxXdAPY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sneaxXdAPY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sneaxXdAPY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sneapkIf8j {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sneaCVa6No {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sneaCVa6No .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sneaCVa6No .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sneaCVa6No .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sneaCVa6No .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sneaCVa6No .row > .row {
  display: block;
}
.cid-sneaCVa6No .mbr-gallery-item {
  width: 100%;
}
.cid-sneaCVa6No .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sneaCVa6No .mbr-gallery-item > div {
  position: relative;
}
.cid-sneaCVa6No .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sneaCVa6No .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sneaCVa6No .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sneaCVa6No .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sneaqeXb0p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sneaDOyYAm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sneaDOyYAm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sneaDOyYAm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sneaDOyYAm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sneaDOyYAm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sneaDOyYAm .row > .row {
  display: block;
}
.cid-sneaDOyYAm .mbr-gallery-item {
  width: 100%;
}
.cid-sneaDOyYAm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sneaDOyYAm .mbr-gallery-item > div {
  position: relative;
}
.cid-sneaDOyYAm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sneaDOyYAm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sneaDOyYAm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sneaDOyYAm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3zQktBIMX {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s3zQktBIMX .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3zQktBIMX div.b {
  padding-top: 2rem;
}
.cid-s3zQktBIMX H5 {
  color: #232323;
}
.cid-s3zQW2LBnU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zQW2LBnU .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zQW2LBnU .section-text {
  padding: 2rem 0;
}
.cid-s3zQW2LBnU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zQW2LBnU .inner-container {
    width: 100% !important;
  }
}
.cid-v72snzn2PB {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v72snzn2PB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72snzn2PB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72snzn2PB .row {
  justify-content: center;
}
.cid-v72snzn2PB .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72snzn2PB .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72snzn2PB .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72snzn2PB .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72snzn2PB .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72snzn2PB .mbr-text_1,
.cid-v72snzn2PB .mbr-text_2,
.cid-v72snzn2PB .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72snzn2PB .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72snzn2PB .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72snzn2PB .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72snzn2PB .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72snzn2PB .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72snzn2PB .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72snzn2PB .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72snzn2PB .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72snzn2PB .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72snzn2PB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72snzn2PB .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72snzn2PB .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72snzn2PB .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72soqtKOS {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v72soqtKOS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72soqtKOS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72soqtKOS .row {
  justify-content: center;
}
.cid-v72soqtKOS .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72soqtKOS .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72soqtKOS .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72soqtKOS .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72soqtKOS .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72soqtKOS .mbr-text_1,
.cid-v72soqtKOS .mbr-text_2,
.cid-v72soqtKOS .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72soqtKOS .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72soqtKOS .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72soqtKOS .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72soqtKOS .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72soqtKOS .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72soqtKOS .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72soqtKOS .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72soqtKOS .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72soqtKOS .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72soqtKOS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72soqtKOS .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72soqtKOS .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72soqtKOS .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72sq4PdSJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72sq4PdSJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v72sq4PdSJ .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v72sq4PdSJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v72sq4PdSJ .inner-container {
    width: 100% !important;
  }
}
.cid-v72srnadiX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72srnadiX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v72srnadiX .section-text {
  padding: 2rem 0;
}
.cid-v72srnadiX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v72srnadiX .inner-container {
    width: 100% !important;
  }
}
.cid-v72sstRh5j {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72sstRh5j .mbr-section-subtitle {
  color: #767676;
}
.cid-v72sstRh5j .container-table {
  margin: 0 auto;
}
.cid-v72sstRh5j .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v72sstRh5j .dataTables_wrapper {
  display: block;
}
.cid-v72sstRh5j .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v72sstRh5j .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v72sstRh5j table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v72sstRh5j table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v72sstRh5j table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v72sstRh5j table td {
  border-top: 1px solid #232323;
}
.cid-v72sstRh5j table.table {
  background: #ecae15;
}
.cid-v72sstRh5j .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v72sstRh5j .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v72sstRh5j .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v72sstRh5j .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v72sstRh5j .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v72sstRh5j .dataTables_filter {
    text-align: center;
  }
  .cid-v72sstRh5j .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v72sstRh5j .mbr-section-title {
  color: #232323;
}
.cid-v72sstRh5j .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v72sstRh5j .body-item {
  text-align: center;
}
.cid-smZxDAYj9M {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZxUPUTGy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZxUPUTGy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZxUPUTGy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZxUPUTGy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZxUPUTGy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZxUPUTGy .row > .row {
  display: block;
}
.cid-smZxUPUTGy .mbr-gallery-item {
  width: 100%;
}
.cid-smZxUPUTGy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZxUPUTGy .mbr-gallery-item > div {
  position: relative;
}
.cid-smZxUPUTGy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZxUPUTGy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZxUPUTGy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZxUPUTGy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZAASHVHv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZAENuuUN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZAENuuUN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZAENuuUN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZAENuuUN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZAENuuUN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZAENuuUN .row > .row {
  display: block;
}
.cid-smZAENuuUN .mbr-gallery-item {
  width: 100%;
}
.cid-smZAENuuUN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZAENuuUN .mbr-gallery-item > div {
  position: relative;
}
.cid-smZAENuuUN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZAENuuUN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZAENuuUN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZAENuuUN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZxFKxLer {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZAC9z6i4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZAC9z6i4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZAC9z6i4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZAC9z6i4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZAC9z6i4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZAC9z6i4 .row > .row {
  display: block;
}
.cid-smZAC9z6i4 .mbr-gallery-item {
  width: 100%;
}
.cid-smZAC9z6i4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZAC9z6i4 .mbr-gallery-item > div {
  position: relative;
}
.cid-smZAC9z6i4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZAC9z6i4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZAC9z6i4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZAC9z6i4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZAGwQquX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZxWeNX85 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZxWeNX85 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZxWeNX85 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZxWeNX85 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZxWeNX85 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZxWeNX85 .row > .row {
  display: block;
}
.cid-smZxWeNX85 .mbr-gallery-item {
  width: 100%;
}
.cid-smZxWeNX85 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZxWeNX85 .mbr-gallery-item > div {
  position: relative;
}
.cid-smZxWeNX85 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZxWeNX85 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZxWeNX85 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZxWeNX85 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZxHGc9S6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZxYly447 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZxYly447 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZxYly447 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZxYly447 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZxYly447 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZxYly447 .row > .row {
  display: block;
}
.cid-smZxYly447 .mbr-gallery-item {
  width: 100%;
}
.cid-smZxYly447 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZxYly447 .mbr-gallery-item > div {
  position: relative;
}
.cid-smZxYly447 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZxYly447 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZxYly447 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZxYly447 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZEkbVeI2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZEml58ww {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZEml58ww .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZEml58ww .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZEml58ww .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZEml58ww .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZEml58ww .row > .row {
  display: block;
}
.cid-smZEml58ww .mbr-gallery-item {
  width: 100%;
}
.cid-smZEml58ww .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZEml58ww .mbr-gallery-item > div {
  position: relative;
}
.cid-smZEml58ww .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZEml58ww .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZEml58ww .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZEml58ww .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZxEUgFfb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZxZrlqCn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZxZrlqCn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZxZrlqCn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZxZrlqCn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZxZrlqCn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZxZrlqCn .row > .row {
  display: block;
}
.cid-smZxZrlqCn .mbr-gallery-item {
  width: 100%;
}
.cid-smZxZrlqCn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZxZrlqCn .mbr-gallery-item > div {
  position: relative;
}
.cid-smZxZrlqCn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZxZrlqCn .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZxZrlqCn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZxZrlqCn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZEZZz9AG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZF2PyOEl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZF2PyOEl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZF2PyOEl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZF2PyOEl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZF2PyOEl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZF2PyOEl .row > .row {
  display: block;
}
.cid-smZF2PyOEl .mbr-gallery-item {
  width: 100%;
}
.cid-smZF2PyOEl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZF2PyOEl .mbr-gallery-item > div {
  position: relative;
}
.cid-smZF2PyOEl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZF2PyOEl .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZF2PyOEl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZF2PyOEl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZxLBV1uV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZy0kuYxJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZy0kuYxJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZy0kuYxJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZy0kuYxJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZy0kuYxJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZy0kuYxJ .row > .row {
  display: block;
}
.cid-smZy0kuYxJ .mbr-gallery-item {
  width: 100%;
}
.cid-smZy0kuYxJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZy0kuYxJ .mbr-gallery-item > div {
  position: relative;
}
.cid-smZy0kuYxJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZy0kuYxJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZy0kuYxJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZy0kuYxJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZPrdmf2I {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZPAiB7w7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZPAiB7w7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZPAiB7w7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZPAiB7w7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZPAiB7w7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZPAiB7w7 .row > .row {
  display: block;
}
.cid-smZPAiB7w7 .mbr-gallery-item {
  width: 100%;
}
.cid-smZPAiB7w7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZPAiB7w7 .mbr-gallery-item > div {
  position: relative;
}
.cid-smZPAiB7w7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZPAiB7w7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZPAiB7w7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZPAiB7w7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZxOHxoce {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZy1sYAFc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZy1sYAFc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZy1sYAFc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZy1sYAFc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZy1sYAFc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZy1sYAFc .row > .row {
  display: block;
}
.cid-smZy1sYAFc .mbr-gallery-item {
  width: 100%;
}
.cid-smZy1sYAFc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZy1sYAFc .mbr-gallery-item > div {
  position: relative;
}
.cid-smZy1sYAFc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZy1sYAFc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZy1sYAFc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZy1sYAFc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sn8sprfByn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sn8ssi2ogI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sn8ssi2ogI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sn8ssi2ogI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sn8ssi2ogI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sn8ssi2ogI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sn8ssi2ogI .row > .row {
  display: block;
}
.cid-sn8ssi2ogI .mbr-gallery-item {
  width: 100%;
}
.cid-sn8ssi2ogI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sn8ssi2ogI .mbr-gallery-item > div {
  position: relative;
}
.cid-sn8ssi2ogI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sn8ssi2ogI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sn8ssi2ogI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sn8ssi2ogI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZxO57C3K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZy2qxxTi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZy2qxxTi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZy2qxxTi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZy2qxxTi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZy2qxxTi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZy2qxxTi .row > .row {
  display: block;
}
.cid-smZy2qxxTi .mbr-gallery-item {
  width: 100%;
}
.cid-smZy2qxxTi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZy2qxxTi .mbr-gallery-item > div {
  position: relative;
}
.cid-smZy2qxxTi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZy2qxxTi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZy2qxxTi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZy2qxxTi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sn8xOdtAm3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sn8xPHk5c1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sn8xPHk5c1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sn8xPHk5c1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sn8xPHk5c1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sn8xPHk5c1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sn8xPHk5c1 .row > .row {
  display: block;
}
.cid-sn8xPHk5c1 .mbr-gallery-item {
  width: 100%;
}
.cid-sn8xPHk5c1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sn8xPHk5c1 .mbr-gallery-item > div {
  position: relative;
}
.cid-sn8xPHk5c1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sn8xPHk5c1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sn8xPHk5c1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sn8xPHk5c1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZxKjkD1u {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZy3lDemm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZy3lDemm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZy3lDemm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZy3lDemm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZy3lDemm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZy3lDemm .row > .row {
  display: block;
}
.cid-smZy3lDemm .mbr-gallery-item {
  width: 100%;
}
.cid-smZy3lDemm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZy3lDemm .mbr-gallery-item > div {
  position: relative;
}
.cid-smZy3lDemm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZy3lDemm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZy3lDemm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZy3lDemm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sn8AQEOaWR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sn8ARQDyu4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sn8ARQDyu4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sn8ARQDyu4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sn8ARQDyu4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sn8ARQDyu4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sn8ARQDyu4 .row > .row {
  display: block;
}
.cid-sn8ARQDyu4 .mbr-gallery-item {
  width: 100%;
}
.cid-sn8ARQDyu4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sn8ARQDyu4 .mbr-gallery-item > div {
  position: relative;
}
.cid-sn8ARQDyu4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sn8ARQDyu4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sn8ARQDyu4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sn8ARQDyu4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZxMfDTeR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZy4GBxRg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZy4GBxRg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZy4GBxRg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZy4GBxRg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZy4GBxRg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZy4GBxRg .row > .row {
  display: block;
}
.cid-smZy4GBxRg .mbr-gallery-item {
  width: 100%;
}
.cid-smZy4GBxRg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZy4GBxRg .mbr-gallery-item > div {
  position: relative;
}
.cid-smZy4GBxRg .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZy4GBxRg .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZy4GBxRg .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZy4GBxRg .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sn8ClekbSL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sn8CmAAZGM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sn8CmAAZGM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sn8CmAAZGM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sn8CmAAZGM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sn8CmAAZGM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sn8CmAAZGM .row > .row {
  display: block;
}
.cid-sn8CmAAZGM .mbr-gallery-item {
  width: 100%;
}
.cid-sn8CmAAZGM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sn8CmAAZGM .mbr-gallery-item > div {
  position: relative;
}
.cid-sn8CmAAZGM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sn8CmAAZGM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sn8CmAAZGM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sn8CmAAZGM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZxPi1sUb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZy5MwG9w {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZy5MwG9w .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZy5MwG9w .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZy5MwG9w .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZy5MwG9w .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZy5MwG9w .row > .row {
  display: block;
}
.cid-smZy5MwG9w .mbr-gallery-item {
  width: 100%;
}
.cid-smZy5MwG9w .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZy5MwG9w .mbr-gallery-item > div {
  position: relative;
}
.cid-smZy5MwG9w .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZy5MwG9w .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZy5MwG9w .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZy5MwG9w .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sn8D4ymPkc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sn8DbvyWzr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sn8DbvyWzr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sn8DbvyWzr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sn8DbvyWzr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sn8DbvyWzr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sn8DbvyWzr .row > .row {
  display: block;
}
.cid-sn8DbvyWzr .mbr-gallery-item {
  width: 100%;
}
.cid-sn8DbvyWzr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sn8DbvyWzr .mbr-gallery-item > div {
  position: relative;
}
.cid-sn8DbvyWzr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sn8DbvyWzr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sn8DbvyWzr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sn8DbvyWzr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZxQWbE3g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sn8D5Hs99R {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sn8D5Hs99R .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sn8D5Hs99R .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sn8D5Hs99R .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sn8D5Hs99R .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sn8D5Hs99R .row > .row {
  display: block;
}
.cid-sn8D5Hs99R .mbr-gallery-item {
  width: 100%;
}
.cid-sn8D5Hs99R .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sn8D5Hs99R .mbr-gallery-item > div {
  position: relative;
}
.cid-sn8D5Hs99R .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sn8D5Hs99R .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sn8D5Hs99R .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sn8D5Hs99R .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sn8DahPMJX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZy71YzHm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZy71YzHm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZy71YzHm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZy71YzHm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZy71YzHm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZy71YzHm .row > .row {
  display: block;
}
.cid-smZy71YzHm .mbr-gallery-item {
  width: 100%;
}
.cid-smZy71YzHm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZy71YzHm .mbr-gallery-item > div {
  position: relative;
}
.cid-smZy71YzHm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZy71YzHm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZy71YzHm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZy71YzHm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-smZxQm1ZZP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-smZy8v41lm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-smZy8v41lm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-smZy8v41lm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-smZy8v41lm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-smZy8v41lm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-smZy8v41lm .row > .row {
  display: block;
}
.cid-smZy8v41lm .mbr-gallery-item {
  width: 100%;
}
.cid-smZy8v41lm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-smZy8v41lm .mbr-gallery-item > div {
  position: relative;
}
.cid-smZy8v41lm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-smZy8v41lm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-smZy8v41lm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-smZy8v41lm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sn8FPK2Waq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sn8FQsdimL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sn8FQsdimL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sn8FQsdimL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sn8FQsdimL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sn8FQsdimL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sn8FQsdimL .row > .row {
  display: block;
}
.cid-sn8FQsdimL .mbr-gallery-item {
  width: 100%;
}
.cid-sn8FQsdimL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sn8FQsdimL .mbr-gallery-item > div {
  position: relative;
}
.cid-sn8FQsdimL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sn8FQsdimL .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sn8FQsdimL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sn8FQsdimL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3zQWaJpMY {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s3zQWaJpMY .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3zQWaJpMY div.b {
  padding-top: 2rem;
}
.cid-s3zQWaJpMY H5 {
  color: #232323;
}
.cid-u0tgbWR8nQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u0tgbWR8nQ .mbr-section-subtitle {
  color: #767676;
}
.cid-u0tgbWR8nQ .container-table {
  margin: 0 auto;
}
.cid-u0tgbWR8nQ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u0tgbWR8nQ .dataTables_wrapper {
  display: block;
}
.cid-u0tgbWR8nQ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u0tgbWR8nQ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u0tgbWR8nQ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-u0tgbWR8nQ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u0tgbWR8nQ table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-u0tgbWR8nQ table td {
  border-top: 1px solid #232323;
}
.cid-u0tgbWR8nQ table.table {
  background: #ecae15;
}
.cid-u0tgbWR8nQ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u0tgbWR8nQ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u0tgbWR8nQ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u0tgbWR8nQ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u0tgbWR8nQ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u0tgbWR8nQ .dataTables_filter {
    text-align: center;
  }
  .cid-u0tgbWR8nQ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u0tgbWR8nQ .mbr-section-title {
  color: #232323;
}
.cid-u0tgbWR8nQ .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-u0tgbWR8nQ .body-item {
  text-align: center;
}
.cid-s3zRTFJw1D {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zRTFJw1D .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zRTFJw1D .section-text {
  padding: 2rem 0;
}
.cid-s3zRTFJw1D .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zRTFJw1D .inner-container {
    width: 100% !important;
  }
}
.cid-v73gwUIiqx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v73gwUIiqx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73gwUIiqx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73gwUIiqx .row {
  justify-content: center;
}
.cid-v73gwUIiqx .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73gwUIiqx .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73gwUIiqx .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73gwUIiqx .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73gwUIiqx .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73gwUIiqx .mbr-text_1,
.cid-v73gwUIiqx .mbr-text_2,
.cid-v73gwUIiqx .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73gwUIiqx .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73gwUIiqx .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73gwUIiqx .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73gwUIiqx .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73gwUIiqx .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73gwUIiqx .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73gwUIiqx .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73gwUIiqx .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73gwUIiqx .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73gwUIiqx .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73gwUIiqx .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73gwUIiqx .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73gwUIiqx .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73gy3MwyM {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v73gy3MwyM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73gy3MwyM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73gy3MwyM .row {
  justify-content: center;
}
.cid-v73gy3MwyM .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73gy3MwyM .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73gy3MwyM .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73gy3MwyM .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73gy3MwyM .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73gy3MwyM .mbr-text_1,
.cid-v73gy3MwyM .mbr-text_2,
.cid-v73gy3MwyM .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73gy3MwyM .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73gy3MwyM .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73gy3MwyM .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73gy3MwyM .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73gy3MwyM .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73gy3MwyM .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73gy3MwyM .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73gy3MwyM .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73gy3MwyM .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73gy3MwyM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73gy3MwyM .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73gy3MwyM .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73gy3MwyM .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73gf6DtDp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73gf6DtDp .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v73gf6DtDp .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v73gf6DtDp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v73gf6DtDp .inner-container {
    width: 100% !important;
  }
}
.cid-s3zRTGgk7a {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zRTGgk7a .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zRTGgk7a .section-text {
  padding: 2rem 0;
}
.cid-s3zRTGgk7a .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zRTGgk7a .inner-container {
    width: 100% !important;
  }
}
.cid-v73gAQWsJR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73gAQWsJR .mbr-section-subtitle {
  color: #767676;
}
.cid-v73gAQWsJR .container-table {
  margin: 0 auto;
}
.cid-v73gAQWsJR .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v73gAQWsJR .dataTables_wrapper {
  display: block;
}
.cid-v73gAQWsJR .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v73gAQWsJR .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v73gAQWsJR table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v73gAQWsJR table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v73gAQWsJR table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v73gAQWsJR table td {
  border-top: 1px solid #232323;
}
.cid-v73gAQWsJR table.table {
  background: #ecae15;
}
.cid-v73gAQWsJR .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v73gAQWsJR .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v73gAQWsJR .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v73gAQWsJR .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v73gAQWsJR .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v73gAQWsJR .dataTables_filter {
    text-align: center;
  }
  .cid-v73gAQWsJR .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v73gAQWsJR .mbr-section-title {
  color: #232323;
}
.cid-v73gAQWsJR .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v73gAQWsJR .body-item {
  text-align: center;
}
.cid-snpQ3IOklo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snpUnmYpYu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snpUnmYpYu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snpUnmYpYu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snpUnmYpYu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snpUnmYpYu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snpUnmYpYu .row > .row {
  display: block;
}
.cid-snpUnmYpYu .mbr-gallery-item {
  width: 100%;
}
.cid-snpUnmYpYu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snpUnmYpYu .mbr-gallery-item > div {
  position: relative;
}
.cid-snpUnmYpYu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snpUnmYpYu .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snpUnmYpYu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snpUnmYpYu .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snpQ7Nxx8V {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snpUoFrJcb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snpUoFrJcb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snpUoFrJcb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snpUoFrJcb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snpUoFrJcb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snpUoFrJcb .row > .row {
  display: block;
}
.cid-snpUoFrJcb .mbr-gallery-item {
  width: 100%;
}
.cid-snpUoFrJcb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snpUoFrJcb .mbr-gallery-item > div {
  position: relative;
}
.cid-snpUoFrJcb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snpUoFrJcb .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snpUoFrJcb .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snpUoFrJcb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snpQ5z9anw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snpUpySrlp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snpUpySrlp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snpUpySrlp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snpUpySrlp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snpUpySrlp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snpUpySrlp .row > .row {
  display: block;
}
.cid-snpUpySrlp .mbr-gallery-item {
  width: 100%;
}
.cid-snpUpySrlp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snpUpySrlp .mbr-gallery-item > div {
  position: relative;
}
.cid-snpUpySrlp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snpUpySrlp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snpUpySrlp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snpUpySrlp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snpQ6yUUTX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snpUqTk7wX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snpUqTk7wX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snpUqTk7wX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snpUqTk7wX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snpUqTk7wX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snpUqTk7wX .row > .row {
  display: block;
}
.cid-snpUqTk7wX .mbr-gallery-item {
  width: 100%;
}
.cid-snpUqTk7wX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snpUqTk7wX .mbr-gallery-item > div {
  position: relative;
}
.cid-snpUqTk7wX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snpUqTk7wX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snpUqTk7wX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snpUqTk7wX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snpQ4MGEJJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snpUs5RBrL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snpUs5RBrL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snpUs5RBrL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snpUs5RBrL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snpUs5RBrL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snpUs5RBrL .row > .row {
  display: block;
}
.cid-snpUs5RBrL .mbr-gallery-item {
  width: 100%;
}
.cid-snpUs5RBrL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snpUs5RBrL .mbr-gallery-item > div {
  position: relative;
}
.cid-snpUs5RBrL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snpUs5RBrL .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snpUs5RBrL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snpUs5RBrL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snpQd2ZtRQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snpUt43ONc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snpUt43ONc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snpUt43ONc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snpUt43ONc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snpUt43ONc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snpUt43ONc .row > .row {
  display: block;
}
.cid-snpUt43ONc .mbr-gallery-item {
  width: 100%;
}
.cid-snpUt43ONc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snpUt43ONc .mbr-gallery-item > div {
  position: relative;
}
.cid-snpUt43ONc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snpUt43ONc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snpUt43ONc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snpUt43ONc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snpQbW9U06 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snpUuhcov8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snpUuhcov8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snpUuhcov8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snpUuhcov8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snpUuhcov8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snpUuhcov8 .row > .row {
  display: block;
}
.cid-snpUuhcov8 .mbr-gallery-item {
  width: 100%;
}
.cid-snpUuhcov8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snpUuhcov8 .mbr-gallery-item > div {
  position: relative;
}
.cid-snpUuhcov8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snpUuhcov8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snpUuhcov8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snpUuhcov8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snpQesKkDc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snpUvwnT1C {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snpUvwnT1C .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snpUvwnT1C .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snpUvwnT1C .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snpUvwnT1C .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snpUvwnT1C .row > .row {
  display: block;
}
.cid-snpUvwnT1C .mbr-gallery-item {
  width: 100%;
}
.cid-snpUvwnT1C .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snpUvwnT1C .mbr-gallery-item > div {
  position: relative;
}
.cid-snpUvwnT1C .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snpUvwnT1C .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snpUvwnT1C .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snpUvwnT1C .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snpQaXdU8U {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snpUwGBVma {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snpUwGBVma .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snpUwGBVma .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snpUwGBVma .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snpUwGBVma .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snpUwGBVma .row > .row {
  display: block;
}
.cid-snpUwGBVma .mbr-gallery-item {
  width: 100%;
}
.cid-snpUwGBVma .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snpUwGBVma .mbr-gallery-item > div {
  position: relative;
}
.cid-snpUwGBVma .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snpUwGBVma .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snpUwGBVma .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snpUwGBVma .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snpQdIWdKs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snpUzk7D2B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snpUzk7D2B .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snpUzk7D2B .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snpUzk7D2B .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snpUzk7D2B .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snpUzk7D2B .row > .row {
  display: block;
}
.cid-snpUzk7D2B .mbr-gallery-item {
  width: 100%;
}
.cid-snpUzk7D2B .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snpUzk7D2B .mbr-gallery-item > div {
  position: relative;
}
.cid-snpUzk7D2B .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snpUzk7D2B .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snpUzk7D2B .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snpUzk7D2B .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snpQ9X0I8p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snpUAEeuD8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snpUAEeuD8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snpUAEeuD8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snpUAEeuD8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snpUAEeuD8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snpUAEeuD8 .row > .row {
  display: block;
}
.cid-snpUAEeuD8 .mbr-gallery-item {
  width: 100%;
}
.cid-snpUAEeuD8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snpUAEeuD8 .mbr-gallery-item > div {
  position: relative;
}
.cid-snpUAEeuD8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snpUAEeuD8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snpUAEeuD8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snpUAEeuD8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snpQ8W8rHb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snpUBOzwuY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snpUBOzwuY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snpUBOzwuY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snpUBOzwuY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snpUBOzwuY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snpUBOzwuY .row > .row {
  display: block;
}
.cid-snpUBOzwuY .mbr-gallery-item {
  width: 100%;
}
.cid-snpUBOzwuY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snpUBOzwuY .mbr-gallery-item > div {
  position: relative;
}
.cid-snpUBOzwuY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snpUBOzwuY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snpUBOzwuY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snpUBOzwuY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3zRTNCXWd {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s3zRTNCXWd .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3zRTNCXWd div.b {
  padding-top: 2rem;
}
.cid-s3zRTNCXWd H5 {
  color: #232323;
}
.cid-s3zSwqqAta {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zSwqqAta .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zSwqqAta .section-text {
  padding: 2rem 0;
}
.cid-s3zSwqqAta .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zSwqqAta .inner-container {
    width: 100% !important;
  }
}
.cid-v73hsWgAsJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v73hsWgAsJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73hsWgAsJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73hsWgAsJ .row {
  justify-content: center;
}
.cid-v73hsWgAsJ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73hsWgAsJ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73hsWgAsJ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73hsWgAsJ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73hsWgAsJ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73hsWgAsJ .mbr-text_1,
.cid-v73hsWgAsJ .mbr-text_2,
.cid-v73hsWgAsJ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73hsWgAsJ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73hsWgAsJ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73hsWgAsJ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73hsWgAsJ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73hsWgAsJ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73hsWgAsJ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73hsWgAsJ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73hsWgAsJ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73hsWgAsJ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73hsWgAsJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73hsWgAsJ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73hsWgAsJ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73hsWgAsJ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73huiUkNJ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v73huiUkNJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73huiUkNJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73huiUkNJ .row {
  justify-content: center;
}
.cid-v73huiUkNJ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73huiUkNJ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73huiUkNJ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73huiUkNJ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73huiUkNJ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73huiUkNJ .mbr-text_1,
.cid-v73huiUkNJ .mbr-text_2,
.cid-v73huiUkNJ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73huiUkNJ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73huiUkNJ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73huiUkNJ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73huiUkNJ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73huiUkNJ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73huiUkNJ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73huiUkNJ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73huiUkNJ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73huiUkNJ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73huiUkNJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73huiUkNJ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73huiUkNJ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73huiUkNJ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73hyybaTk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73hyybaTk .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v73hyybaTk .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v73hyybaTk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v73hyybaTk .inner-container {
    width: 100% !important;
  }
}
.cid-s3zSwqXCuX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zSwqXCuX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zSwqXCuX .section-text {
  padding: 2rem 0;
}
.cid-s3zSwqXCuX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zSwqXCuX .inner-container {
    width: 100% !important;
  }
}
.cid-v73hvRTQk0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73hvRTQk0 .mbr-section-subtitle {
  color: #767676;
}
.cid-v73hvRTQk0 .container-table {
  margin: 0 auto;
}
.cid-v73hvRTQk0 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v73hvRTQk0 .dataTables_wrapper {
  display: block;
}
.cid-v73hvRTQk0 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v73hvRTQk0 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v73hvRTQk0 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v73hvRTQk0 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v73hvRTQk0 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v73hvRTQk0 table td {
  border-top: 1px solid #232323;
}
.cid-v73hvRTQk0 table.table {
  background: #ecae15;
}
.cid-v73hvRTQk0 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v73hvRTQk0 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v73hvRTQk0 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v73hvRTQk0 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v73hvRTQk0 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v73hvRTQk0 .dataTables_filter {
    text-align: center;
  }
  .cid-v73hvRTQk0 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v73hvRTQk0 .mbr-section-title {
  color: #232323;
}
.cid-v73hvRTQk0 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v73hvRTQk0 .body-item {
  text-align: center;
}
.cid-snvI16UaNV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvIeK1QD5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvIeK1QD5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvIeK1QD5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvIeK1QD5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvIeK1QD5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvIeK1QD5 .row > .row {
  display: block;
}
.cid-snvIeK1QD5 .mbr-gallery-item {
  width: 100%;
}
.cid-snvIeK1QD5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvIeK1QD5 .mbr-gallery-item > div {
  position: relative;
}
.cid-snvIeK1QD5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvIeK1QD5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvIeK1QD5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvIeK1QD5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvI2h7dGQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvIokDYGJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvIokDYGJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvIokDYGJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvIokDYGJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvIokDYGJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvIokDYGJ .row > .row {
  display: block;
}
.cid-snvIokDYGJ .mbr-gallery-item {
  width: 100%;
}
.cid-snvIokDYGJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvIokDYGJ .mbr-gallery-item > div {
  position: relative;
}
.cid-snvIokDYGJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvIokDYGJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvIokDYGJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvIokDYGJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvI5o3ML7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvIpALM0m {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvIpALM0m .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvIpALM0m .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvIpALM0m .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvIpALM0m .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvIpALM0m .row > .row {
  display: block;
}
.cid-snvIpALM0m .mbr-gallery-item {
  width: 100%;
}
.cid-snvIpALM0m .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvIpALM0m .mbr-gallery-item > div {
  position: relative;
}
.cid-snvIpALM0m .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvIpALM0m .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvIpALM0m .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvIpALM0m .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvI6wcbQc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvIqy5P5H {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvIqy5P5H .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvIqy5P5H .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvIqy5P5H .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvIqy5P5H .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvIqy5P5H .row > .row {
  display: block;
}
.cid-snvIqy5P5H .mbr-gallery-item {
  width: 100%;
}
.cid-snvIqy5P5H .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvIqy5P5H .mbr-gallery-item > div {
  position: relative;
}
.cid-snvIqy5P5H .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvIqy5P5H .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvIqy5P5H .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvIqy5P5H .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvI3EHE7m {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvIrsl3dP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvIrsl3dP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvIrsl3dP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvIrsl3dP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvIrsl3dP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvIrsl3dP .row > .row {
  display: block;
}
.cid-snvIrsl3dP .mbr-gallery-item {
  width: 100%;
}
.cid-snvIrsl3dP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvIrsl3dP .mbr-gallery-item > div {
  position: relative;
}
.cid-snvIrsl3dP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvIrsl3dP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvIrsl3dP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvIrsl3dP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvI5N6g5i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvIsogp5Y {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvIsogp5Y .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvIsogp5Y .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvIsogp5Y .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvIsogp5Y .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvIsogp5Y .row > .row {
  display: block;
}
.cid-snvIsogp5Y .mbr-gallery-item {
  width: 100%;
}
.cid-snvIsogp5Y .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvIsogp5Y .mbr-gallery-item > div {
  position: relative;
}
.cid-snvIsogp5Y .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvIsogp5Y .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvIsogp5Y .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvIsogp5Y .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvI7m4r3p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvItwa3WK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvItwa3WK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvItwa3WK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvItwa3WK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvItwa3WK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvItwa3WK .row > .row {
  display: block;
}
.cid-snvItwa3WK .mbr-gallery-item {
  width: 100%;
}
.cid-snvItwa3WK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvItwa3WK .mbr-gallery-item > div {
  position: relative;
}
.cid-snvItwa3WK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvItwa3WK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvItwa3WK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvItwa3WK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvI8jxEIQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvIulFXM5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvIulFXM5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvIulFXM5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvIulFXM5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvIulFXM5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvIulFXM5 .row > .row {
  display: block;
}
.cid-snvIulFXM5 .mbr-gallery-item {
  width: 100%;
}
.cid-snvIulFXM5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvIulFXM5 .mbr-gallery-item > div {
  position: relative;
}
.cid-snvIulFXM5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvIulFXM5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvIulFXM5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvIulFXM5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvI9tn76R {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvIvjFtao {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvIvjFtao .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvIvjFtao .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvIvjFtao .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvIvjFtao .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvIvjFtao .row > .row {
  display: block;
}
.cid-snvIvjFtao .mbr-gallery-item {
  width: 100%;
}
.cid-snvIvjFtao .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvIvjFtao .mbr-gallery-item > div {
  position: relative;
}
.cid-snvIvjFtao .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvIvjFtao .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvIvjFtao .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvIvjFtao .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvI2VD08i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvIw7Ihu5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvIw7Ihu5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvIw7Ihu5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvIw7Ihu5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvIw7Ihu5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvIw7Ihu5 .row > .row {
  display: block;
}
.cid-snvIw7Ihu5 .mbr-gallery-item {
  width: 100%;
}
.cid-snvIw7Ihu5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvIw7Ihu5 .mbr-gallery-item > div {
  position: relative;
}
.cid-snvIw7Ihu5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvIw7Ihu5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvIw7Ihu5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvIw7Ihu5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvI8JfXUT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvIGgEFvL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvIGgEFvL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvIGgEFvL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvIGgEFvL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvIGgEFvL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvIGgEFvL .row > .row {
  display: block;
}
.cid-snvIGgEFvL .mbr-gallery-item {
  width: 100%;
}
.cid-snvIGgEFvL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvIGgEFvL .mbr-gallery-item > div {
  position: relative;
}
.cid-snvIGgEFvL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvIGgEFvL .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvIGgEFvL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvIGgEFvL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvI4lI0F5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvIxsLUds {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvIxsLUds .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvIxsLUds .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvIxsLUds .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvIxsLUds .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvIxsLUds .row > .row {
  display: block;
}
.cid-snvIxsLUds .mbr-gallery-item {
  width: 100%;
}
.cid-snvIxsLUds .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvIxsLUds .mbr-gallery-item > div {
  position: relative;
}
.cid-snvIxsLUds .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvIxsLUds .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvIxsLUds .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvIxsLUds .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3zSwyHulZ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s3zSwyHulZ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3zSwyHulZ div.b {
  padding-top: 2rem;
}
.cid-s3zSwyHulZ H5 {
  color: #232323;
}
.cid-s3zT6zDgZl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zT6zDgZl .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zT6zDgZl .section-text {
  padding: 2rem 0;
}
.cid-s3zT6zDgZl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zT6zDgZl .inner-container {
    width: 100% !important;
  }
}
.cid-v73inoHRVP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v73inoHRVP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73inoHRVP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73inoHRVP .row {
  justify-content: center;
}
.cid-v73inoHRVP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73inoHRVP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73inoHRVP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73inoHRVP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73inoHRVP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73inoHRVP .mbr-text_1,
.cid-v73inoHRVP .mbr-text_2,
.cid-v73inoHRVP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73inoHRVP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73inoHRVP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73inoHRVP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73inoHRVP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73inoHRVP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73inoHRVP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73inoHRVP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73inoHRVP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73inoHRVP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73inoHRVP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73inoHRVP .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73inoHRVP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73inoHRVP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73ioz8K1a {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v73ioz8K1a .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73ioz8K1a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73ioz8K1a .row {
  justify-content: center;
}
.cid-v73ioz8K1a .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73ioz8K1a .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73ioz8K1a .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73ioz8K1a .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73ioz8K1a .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73ioz8K1a .mbr-text_1,
.cid-v73ioz8K1a .mbr-text_2,
.cid-v73ioz8K1a .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73ioz8K1a .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73ioz8K1a .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73ioz8K1a .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73ioz8K1a .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73ioz8K1a .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73ioz8K1a .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73ioz8K1a .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73ioz8K1a .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73ioz8K1a .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73ioz8K1a .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73ioz8K1a .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73ioz8K1a .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73ioz8K1a .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73iq4JzwM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73iq4JzwM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v73iq4JzwM .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v73iq4JzwM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v73iq4JzwM .inner-container {
    width: 100% !important;
  }
}
.cid-s3zT6A6uE5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zT6A6uE5 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zT6A6uE5 .section-text {
  padding: 2rem 0;
}
.cid-s3zT6A6uE5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zT6A6uE5 .inner-container {
    width: 100% !important;
  }
}
.cid-v73irNNL5K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73irNNL5K .mbr-section-subtitle {
  color: #767676;
}
.cid-v73irNNL5K .container-table {
  margin: 0 auto;
}
.cid-v73irNNL5K .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v73irNNL5K .dataTables_wrapper {
  display: block;
}
.cid-v73irNNL5K .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v73irNNL5K .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v73irNNL5K table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v73irNNL5K table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v73irNNL5K table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v73irNNL5K table td {
  border-top: 1px solid #232323;
}
.cid-v73irNNL5K table.table {
  background: #ecae15;
}
.cid-v73irNNL5K .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v73irNNL5K .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v73irNNL5K .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v73irNNL5K .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v73irNNL5K .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v73irNNL5K .dataTables_filter {
    text-align: center;
  }
  .cid-v73irNNL5K .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v73irNNL5K .mbr-section-title {
  color: #232323;
}
.cid-v73irNNL5K .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v73irNNL5K .body-item {
  text-align: center;
}
.cid-snvSxVYBqh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvTF7OalZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvTF7OalZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvTF7OalZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvTF7OalZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvTF7OalZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvTF7OalZ .row > .row {
  display: block;
}
.cid-snvTF7OalZ .mbr-gallery-item {
  width: 100%;
}
.cid-snvTF7OalZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvTF7OalZ .mbr-gallery-item > div {
  position: relative;
}
.cid-snvTF7OalZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvTF7OalZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvTF7OalZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvTF7OalZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvSt1JZlQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvTG84s7b {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvTG84s7b .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvTG84s7b .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvTG84s7b .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvTG84s7b .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvTG84s7b .row > .row {
  display: block;
}
.cid-snvTG84s7b .mbr-gallery-item {
  width: 100%;
}
.cid-snvTG84s7b .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvTG84s7b .mbr-gallery-item > div {
  position: relative;
}
.cid-snvTG84s7b .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvTG84s7b .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvTG84s7b .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvTG84s7b .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvSvIasQD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvTHah3aI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvTHah3aI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvTHah3aI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvTHah3aI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvTHah3aI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvTHah3aI .row > .row {
  display: block;
}
.cid-snvTHah3aI .mbr-gallery-item {
  width: 100%;
}
.cid-snvTHah3aI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvTHah3aI .mbr-gallery-item > div {
  position: relative;
}
.cid-snvTHah3aI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvTHah3aI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvTHah3aI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvTHah3aI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvSzpWYdp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvTI3k8wv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvTI3k8wv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvTI3k8wv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvTI3k8wv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvTI3k8wv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvTI3k8wv .row > .row {
  display: block;
}
.cid-snvTI3k8wv .mbr-gallery-item {
  width: 100%;
}
.cid-snvTI3k8wv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvTI3k8wv .mbr-gallery-item > div {
  position: relative;
}
.cid-snvTI3k8wv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvTI3k8wv .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvTI3k8wv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvTI3k8wv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvSCeSklA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvTIMhEfp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvTIMhEfp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvTIMhEfp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvTIMhEfp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvTIMhEfp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvTIMhEfp .row > .row {
  display: block;
}
.cid-snvTIMhEfp .mbr-gallery-item {
  width: 100%;
}
.cid-snvTIMhEfp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvTIMhEfp .mbr-gallery-item > div {
  position: relative;
}
.cid-snvTIMhEfp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvTIMhEfp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvTIMhEfp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvTIMhEfp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvSx3zzcE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvTJBt7Ka {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvTJBt7Ka .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvTJBt7Ka .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvTJBt7Ka .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvTJBt7Ka .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvTJBt7Ka .row > .row {
  display: block;
}
.cid-snvTJBt7Ka .mbr-gallery-item {
  width: 100%;
}
.cid-snvTJBt7Ka .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvTJBt7Ka .mbr-gallery-item > div {
  position: relative;
}
.cid-snvTJBt7Ka .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvTJBt7Ka .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvTJBt7Ka .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvTJBt7Ka .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvSAQ7Cxq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvTKIC093 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvTKIC093 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvTKIC093 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvTKIC093 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvTKIC093 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvTKIC093 .row > .row {
  display: block;
}
.cid-snvTKIC093 .mbr-gallery-item {
  width: 100%;
}
.cid-snvTKIC093 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvTKIC093 .mbr-gallery-item > div {
  position: relative;
}
.cid-snvTKIC093 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvTKIC093 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvTKIC093 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvTKIC093 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvSBRY8pT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvTLCdzTa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvTLCdzTa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvTLCdzTa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvTLCdzTa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvTLCdzTa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvTLCdzTa .row > .row {
  display: block;
}
.cid-snvTLCdzTa .mbr-gallery-item {
  width: 100%;
}
.cid-snvTLCdzTa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvTLCdzTa .mbr-gallery-item > div {
  position: relative;
}
.cid-snvTLCdzTa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvTLCdzTa .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvTLCdzTa .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvTLCdzTa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvSz17XFs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvTMp8rNI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvTMp8rNI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvTMp8rNI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvTMp8rNI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvTMp8rNI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvTMp8rNI .row > .row {
  display: block;
}
.cid-snvTMp8rNI .mbr-gallery-item {
  width: 100%;
}
.cid-snvTMp8rNI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvTMp8rNI .mbr-gallery-item > div {
  position: relative;
}
.cid-snvTMp8rNI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvTMp8rNI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvTMp8rNI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvTMp8rNI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvSAvaAbc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvTN5Zo0k {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvTN5Zo0k .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvTN5Zo0k .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvTN5Zo0k .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvTN5Zo0k .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvTN5Zo0k .row > .row {
  display: block;
}
.cid-snvTN5Zo0k .mbr-gallery-item {
  width: 100%;
}
.cid-snvTN5Zo0k .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvTN5Zo0k .mbr-gallery-item > div {
  position: relative;
}
.cid-snvTN5Zo0k .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvTN5Zo0k .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvTN5Zo0k .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvTN5Zo0k .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvStLZVhO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvTO8juBx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvTO8juBx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvTO8juBx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvTO8juBx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvTO8juBx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvTO8juBx .row > .row {
  display: block;
}
.cid-snvTO8juBx .mbr-gallery-item {
  width: 100%;
}
.cid-snvTO8juBx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvTO8juBx .mbr-gallery-item > div {
  position: relative;
}
.cid-snvTO8juBx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvTO8juBx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvTO8juBx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvTO8juBx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snvSuUwHkd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snvTOPc5vj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snvTOPc5vj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snvTOPc5vj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snvTOPc5vj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snvTOPc5vj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snvTOPc5vj .row > .row {
  display: block;
}
.cid-snvTOPc5vj .mbr-gallery-item {
  width: 100%;
}
.cid-snvTOPc5vj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snvTOPc5vj .mbr-gallery-item > div {
  position: relative;
}
.cid-snvTOPc5vj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snvTOPc5vj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snvTOPc5vj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snvTOPc5vj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3zT6Hj0lY {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s3zT6Hj0lY .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3zT6Hj0lY div.b {
  padding-top: 2rem;
}
.cid-s3zT6Hj0lY H5 {
  color: #232323;
}
.cid-s3zTP5s7av {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zTP5s7av .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zTP5s7av .section-text {
  padding: 2rem 0;
}
.cid-s3zTP5s7av .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zTP5s7av .inner-container {
    width: 100% !important;
  }
}
.cid-v73j0S8x3G {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v73j0S8x3G .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73j0S8x3G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73j0S8x3G .row {
  justify-content: center;
}
.cid-v73j0S8x3G .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73j0S8x3G .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73j0S8x3G .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73j0S8x3G .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73j0S8x3G .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73j0S8x3G .mbr-text_1,
.cid-v73j0S8x3G .mbr-text_2,
.cid-v73j0S8x3G .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73j0S8x3G .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73j0S8x3G .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73j0S8x3G .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73j0S8x3G .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73j0S8x3G .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73j0S8x3G .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73j0S8x3G .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73j0S8x3G .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73j0S8x3G .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73j0S8x3G .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73j0S8x3G .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73j0S8x3G .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73j0S8x3G .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73j1QsaVo {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v73j1QsaVo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73j1QsaVo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73j1QsaVo .row {
  justify-content: center;
}
.cid-v73j1QsaVo .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73j1QsaVo .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73j1QsaVo .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73j1QsaVo .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73j1QsaVo .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73j1QsaVo .mbr-text_1,
.cid-v73j1QsaVo .mbr-text_2,
.cid-v73j1QsaVo .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73j1QsaVo .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73j1QsaVo .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73j1QsaVo .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73j1QsaVo .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73j1QsaVo .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73j1QsaVo .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73j1QsaVo .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73j1QsaVo .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73j1QsaVo .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73j1QsaVo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73j1QsaVo .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73j1QsaVo .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73j1QsaVo .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73j3ONEhk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73j3ONEhk .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v73j3ONEhk .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v73j3ONEhk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v73j3ONEhk .inner-container {
    width: 100% !important;
  }
}
.cid-s3zTP60Eca {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zTP60Eca .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zTP60Eca .section-text {
  padding: 2rem 0;
}
.cid-s3zTP60Eca .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zTP60Eca .inner-container {
    width: 100% !important;
  }
}
.cid-v73j8s6qph {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73j8s6qph .mbr-section-subtitle {
  color: #767676;
}
.cid-v73j8s6qph .container-table {
  margin: 0 auto;
}
.cid-v73j8s6qph .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v73j8s6qph .dataTables_wrapper {
  display: block;
}
.cid-v73j8s6qph .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v73j8s6qph .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v73j8s6qph table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v73j8s6qph table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v73j8s6qph table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v73j8s6qph table td {
  border-top: 1px solid #232323;
}
.cid-v73j8s6qph table.table {
  background: #ecae15;
}
.cid-v73j8s6qph .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v73j8s6qph .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v73j8s6qph .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v73j8s6qph .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v73j8s6qph .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v73j8s6qph .dataTables_filter {
    text-align: center;
  }
  .cid-v73j8s6qph .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v73j8s6qph .mbr-section-title {
  color: #232323;
}
.cid-v73j8s6qph .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v73j8s6qph .body-item {
  text-align: center;
}
.cid-snzb9WDzfl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snzcuPnPVB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snzcuPnPVB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snzcuPnPVB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snzcuPnPVB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snzcuPnPVB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snzcuPnPVB .row > .row {
  display: block;
}
.cid-snzcuPnPVB .mbr-gallery-item {
  width: 100%;
}
.cid-snzcuPnPVB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snzcuPnPVB .mbr-gallery-item > div {
  position: relative;
}
.cid-snzcuPnPVB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snzcuPnPVB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snzcuPnPVB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snzcuPnPVB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snzbcYHN6V {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snzczJIfcc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snzczJIfcc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snzczJIfcc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snzczJIfcc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snzczJIfcc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snzczJIfcc .row > .row {
  display: block;
}
.cid-snzczJIfcc .mbr-gallery-item {
  width: 100%;
}
.cid-snzczJIfcc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snzczJIfcc .mbr-gallery-item > div {
  position: relative;
}
.cid-snzczJIfcc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snzczJIfcc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snzczJIfcc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snzczJIfcc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snzbga27iB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snzcABU0Fo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snzcABU0Fo .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snzcABU0Fo .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snzcABU0Fo .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snzcABU0Fo .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snzcABU0Fo .row > .row {
  display: block;
}
.cid-snzcABU0Fo .mbr-gallery-item {
  width: 100%;
}
.cid-snzcABU0Fo .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snzcABU0Fo .mbr-gallery-item > div {
  position: relative;
}
.cid-snzcABU0Fo .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snzcABU0Fo .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snzcABU0Fo .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snzcABU0Fo .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snzbbH8tUc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snzcBKtWpV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snzcBKtWpV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snzcBKtWpV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snzcBKtWpV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snzcBKtWpV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snzcBKtWpV .row > .row {
  display: block;
}
.cid-snzcBKtWpV .mbr-gallery-item {
  width: 100%;
}
.cid-snzcBKtWpV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snzcBKtWpV .mbr-gallery-item > div {
  position: relative;
}
.cid-snzcBKtWpV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snzcBKtWpV .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snzcBKtWpV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snzcBKtWpV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snzbdDdsHw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snzcCEpQYG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snzcCEpQYG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snzcCEpQYG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snzcCEpQYG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snzcCEpQYG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snzcCEpQYG .row > .row {
  display: block;
}
.cid-snzcCEpQYG .mbr-gallery-item {
  width: 100%;
}
.cid-snzcCEpQYG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snzcCEpQYG .mbr-gallery-item > div {
  position: relative;
}
.cid-snzcCEpQYG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snzcCEpQYG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snzcCEpQYG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snzcCEpQYG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snzbgPx1SD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snzcFw32rs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snzcFw32rs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snzcFw32rs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snzcFw32rs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snzcFw32rs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snzcFw32rs .row > .row {
  display: block;
}
.cid-snzcFw32rs .mbr-gallery-item {
  width: 100%;
}
.cid-snzcFw32rs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snzcFw32rs .mbr-gallery-item > div {
  position: relative;
}
.cid-snzcFw32rs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snzcFw32rs .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snzcFw32rs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snzcFw32rs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snzbi1PVwJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snzcGzcZNq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snzcGzcZNq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snzcGzcZNq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snzcGzcZNq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snzcGzcZNq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snzcGzcZNq .row > .row {
  display: block;
}
.cid-snzcGzcZNq .mbr-gallery-item {
  width: 100%;
}
.cid-snzcGzcZNq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snzcGzcZNq .mbr-gallery-item > div {
  position: relative;
}
.cid-snzcGzcZNq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snzcGzcZNq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snzcGzcZNq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snzcGzcZNq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snzbhslfpJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snzcHuwOGG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snzcHuwOGG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snzcHuwOGG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snzcHuwOGG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snzcHuwOGG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snzcHuwOGG .row > .row {
  display: block;
}
.cid-snzcHuwOGG .mbr-gallery-item {
  width: 100%;
}
.cid-snzcHuwOGG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snzcHuwOGG .mbr-gallery-item > div {
  position: relative;
}
.cid-snzcHuwOGG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snzcHuwOGG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snzcHuwOGG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snzcHuwOGG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snzc24vDvw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snzcIvJAwa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snzcIvJAwa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snzcIvJAwa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snzcIvJAwa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snzcIvJAwa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snzcIvJAwa .row > .row {
  display: block;
}
.cid-snzcIvJAwa .mbr-gallery-item {
  width: 100%;
}
.cid-snzcIvJAwa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snzcIvJAwa .mbr-gallery-item > div {
  position: relative;
}
.cid-snzcIvJAwa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snzcIvJAwa .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snzcIvJAwa .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snzcIvJAwa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snzbiE5wf3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snzcJpmBWH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snzcJpmBWH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snzcJpmBWH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snzcJpmBWH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snzcJpmBWH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snzcJpmBWH .row > .row {
  display: block;
}
.cid-snzcJpmBWH .mbr-gallery-item {
  width: 100%;
}
.cid-snzcJpmBWH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snzcJpmBWH .mbr-gallery-item > div {
  position: relative;
}
.cid-snzcJpmBWH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snzcJpmBWH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snzcJpmBWH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snzcJpmBWH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snzbfsPZu0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snzcKuIx7x {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snzcKuIx7x .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snzcKuIx7x .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snzcKuIx7x .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snzcKuIx7x .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snzcKuIx7x .row > .row {
  display: block;
}
.cid-snzcKuIx7x .mbr-gallery-item {
  width: 100%;
}
.cid-snzcKuIx7x .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snzcKuIx7x .mbr-gallery-item > div {
  position: relative;
}
.cid-snzcKuIx7x .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snzcKuIx7x .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snzcKuIx7x .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snzcKuIx7x .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-snzbaNIH61 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-snzcLrhMpZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-snzcLrhMpZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snzcLrhMpZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snzcLrhMpZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snzcLrhMpZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snzcLrhMpZ .row > .row {
  display: block;
}
.cid-snzcLrhMpZ .mbr-gallery-item {
  width: 100%;
}
.cid-snzcLrhMpZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snzcLrhMpZ .mbr-gallery-item > div {
  position: relative;
}
.cid-snzcLrhMpZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snzcLrhMpZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-snzcLrhMpZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snzcLrhMpZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3zTPdAvJf {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s3zTPdAvJf .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3zTPdAvJf div.b {
  padding-top: 2rem;
}
.cid-s3zTPdAvJf H5 {
  color: #232323;
}
.cid-s3zUmZHaj0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zUmZHaj0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zUmZHaj0 .section-text {
  padding: 2rem 0;
}
.cid-s3zUmZHaj0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zUmZHaj0 .inner-container {
    width: 100% !important;
  }
}
.cid-v73k0c4e6S {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v73k0c4e6S .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73k0c4e6S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73k0c4e6S .row {
  justify-content: center;
}
.cid-v73k0c4e6S .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73k0c4e6S .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73k0c4e6S .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73k0c4e6S .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73k0c4e6S .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73k0c4e6S .mbr-text_1,
.cid-v73k0c4e6S .mbr-text_2,
.cid-v73k0c4e6S .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73k0c4e6S .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73k0c4e6S .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73k0c4e6S .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73k0c4e6S .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73k0c4e6S .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73k0c4e6S .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73k0c4e6S .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73k0c4e6S .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73k0c4e6S .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73k0c4e6S .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73k0c4e6S .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73k0c4e6S .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73k0c4e6S .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73k1943wI {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v73k1943wI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73k1943wI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73k1943wI .row {
  justify-content: center;
}
.cid-v73k1943wI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73k1943wI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73k1943wI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73k1943wI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73k1943wI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73k1943wI .mbr-text_1,
.cid-v73k1943wI .mbr-text_2,
.cid-v73k1943wI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73k1943wI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73k1943wI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73k1943wI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73k1943wI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73k1943wI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73k1943wI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73k1943wI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73k1943wI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73k1943wI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73k1943wI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73k1943wI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73k1943wI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73k1943wI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73k25mmyJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73k25mmyJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v73k25mmyJ .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v73k25mmyJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v73k25mmyJ .inner-container {
    width: 100% !important;
  }
}
.cid-s3zUn0tgzI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zUn0tgzI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zUn0tgzI .section-text {
  padding: 2rem 0;
}
.cid-s3zUn0tgzI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zUn0tgzI .inner-container {
    width: 100% !important;
  }
}
.cid-v73k3jNdn3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73k3jNdn3 .mbr-section-subtitle {
  color: #767676;
}
.cid-v73k3jNdn3 .container-table {
  margin: 0 auto;
}
.cid-v73k3jNdn3 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v73k3jNdn3 .dataTables_wrapper {
  display: block;
}
.cid-v73k3jNdn3 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v73k3jNdn3 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v73k3jNdn3 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v73k3jNdn3 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v73k3jNdn3 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v73k3jNdn3 table td {
  border-top: 1px solid #232323;
}
.cid-v73k3jNdn3 table.table {
  background: #ecae15;
}
.cid-v73k3jNdn3 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v73k3jNdn3 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v73k3jNdn3 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v73k3jNdn3 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v73k3jNdn3 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v73k3jNdn3 .dataTables_filter {
    text-align: center;
  }
  .cid-v73k3jNdn3 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v73k3jNdn3 .mbr-section-title {
  color: #232323;
}
.cid-v73k3jNdn3 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v73k3jNdn3 .body-item {
  text-align: center;
}
.cid-skmq1Bss3i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtFXW3p7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtFXW3p7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtFXW3p7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtFXW3p7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtFXW3p7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtFXW3p7 .row > .row {
  display: block;
}
.cid-skmtFXW3p7 .mbr-gallery-item {
  width: 100%;
}
.cid-skmtFXW3p7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtFXW3p7 .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtFXW3p7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtFXW3p7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtFXW3p7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtFXW3p7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmq2ZIkpA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtHj3e3j {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtHj3e3j .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtHj3e3j .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtHj3e3j .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtHj3e3j .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtHj3e3j .row > .row {
  display: block;
}
.cid-skmtHj3e3j .mbr-gallery-item {
  width: 100%;
}
.cid-skmtHj3e3j .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtHj3e3j .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtHj3e3j .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtHj3e3j .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtHj3e3j .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtHj3e3j .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmq6sv4vs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtIjZUjg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtIjZUjg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtIjZUjg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtIjZUjg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtIjZUjg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtIjZUjg .row > .row {
  display: block;
}
.cid-skmtIjZUjg .mbr-gallery-item {
  width: 100%;
}
.cid-skmtIjZUjg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtIjZUjg .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtIjZUjg .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtIjZUjg .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtIjZUjg .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtIjZUjg .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmq98zSx9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtJBWJOA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtJBWJOA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtJBWJOA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtJBWJOA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtJBWJOA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtJBWJOA .row > .row {
  display: block;
}
.cid-skmtJBWJOA .mbr-gallery-item {
  width: 100%;
}
.cid-skmtJBWJOA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtJBWJOA .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtJBWJOA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtJBWJOA .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtJBWJOA .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtJBWJOA .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmqcfUv25 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtKAtuWo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtKAtuWo .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtKAtuWo .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtKAtuWo .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtKAtuWo .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtKAtuWo .row > .row {
  display: block;
}
.cid-skmtKAtuWo .mbr-gallery-item {
  width: 100%;
}
.cid-skmtKAtuWo .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtKAtuWo .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtKAtuWo .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtKAtuWo .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtKAtuWo .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtKAtuWo .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmqa4fnpN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtLy6osH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtLy6osH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtLy6osH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtLy6osH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtLy6osH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtLy6osH .row > .row {
  display: block;
}
.cid-skmtLy6osH .mbr-gallery-item {
  width: 100%;
}
.cid-skmtLy6osH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtLy6osH .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtLy6osH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtLy6osH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtLy6osH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtLy6osH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmq4bwoo0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtMrxikO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtMrxikO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtMrxikO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtMrxikO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtMrxikO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtMrxikO .row > .row {
  display: block;
}
.cid-skmtMrxikO .mbr-gallery-item {
  width: 100%;
}
.cid-skmtMrxikO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtMrxikO .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtMrxikO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtMrxikO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtMrxikO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtMrxikO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmqfeNwwB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtNf6Gb7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtNf6Gb7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtNf6Gb7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtNf6Gb7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtNf6Gb7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtNf6Gb7 .row > .row {
  display: block;
}
.cid-skmtNf6Gb7 .mbr-gallery-item {
  width: 100%;
}
.cid-skmtNf6Gb7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtNf6Gb7 .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtNf6Gb7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtNf6Gb7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtNf6Gb7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtNf6Gb7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmq5ibqN5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtO6LZq3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtO6LZq3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtO6LZq3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtO6LZq3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtO6LZq3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtO6LZq3 .row > .row {
  display: block;
}
.cid-skmtO6LZq3 .mbr-gallery-item {
  width: 100%;
}
.cid-skmtO6LZq3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtO6LZq3 .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtO6LZq3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtO6LZq3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtO6LZq3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtO6LZq3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmq7MkcOE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtPj5lN9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtPj5lN9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtPj5lN9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtPj5lN9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtPj5lN9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtPj5lN9 .row > .row {
  display: block;
}
.cid-skmtPj5lN9 .mbr-gallery-item {
  width: 100%;
}
.cid-skmtPj5lN9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtPj5lN9 .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtPj5lN9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtPj5lN9 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtPj5lN9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtPj5lN9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmqd82HAu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtQ9ArUf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtQ9ArUf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtQ9ArUf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtQ9ArUf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtQ9ArUf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtQ9ArUf .row > .row {
  display: block;
}
.cid-skmtQ9ArUf .mbr-gallery-item {
  width: 100%;
}
.cid-skmtQ9ArUf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtQ9ArUf .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtQ9ArUf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtQ9ArUf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtQ9ArUf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtQ9ArUf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmqdE7TSx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtTd0QGD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtTd0QGD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtTd0QGD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtTd0QGD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtTd0QGD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtTd0QGD .row > .row {
  display: block;
}
.cid-skmtTd0QGD .mbr-gallery-item {
  width: 100%;
}
.cid-skmtTd0QGD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtTd0QGD .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtTd0QGD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtTd0QGD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtTd0QGD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtTd0QGD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmqbakQaC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtR4bTRH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtR4bTRH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtR4bTRH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtR4bTRH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtR4bTRH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtR4bTRH .row > .row {
  display: block;
}
.cid-skmtR4bTRH .mbr-gallery-item {
  width: 100%;
}
.cid-skmtR4bTRH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtR4bTRH .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtR4bTRH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtR4bTRH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtR4bTRH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtR4bTRH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmrdqfhXj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtYjptNt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtYjptNt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtYjptNt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtYjptNt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtYjptNt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtYjptNt .row > .row {
  display: block;
}
.cid-skmtYjptNt .mbr-gallery-item {
  width: 100%;
}
.cid-skmtYjptNt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtYjptNt .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtYjptNt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtYjptNt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtYjptNt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtYjptNt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmsewgNwO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmtZdsUC0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmtZdsUC0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmtZdsUC0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmtZdsUC0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmtZdsUC0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmtZdsUC0 .row > .row {
  display: block;
}
.cid-skmtZdsUC0 .mbr-gallery-item {
  width: 100%;
}
.cid-skmtZdsUC0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmtZdsUC0 .mbr-gallery-item > div {
  position: relative;
}
.cid-skmtZdsUC0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmtZdsUC0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmtZdsUC0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmtZdsUC0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmsfWGULr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmu0cODtk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmu0cODtk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmu0cODtk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmu0cODtk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmu0cODtk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmu0cODtk .row > .row {
  display: block;
}
.cid-skmu0cODtk .mbr-gallery-item {
  width: 100%;
}
.cid-skmu0cODtk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmu0cODtk .mbr-gallery-item > div {
  position: relative;
}
.cid-skmu0cODtk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmu0cODtk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmu0cODtk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmu0cODtk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmsiKkxTC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmu1f6C4Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmu1f6C4Q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmu1f6C4Q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmu1f6C4Q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmu1f6C4Q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmu1f6C4Q .row > .row {
  display: block;
}
.cid-skmu1f6C4Q .mbr-gallery-item {
  width: 100%;
}
.cid-skmu1f6C4Q .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmu1f6C4Q .mbr-gallery-item > div {
  position: relative;
}
.cid-skmu1f6C4Q .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmu1f6C4Q .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmu1f6C4Q .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmu1f6C4Q .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmsjVbQiG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmu23tq3u {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmu23tq3u .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmu23tq3u .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmu23tq3u .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmu23tq3u .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmu23tq3u .row > .row {
  display: block;
}
.cid-skmu23tq3u .mbr-gallery-item {
  width: 100%;
}
.cid-skmu23tq3u .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmu23tq3u .mbr-gallery-item > div {
  position: relative;
}
.cid-skmu23tq3u .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmu23tq3u .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmu23tq3u .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmu23tq3u .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmsoFM6s5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmu2OjWpw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmu2OjWpw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmu2OjWpw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmu2OjWpw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmu2OjWpw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmu2OjWpw .row > .row {
  display: block;
}
.cid-skmu2OjWpw .mbr-gallery-item {
  width: 100%;
}
.cid-skmu2OjWpw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmu2OjWpw .mbr-gallery-item > div {
  position: relative;
}
.cid-skmu2OjWpw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmu2OjWpw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmu2OjWpw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmu2OjWpw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmslh9jeC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmu3Gw4K7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmu3Gw4K7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmu3Gw4K7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmu3Gw4K7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmu3Gw4K7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmu3Gw4K7 .row > .row {
  display: block;
}
.cid-skmu3Gw4K7 .mbr-gallery-item {
  width: 100%;
}
.cid-skmu3Gw4K7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmu3Gw4K7 .mbr-gallery-item > div {
  position: relative;
}
.cid-skmu3Gw4K7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmu3Gw4K7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmu3Gw4K7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmu3Gw4K7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmsmjPuY0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmu4Y6DYS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmu4Y6DYS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmu4Y6DYS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmu4Y6DYS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmu4Y6DYS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmu4Y6DYS .row > .row {
  display: block;
}
.cid-skmu4Y6DYS .mbr-gallery-item {
  width: 100%;
}
.cid-skmu4Y6DYS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmu4Y6DYS .mbr-gallery-item > div {
  position: relative;
}
.cid-skmu4Y6DYS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmu4Y6DYS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmu4Y6DYS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmu4Y6DYS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmsny91C7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmu5VVJsT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmu5VVJsT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmu5VVJsT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmu5VVJsT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmu5VVJsT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmu5VVJsT .row > .row {
  display: block;
}
.cid-skmu5VVJsT .mbr-gallery-item {
  width: 100%;
}
.cid-skmu5VVJsT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmu5VVJsT .mbr-gallery-item > div {
  position: relative;
}
.cid-skmu5VVJsT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmu5VVJsT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmu5VVJsT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmu5VVJsT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmsqpu3Xx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmu6TPwy5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmu6TPwy5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmu6TPwy5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmu6TPwy5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmu6TPwy5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmu6TPwy5 .row > .row {
  display: block;
}
.cid-skmu6TPwy5 .mbr-gallery-item {
  width: 100%;
}
.cid-skmu6TPwy5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmu6TPwy5 .mbr-gallery-item > div {
  position: relative;
}
.cid-skmu6TPwy5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmu6TPwy5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmu6TPwy5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmu6TPwy5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmsrq0nto {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmu7T3fOp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmu7T3fOp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmu7T3fOp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmu7T3fOp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmu7T3fOp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmu7T3fOp .row > .row {
  display: block;
}
.cid-skmu7T3fOp .mbr-gallery-item {
  width: 100%;
}
.cid-skmu7T3fOp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmu7T3fOp .mbr-gallery-item > div {
  position: relative;
}
.cid-skmu7T3fOp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmu7T3fOp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmu7T3fOp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmu7T3fOp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3zUn7UUeo {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s3zUn7UUeo .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3zUn7UUeo div.b {
  padding-top: 2rem;
}
.cid-s3zUn7UUeo H5 {
  color: #232323;
}
.cid-s3zV6XaPMC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zV6XaPMC .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zV6XaPMC .section-text {
  padding: 2rem 0;
}
.cid-s3zV6XaPMC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zV6XaPMC .inner-container {
    width: 100% !important;
  }
}
.cid-v73ktmVF4Q {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v73ktmVF4Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73ktmVF4Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73ktmVF4Q .row {
  justify-content: center;
}
.cid-v73ktmVF4Q .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73ktmVF4Q .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73ktmVF4Q .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73ktmVF4Q .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73ktmVF4Q .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73ktmVF4Q .mbr-text_1,
.cid-v73ktmVF4Q .mbr-text_2,
.cid-v73ktmVF4Q .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73ktmVF4Q .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73ktmVF4Q .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73ktmVF4Q .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73ktmVF4Q .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73ktmVF4Q .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73ktmVF4Q .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73ktmVF4Q .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73ktmVF4Q .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73ktmVF4Q .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73ktmVF4Q .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73ktmVF4Q .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73ktmVF4Q .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73ktmVF4Q .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73kuwSsZq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v73kuwSsZq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73kuwSsZq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73kuwSsZq .row {
  justify-content: center;
}
.cid-v73kuwSsZq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73kuwSsZq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73kuwSsZq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73kuwSsZq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73kuwSsZq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73kuwSsZq .mbr-text_1,
.cid-v73kuwSsZq .mbr-text_2,
.cid-v73kuwSsZq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73kuwSsZq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73kuwSsZq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73kuwSsZq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73kuwSsZq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73kuwSsZq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73kuwSsZq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73kuwSsZq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73kuwSsZq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73kuwSsZq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73kuwSsZq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73kuwSsZq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73kuwSsZq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73kuwSsZq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73kw1d6ri {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73kw1d6ri .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v73kw1d6ri .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v73kw1d6ri .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v73kw1d6ri .inner-container {
    width: 100% !important;
  }
}
.cid-s3zV6XIQBR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zV6XIQBR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zV6XIQBR .section-text {
  padding: 2rem 0;
}
.cid-s3zV6XIQBR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zV6XIQBR .inner-container {
    width: 100% !important;
  }
}
.cid-v73kxxJd4f {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73kxxJd4f .mbr-section-subtitle {
  color: #767676;
}
.cid-v73kxxJd4f .container-table {
  margin: 0 auto;
}
.cid-v73kxxJd4f .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v73kxxJd4f .dataTables_wrapper {
  display: block;
}
.cid-v73kxxJd4f .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v73kxxJd4f .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v73kxxJd4f table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v73kxxJd4f table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v73kxxJd4f table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v73kxxJd4f table td {
  border-top: 1px solid #232323;
}
.cid-v73kxxJd4f table.table {
  background: #ecae15;
}
.cid-v73kxxJd4f .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v73kxxJd4f .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v73kxxJd4f .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v73kxxJd4f .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v73kxxJd4f .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v73kxxJd4f .dataTables_filter {
    text-align: center;
  }
  .cid-v73kxxJd4f .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v73kxxJd4f .mbr-section-title {
  color: #232323;
}
.cid-v73kxxJd4f .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v73kxxJd4f .body-item {
  text-align: center;
}
.cid-skmfmdj6mb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmihLENBV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmihLENBV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmihLENBV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmihLENBV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmihLENBV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmihLENBV .row > .row {
  display: block;
}
.cid-skmihLENBV .mbr-gallery-item {
  width: 100%;
}
.cid-skmihLENBV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmihLENBV .mbr-gallery-item > div {
  position: relative;
}
.cid-skmihLENBV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmihLENBV .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmihLENBV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmihLENBV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfsqtKYb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmiiN64Xh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmiiN64Xh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmiiN64Xh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmiiN64Xh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmiiN64Xh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmiiN64Xh .row > .row {
  display: block;
}
.cid-skmiiN64Xh .mbr-gallery-item {
  width: 100%;
}
.cid-skmiiN64Xh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmiiN64Xh .mbr-gallery-item > div {
  position: relative;
}
.cid-skmiiN64Xh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmiiN64Xh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmiiN64Xh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmiiN64Xh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfv5uRlb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmik2kjDI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmik2kjDI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmik2kjDI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmik2kjDI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmik2kjDI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmik2kjDI .row > .row {
  display: block;
}
.cid-skmik2kjDI .mbr-gallery-item {
  width: 100%;
}
.cid-skmik2kjDI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmik2kjDI .mbr-gallery-item > div {
  position: relative;
}
.cid-skmik2kjDI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmik2kjDI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmik2kjDI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmik2kjDI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfvXON5g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmilne9X8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmilne9X8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmilne9X8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmilne9X8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmilne9X8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmilne9X8 .row > .row {
  display: block;
}
.cid-skmilne9X8 .mbr-gallery-item {
  width: 100%;
}
.cid-skmilne9X8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmilne9X8 .mbr-gallery-item > div {
  position: relative;
}
.cid-skmilne9X8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmilne9X8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmilne9X8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmilne9X8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfwQOlXD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmimBAGUf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmimBAGUf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmimBAGUf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmimBAGUf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmimBAGUf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmimBAGUf .row > .row {
  display: block;
}
.cid-skmimBAGUf .mbr-gallery-item {
  width: 100%;
}
.cid-skmimBAGUf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmimBAGUf .mbr-gallery-item > div {
  position: relative;
}
.cid-skmimBAGUf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmimBAGUf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmimBAGUf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmimBAGUf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfp1SIjN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmio1abPz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmio1abPz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmio1abPz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmio1abPz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmio1abPz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmio1abPz .row > .row {
  display: block;
}
.cid-skmio1abPz .mbr-gallery-item {
  width: 100%;
}
.cid-skmio1abPz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmio1abPz .mbr-gallery-item > div {
  position: relative;
}
.cid-skmio1abPz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmio1abPz .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmio1abPz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmio1abPz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfxTxToG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmipbobpm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmipbobpm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmipbobpm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmipbobpm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmipbobpm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmipbobpm .row > .row {
  display: block;
}
.cid-skmipbobpm .mbr-gallery-item {
  width: 100%;
}
.cid-skmipbobpm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmipbobpm .mbr-gallery-item > div {
  position: relative;
}
.cid-skmipbobpm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmipbobpm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmipbobpm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmipbobpm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfzVDUzt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmiq8TItc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmiq8TItc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmiq8TItc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmiq8TItc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmiq8TItc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmiq8TItc .row > .row {
  display: block;
}
.cid-skmiq8TItc .mbr-gallery-item {
  width: 100%;
}
.cid-skmiq8TItc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmiq8TItc .mbr-gallery-item > div {
  position: relative;
}
.cid-skmiq8TItc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmiq8TItc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmiq8TItc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmiq8TItc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfqbF9FG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmir6Ztjp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmir6Ztjp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmir6Ztjp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmir6Ztjp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmir6Ztjp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmir6Ztjp .row > .row {
  display: block;
}
.cid-skmir6Ztjp .mbr-gallery-item {
  width: 100%;
}
.cid-skmir6Ztjp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmir6Ztjp .mbr-gallery-item > div {
  position: relative;
}
.cid-skmir6Ztjp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmir6Ztjp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmir6Ztjp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmir6Ztjp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfAYVIu6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmis1WJAW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmis1WJAW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmis1WJAW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmis1WJAW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmis1WJAW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmis1WJAW .row > .row {
  display: block;
}
.cid-skmis1WJAW .mbr-gallery-item {
  width: 100%;
}
.cid-skmis1WJAW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmis1WJAW .mbr-gallery-item > div {
  position: relative;
}
.cid-skmis1WJAW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmis1WJAW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmis1WJAW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmis1WJAW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfDINNnV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmiuhTl9U {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmiuhTl9U .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmiuhTl9U .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmiuhTl9U .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmiuhTl9U .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmiuhTl9U .row > .row {
  display: block;
}
.cid-skmiuhTl9U .mbr-gallery-item {
  width: 100%;
}
.cid-skmiuhTl9U .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmiuhTl9U .mbr-gallery-item > div {
  position: relative;
}
.cid-skmiuhTl9U .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmiuhTl9U .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmiuhTl9U .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmiuhTl9U .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmftIqLkO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmisVxzw9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmisVxzw9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmisVxzw9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmisVxzw9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmisVxzw9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmisVxzw9 .row > .row {
  display: block;
}
.cid-skmisVxzw9 .mbr-gallery-item {
  width: 100%;
}
.cid-skmisVxzw9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmisVxzw9 .mbr-gallery-item > div {
  position: relative;
}
.cid-skmisVxzw9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmisVxzw9 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmisVxzw9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmisVxzw9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfJm3HEA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmivnS02w {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmivnS02w .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmivnS02w .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmivnS02w .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmivnS02w .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmivnS02w .row > .row {
  display: block;
}
.cid-skmivnS02w .mbr-gallery-item {
  width: 100%;
}
.cid-skmivnS02w .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmivnS02w .mbr-gallery-item > div {
  position: relative;
}
.cid-skmivnS02w .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmivnS02w .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmivnS02w .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmivnS02w .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfyRc1ca {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmiwlrTB6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmiwlrTB6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmiwlrTB6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmiwlrTB6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmiwlrTB6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmiwlrTB6 .row > .row {
  display: block;
}
.cid-skmiwlrTB6 .mbr-gallery-item {
  width: 100%;
}
.cid-skmiwlrTB6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmiwlrTB6 .mbr-gallery-item > div {
  position: relative;
}
.cid-skmiwlrTB6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmiwlrTB6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmiwlrTB6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmiwlrTB6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfCWrK8K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmixD9cSS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmixD9cSS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmixD9cSS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmixD9cSS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmixD9cSS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmixD9cSS .row > .row {
  display: block;
}
.cid-skmixD9cSS .mbr-gallery-item {
  width: 100%;
}
.cid-skmixD9cSS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmixD9cSS .mbr-gallery-item > div {
  position: relative;
}
.cid-skmixD9cSS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmixD9cSS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmixD9cSS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmixD9cSS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfL20BUh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmiySXiVv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmiySXiVv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmiySXiVv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmiySXiVv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmiySXiVv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmiySXiVv .row > .row {
  display: block;
}
.cid-skmiySXiVv .mbr-gallery-item {
  width: 100%;
}
.cid-skmiySXiVv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmiySXiVv .mbr-gallery-item > div {
  position: relative;
}
.cid-skmiySXiVv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmiySXiVv .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmiySXiVv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmiySXiVv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfGh4BMo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmizXK2R3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmizXK2R3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmizXK2R3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmizXK2R3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmizXK2R3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmizXK2R3 .row > .row {
  display: block;
}
.cid-skmizXK2R3 .mbr-gallery-item {
  width: 100%;
}
.cid-skmizXK2R3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmizXK2R3 .mbr-gallery-item > div {
  position: relative;
}
.cid-skmizXK2R3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmizXK2R3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmizXK2R3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmizXK2R3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfFvfgw8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmiAXt5x2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmiAXt5x2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmiAXt5x2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmiAXt5x2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmiAXt5x2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmiAXt5x2 .row > .row {
  display: block;
}
.cid-skmiAXt5x2 .mbr-gallery-item {
  width: 100%;
}
.cid-skmiAXt5x2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmiAXt5x2 .mbr-gallery-item > div {
  position: relative;
}
.cid-skmiAXt5x2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmiAXt5x2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmiAXt5x2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmiAXt5x2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfBYfBeM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmiC7yUGg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmiC7yUGg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmiC7yUGg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmiC7yUGg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmiC7yUGg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmiC7yUGg .row > .row {
  display: block;
}
.cid-skmiC7yUGg .mbr-gallery-item {
  width: 100%;
}
.cid-skmiC7yUGg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmiC7yUGg .mbr-gallery-item > div {
  position: relative;
}
.cid-skmiC7yUGg .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmiC7yUGg .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmiC7yUGg .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmiC7yUGg .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfEu4FMU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmiDcOlzE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmiDcOlzE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmiDcOlzE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmiDcOlzE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmiDcOlzE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmiDcOlzE .row > .row {
  display: block;
}
.cid-skmiDcOlzE .mbr-gallery-item {
  width: 100%;
}
.cid-skmiDcOlzE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmiDcOlzE .mbr-gallery-item > div {
  position: relative;
}
.cid-skmiDcOlzE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmiDcOlzE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmiDcOlzE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmiDcOlzE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfK9VpBc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmiE9mVzT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmiE9mVzT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmiE9mVzT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmiE9mVzT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmiE9mVzT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmiE9mVzT .row > .row {
  display: block;
}
.cid-skmiE9mVzT .mbr-gallery-item {
  width: 100%;
}
.cid-skmiE9mVzT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmiE9mVzT .mbr-gallery-item > div {
  position: relative;
}
.cid-skmiE9mVzT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmiE9mVzT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmiE9mVzT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmiE9mVzT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfLTl18l {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmiF21KAC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmiF21KAC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmiF21KAC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmiF21KAC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmiF21KAC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmiF21KAC .row > .row {
  display: block;
}
.cid-skmiF21KAC .mbr-gallery-item {
  width: 100%;
}
.cid-skmiF21KAC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmiF21KAC .mbr-gallery-item > div {
  position: relative;
}
.cid-skmiF21KAC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmiF21KAC .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmiF21KAC .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmiF21KAC .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmfraplYg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmiGczBkm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmiGczBkm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmiGczBkm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmiGczBkm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmiGczBkm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmiGczBkm .row > .row {
  display: block;
}
.cid-skmiGczBkm .mbr-gallery-item {
  width: 100%;
}
.cid-skmiGczBkm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmiGczBkm .mbr-gallery-item > div {
  position: relative;
}
.cid-skmiGczBkm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmiGczBkm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmiGczBkm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmiGczBkm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skmgRqc8cm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-skmiHcEB70 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skmiHcEB70 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skmiHcEB70 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skmiHcEB70 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skmiHcEB70 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skmiHcEB70 .row > .row {
  display: block;
}
.cid-skmiHcEB70 .mbr-gallery-item {
  width: 100%;
}
.cid-skmiHcEB70 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skmiHcEB70 .mbr-gallery-item > div {
  position: relative;
}
.cid-skmiHcEB70 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skmiHcEB70 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skmiHcEB70 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skmiHcEB70 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3zV75u3Vm {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s3zV75u3Vm .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3zV75u3Vm div.b {
  padding-top: 2rem;
}
.cid-s3zV75u3Vm H5 {
  color: #232323;
}
.cid-s3zVJOVpe7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zVJOVpe7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zVJOVpe7 .section-text {
  padding: 2rem 0;
}
.cid-s3zVJOVpe7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zVJOVpe7 .inner-container {
    width: 100% !important;
  }
}
.cid-v73l2f5n4T {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v73l2f5n4T .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73l2f5n4T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73l2f5n4T .row {
  justify-content: center;
}
.cid-v73l2f5n4T .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73l2f5n4T .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73l2f5n4T .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73l2f5n4T .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73l2f5n4T .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73l2f5n4T .mbr-text_1,
.cid-v73l2f5n4T .mbr-text_2,
.cid-v73l2f5n4T .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73l2f5n4T .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73l2f5n4T .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73l2f5n4T .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73l2f5n4T .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73l2f5n4T .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73l2f5n4T .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73l2f5n4T .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73l2f5n4T .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73l2f5n4T .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73l2f5n4T .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73l2f5n4T .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73l2f5n4T .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73l2f5n4T .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73l3eQiuN {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v73l3eQiuN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73l3eQiuN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73l3eQiuN .row {
  justify-content: center;
}
.cid-v73l3eQiuN .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73l3eQiuN .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73l3eQiuN .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73l3eQiuN .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73l3eQiuN .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73l3eQiuN .mbr-text_1,
.cid-v73l3eQiuN .mbr-text_2,
.cid-v73l3eQiuN .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73l3eQiuN .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73l3eQiuN .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73l3eQiuN .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73l3eQiuN .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73l3eQiuN .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73l3eQiuN .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73l3eQiuN .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73l3eQiuN .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73l3eQiuN .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73l3eQiuN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73l3eQiuN .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73l3eQiuN .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73l3eQiuN .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73l4JEdGa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73l4JEdGa .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v73l4JEdGa .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v73l4JEdGa .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v73l4JEdGa .inner-container {
    width: 100% !important;
  }
}
.cid-s3zVJPwcaS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zVJPwcaS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zVJPwcaS .section-text {
  padding: 2rem 0;
}
.cid-s3zVJPwcaS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zVJPwcaS .inner-container {
    width: 100% !important;
  }
}
.cid-v73l5LQ1eW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73l5LQ1eW .mbr-section-subtitle {
  color: #767676;
}
.cid-v73l5LQ1eW .container-table {
  margin: 0 auto;
}
.cid-v73l5LQ1eW .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v73l5LQ1eW .dataTables_wrapper {
  display: block;
}
.cid-v73l5LQ1eW .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v73l5LQ1eW .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v73l5LQ1eW table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v73l5LQ1eW table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v73l5LQ1eW table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v73l5LQ1eW table td {
  border-top: 1px solid #232323;
}
.cid-v73l5LQ1eW table.table {
  background: #ecae15;
}
.cid-v73l5LQ1eW .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v73l5LQ1eW .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v73l5LQ1eW .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v73l5LQ1eW .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v73l5LQ1eW .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v73l5LQ1eW .dataTables_filter {
    text-align: center;
  }
  .cid-v73l5LQ1eW .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v73l5LQ1eW .mbr-section-title {
  color: #232323;
}
.cid-v73l5LQ1eW .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v73l5LQ1eW .body-item {
  text-align: center;
}
.cid-sjZ9pCX7zh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiIdoGuC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiIdoGuC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiIdoGuC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiIdoGuC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiIdoGuC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiIdoGuC .row > .row {
  display: block;
}
.cid-sjZiIdoGuC .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiIdoGuC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiIdoGuC .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiIdoGuC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiIdoGuC .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiIdoGuC .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiIdoGuC .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9vsOVRD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiJpjbD7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiJpjbD7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiJpjbD7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiJpjbD7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiJpjbD7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiJpjbD7 .row > .row {
  display: block;
}
.cid-sjZiJpjbD7 .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiJpjbD7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiJpjbD7 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiJpjbD7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiJpjbD7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiJpjbD7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiJpjbD7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9wpipr7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiKw6YYs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiKw6YYs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiKw6YYs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiKw6YYs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiKw6YYs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiKw6YYs .row > .row {
  display: block;
}
.cid-sjZiKw6YYs .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiKw6YYs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiKw6YYs .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiKw6YYs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiKw6YYs .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiKw6YYs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiKw6YYs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9uyoOLD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiLAHURd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiLAHURd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiLAHURd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiLAHURd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiLAHURd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiLAHURd .row > .row {
  display: block;
}
.cid-sjZiLAHURd .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiLAHURd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiLAHURd .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiLAHURd .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiLAHURd .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiLAHURd .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiLAHURd .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9sO7epi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiMCA1hq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiMCA1hq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiMCA1hq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiMCA1hq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiMCA1hq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiMCA1hq .row > .row {
  display: block;
}
.cid-sjZiMCA1hq .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiMCA1hq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiMCA1hq .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiMCA1hq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiMCA1hq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiMCA1hq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiMCA1hq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9rXBki9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiNyJcIv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiNyJcIv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiNyJcIv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiNyJcIv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiNyJcIv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiNyJcIv .row > .row {
  display: block;
}
.cid-sjZiNyJcIv .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiNyJcIv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiNyJcIv .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiNyJcIv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiNyJcIv .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiNyJcIv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiNyJcIv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9yogY2F {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiOFoiZc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiOFoiZc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiOFoiZc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiOFoiZc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiOFoiZc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiOFoiZc .row > .row {
  display: block;
}
.cid-sjZiOFoiZc .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiOFoiZc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiOFoiZc .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiOFoiZc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiOFoiZc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiOFoiZc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiOFoiZc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9BrlWcS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiPDm6T9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiPDm6T9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiPDm6T9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiPDm6T9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiPDm6T9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiPDm6T9 .row > .row {
  display: block;
}
.cid-sjZiPDm6T9 .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiPDm6T9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiPDm6T9 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiPDm6T9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiPDm6T9 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiPDm6T9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiPDm6T9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9D8RaLu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiQsvTx4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiQsvTx4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiQsvTx4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiQsvTx4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiQsvTx4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiQsvTx4 .row > .row {
  display: block;
}
.cid-sjZiQsvTx4 .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiQsvTx4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiQsvTx4 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiQsvTx4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiQsvTx4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiQsvTx4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiQsvTx4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9CazdrJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiRhGceN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiRhGceN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiRhGceN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiRhGceN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiRhGceN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiRhGceN .row > .row {
  display: block;
}
.cid-sjZiRhGceN .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiRhGceN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiRhGceN .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiRhGceN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiRhGceN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiRhGceN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiRhGceN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9zoVTt4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiShtZ0y {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiShtZ0y .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiShtZ0y .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiShtZ0y .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiShtZ0y .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiShtZ0y .row > .row {
  display: block;
}
.cid-sjZiShtZ0y .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiShtZ0y .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiShtZ0y .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiShtZ0y .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiShtZ0y .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiShtZ0y .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiShtZ0y .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9xaWOp6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiTdkxZg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiTdkxZg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiTdkxZg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiTdkxZg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiTdkxZg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiTdkxZg .row > .row {
  display: block;
}
.cid-sjZiTdkxZg .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiTdkxZg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiTdkxZg .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiTdkxZg .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiTdkxZg .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiTdkxZg .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiTdkxZg .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9EWATL8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiU5IzR8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiU5IzR8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiU5IzR8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiU5IzR8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiU5IzR8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiU5IzR8 .row > .row {
  display: block;
}
.cid-sjZiU5IzR8 .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiU5IzR8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiU5IzR8 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiU5IzR8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiU5IzR8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiU5IzR8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiU5IzR8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9FZXxa3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiUZtKAr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiUZtKAr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiUZtKAr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiUZtKAr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiUZtKAr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiUZtKAr .row > .row {
  display: block;
}
.cid-sjZiUZtKAr .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiUZtKAr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiUZtKAr .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiUZtKAr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiUZtKAr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiUZtKAr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiUZtKAr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9NY6tpY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiVRtqe3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiVRtqe3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiVRtqe3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiVRtqe3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiVRtqe3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiVRtqe3 .row > .row {
  display: block;
}
.cid-sjZiVRtqe3 .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiVRtqe3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiVRtqe3 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiVRtqe3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiVRtqe3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiVRtqe3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiVRtqe3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9IM8rsq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiWTMf38 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiWTMf38 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiWTMf38 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiWTMf38 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiWTMf38 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiWTMf38 .row > .row {
  display: block;
}
.cid-sjZiWTMf38 .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiWTMf38 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiWTMf38 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiWTMf38 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiWTMf38 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiWTMf38 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiWTMf38 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9GMSdiK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiXHwB6S {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiXHwB6S .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiXHwB6S .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiXHwB6S .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiXHwB6S .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiXHwB6S .row > .row {
  display: block;
}
.cid-sjZiXHwB6S .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiXHwB6S .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiXHwB6S .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiXHwB6S .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiXHwB6S .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiXHwB6S .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiXHwB6S .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9DUIJe9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiYzCEt4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiYzCEt4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiYzCEt4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiYzCEt4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiYzCEt4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiYzCEt4 .row > .row {
  display: block;
}
.cid-sjZiYzCEt4 .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiYzCEt4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiYzCEt4 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiYzCEt4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiYzCEt4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiYzCEt4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiYzCEt4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9tJHXHp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZiZphysU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZiZphysU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZiZphysU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZiZphysU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZiZphysU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZiZphysU .row > .row {
  display: block;
}
.cid-sjZiZphysU .mbr-gallery-item {
  width: 100%;
}
.cid-sjZiZphysU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZiZphysU .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZiZphysU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZiZphysU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZiZphysU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZiZphysU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9P2OScO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZj0c3tYR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZj0c3tYR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZj0c3tYR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZj0c3tYR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZj0c3tYR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZj0c3tYR .row > .row {
  display: block;
}
.cid-sjZj0c3tYR .mbr-gallery-item {
  width: 100%;
}
.cid-sjZj0c3tYR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZj0c3tYR .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZj0c3tYR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZj0c3tYR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZj0c3tYR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZj0c3tYR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9HIQ7dm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZj16W9OY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZj16W9OY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZj16W9OY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZj16W9OY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZj16W9OY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZj16W9OY .row > .row {
  display: block;
}
.cid-sjZj16W9OY .mbr-gallery-item {
  width: 100%;
}
.cid-sjZj16W9OY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZj16W9OY .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZj16W9OY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZj16W9OY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZj16W9OY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZj16W9OY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9AudLZE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZj2b0ei3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZj2b0ei3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZj2b0ei3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZj2b0ei3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZj2b0ei3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZj2b0ei3 .row > .row {
  display: block;
}
.cid-sjZj2b0ei3 .mbr-gallery-item {
  width: 100%;
}
.cid-sjZj2b0ei3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZj2b0ei3 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZj2b0ei3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZj2b0ei3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZj2b0ei3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZj2b0ei3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ9qTXptD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZj3bt60L {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZj3bt60L .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZj3bt60L .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZj3bt60L .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZj3bt60L .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZj3bt60L .row > .row {
  display: block;
}
.cid-sjZj3bt60L .mbr-gallery-item {
  width: 100%;
}
.cid-sjZj3bt60L .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZj3bt60L .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZj3bt60L .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZj3bt60L .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZj3bt60L .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZj3bt60L .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZi7e83PD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZj48BPri {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZj48BPri .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZj48BPri .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZj48BPri .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZj48BPri .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZj48BPri .row > .row {
  display: block;
}
.cid-sjZj48BPri .mbr-gallery-item {
  width: 100%;
}
.cid-sjZj48BPri .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZj48BPri .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZj48BPri .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZj48BPri .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZj48BPri .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZj48BPri .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3zVJX01Qu {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s3zVJX01Qu .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3zVJX01Qu div.b {
  padding-top: 2rem;
}
.cid-s3zVJX01Qu H5 {
  color: #232323;
}
.cid-s3zWx3NmNl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zWx3NmNl .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zWx3NmNl .section-text {
  padding: 2rem 0;
}
.cid-s3zWx3NmNl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zWx3NmNl .inner-container {
    width: 100% !important;
  }
}
.cid-v73lnRAHwo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v73lnRAHwo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73lnRAHwo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73lnRAHwo .row {
  justify-content: center;
}
.cid-v73lnRAHwo .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73lnRAHwo .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73lnRAHwo .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73lnRAHwo .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73lnRAHwo .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73lnRAHwo .mbr-text_1,
.cid-v73lnRAHwo .mbr-text_2,
.cid-v73lnRAHwo .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73lnRAHwo .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73lnRAHwo .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73lnRAHwo .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73lnRAHwo .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73lnRAHwo .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73lnRAHwo .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73lnRAHwo .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73lnRAHwo .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73lnRAHwo .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73lnRAHwo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73lnRAHwo .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73lnRAHwo .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73lnRAHwo .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73loWnoB4 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v73loWnoB4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73loWnoB4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73loWnoB4 .row {
  justify-content: center;
}
.cid-v73loWnoB4 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73loWnoB4 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73loWnoB4 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73loWnoB4 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73loWnoB4 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73loWnoB4 .mbr-text_1,
.cid-v73loWnoB4 .mbr-text_2,
.cid-v73loWnoB4 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73loWnoB4 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73loWnoB4 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73loWnoB4 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73loWnoB4 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73loWnoB4 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73loWnoB4 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73loWnoB4 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73loWnoB4 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73loWnoB4 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73loWnoB4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73loWnoB4 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73loWnoB4 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73loWnoB4 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73lqsJZQd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73lqsJZQd .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v73lqsJZQd .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v73lqsJZQd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v73lqsJZQd .inner-container {
    width: 100% !important;
  }
}
.cid-s3zWx4gZXD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zWx4gZXD .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zWx4gZXD .section-text {
  padding: 2rem 0;
}
.cid-s3zWx4gZXD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zWx4gZXD .inner-container {
    width: 100% !important;
  }
}
.cid-v73ls3KU3V {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73ls3KU3V .mbr-section-subtitle {
  color: #767676;
}
.cid-v73ls3KU3V .container-table {
  margin: 0 auto;
}
.cid-v73ls3KU3V .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v73ls3KU3V .dataTables_wrapper {
  display: block;
}
.cid-v73ls3KU3V .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v73ls3KU3V .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v73ls3KU3V table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v73ls3KU3V table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v73ls3KU3V table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v73ls3KU3V table td {
  border-top: 1px solid #232323;
}
.cid-v73ls3KU3V table.table {
  background: #ecae15;
}
.cid-v73ls3KU3V .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v73ls3KU3V .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v73ls3KU3V .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v73ls3KU3V .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v73ls3KU3V .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v73ls3KU3V .dataTables_filter {
    text-align: center;
  }
  .cid-v73ls3KU3V .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v73ls3KU3V .mbr-section-title {
  color: #232323;
}
.cid-v73ls3KU3V .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v73ls3KU3V .body-item {
  text-align: center;
}
.cid-sjYyXd4IUs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYA4D2P6J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYA4D2P6J .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYA4D2P6J .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYA4D2P6J .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYA4D2P6J .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYA4D2P6J .row > .row {
  display: block;
}
.cid-sjYA4D2P6J .mbr-gallery-item {
  width: 100%;
}
.cid-sjYA4D2P6J .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYA4D2P6J .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYA4D2P6J .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYA4D2P6J .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYA4D2P6J .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYA4D2P6J .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYyYoa93S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYzi1qEAK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYzi1qEAK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYzi1qEAK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYzi1qEAK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYzi1qEAK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYzi1qEAK .row > .row {
  display: block;
}
.cid-sjYzi1qEAK .mbr-gallery-item {
  width: 100%;
}
.cid-sjYzi1qEAK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYzi1qEAK .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYzi1qEAK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYzi1qEAK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYzi1qEAK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYzi1qEAK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYB87y5lc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYB9OxNua {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYB9OxNua .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYB9OxNua .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYB9OxNua .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYB9OxNua .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYB9OxNua .row > .row {
  display: block;
}
.cid-sjYB9OxNua .mbr-gallery-item {
  width: 100%;
}
.cid-sjYB9OxNua .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYB9OxNua .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYB9OxNua .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYB9OxNua .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYB9OxNua .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYB9OxNua .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYyZnMzqt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYA5YwzRJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYA5YwzRJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYA5YwzRJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYA5YwzRJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYA5YwzRJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYA5YwzRJ .row > .row {
  display: block;
}
.cid-sjYA5YwzRJ .mbr-gallery-item {
  width: 100%;
}
.cid-sjYA5YwzRJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYA5YwzRJ .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYA5YwzRJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYA5YwzRJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYA5YwzRJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYA5YwzRJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYDoD1gS8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYDqbetUL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYDqbetUL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYDqbetUL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYDqbetUL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYDqbetUL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYDqbetUL .row > .row {
  display: block;
}
.cid-sjYDqbetUL .mbr-gallery-item {
  width: 100%;
}
.cid-sjYDqbetUL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYDqbetUL .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYDqbetUL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYDqbetUL .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYDqbetUL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYDqbetUL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYz0bIm5B {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYA713DYw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYA713DYw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYA713DYw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYA713DYw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYA713DYw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYA713DYw .row > .row {
  display: block;
}
.cid-sjYA713DYw .mbr-gallery-item {
  width: 100%;
}
.cid-sjYA713DYw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYA713DYw .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYA713DYw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYA713DYw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYA713DYw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYA713DYw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYEgNI0UG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYEidfcl0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYEidfcl0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYEidfcl0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYEidfcl0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYEidfcl0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYEidfcl0 .row > .row {
  display: block;
}
.cid-sjYEidfcl0 .mbr-gallery-item {
  width: 100%;
}
.cid-sjYEidfcl0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYEidfcl0 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYEidfcl0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYEidfcl0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYEidfcl0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYEidfcl0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYz0UM6wg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYA7TMMu0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYA7TMMu0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYA7TMMu0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYA7TMMu0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYA7TMMu0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYA7TMMu0 .row > .row {
  display: block;
}
.cid-sjYA7TMMu0 .mbr-gallery-item {
  width: 100%;
}
.cid-sjYA7TMMu0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYA7TMMu0 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYA7TMMu0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYA7TMMu0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYA7TMMu0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYA7TMMu0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYEZDFHPd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYF0YDbfm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYF0YDbfm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYF0YDbfm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYF0YDbfm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYF0YDbfm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYF0YDbfm .row > .row {
  display: block;
}
.cid-sjYF0YDbfm .mbr-gallery-item {
  width: 100%;
}
.cid-sjYF0YDbfm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYF0YDbfm .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYF0YDbfm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYF0YDbfm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYF0YDbfm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYF0YDbfm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYz5yyr5c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYA8OQQXa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYA8OQQXa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYA8OQQXa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYA8OQQXa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYA8OQQXa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYA8OQQXa .row > .row {
  display: block;
}
.cid-sjYA8OQQXa .mbr-gallery-item {
  width: 100%;
}
.cid-sjYA8OQQXa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYA8OQQXa .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYA8OQQXa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYA8OQQXa .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYA8OQQXa .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYA8OQQXa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYTOec6M9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYTPphBsx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYTPphBsx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYTPphBsx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYTPphBsx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYTPphBsx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYTPphBsx .row > .row {
  display: block;
}
.cid-sjYTPphBsx .mbr-gallery-item {
  width: 100%;
}
.cid-sjYTPphBsx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYTPphBsx .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYTPphBsx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYTPphBsx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYTPphBsx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYTPphBsx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYFHW9fms {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYFJqfVaN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYFJqfVaN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYFJqfVaN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYFJqfVaN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYFJqfVaN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYFJqfVaN .row > .row {
  display: block;
}
.cid-sjYFJqfVaN .mbr-gallery-item {
  width: 100%;
}
.cid-sjYFJqfVaN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYFJqfVaN .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYFJqfVaN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYFJqfVaN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYFJqfVaN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYFJqfVaN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYWfvi3qw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYWgIKyRG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYWgIKyRG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYWgIKyRG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYWgIKyRG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYWgIKyRG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYWgIKyRG .row > .row {
  display: block;
}
.cid-sjYWgIKyRG .mbr-gallery-item {
  width: 100%;
}
.cid-sjYWgIKyRG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYWgIKyRG .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYWgIKyRG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYWgIKyRG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYWgIKyRG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYWgIKyRG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYz1KzST5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYA9Kgca9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYA9Kgca9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYA9Kgca9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYA9Kgca9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYA9Kgca9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYA9Kgca9 .row > .row {
  display: block;
}
.cid-sjYA9Kgca9 .mbr-gallery-item {
  width: 100%;
}
.cid-sjYA9Kgca9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYA9Kgca9 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYA9Kgca9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYA9Kgca9 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYA9Kgca9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYA9Kgca9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYXltFZ5q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYXmJHiM9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYXmJHiM9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYXmJHiM9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYXmJHiM9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYXmJHiM9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYXmJHiM9 .row > .row {
  display: block;
}
.cid-sjYXmJHiM9 .mbr-gallery-item {
  width: 100%;
}
.cid-sjYXmJHiM9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYXmJHiM9 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYXmJHiM9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYXmJHiM9 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYXmJHiM9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYXmJHiM9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYz3Tv3N7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYW8zXNJn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYW8zXNJn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYW8zXNJn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYW8zXNJn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYW8zXNJn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYW8zXNJn .row > .row {
  display: block;
}
.cid-sjYW8zXNJn .mbr-gallery-item {
  width: 100%;
}
.cid-sjYW8zXNJn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYW8zXNJn .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYW8zXNJn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYW8zXNJn .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYW8zXNJn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYW8zXNJn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYWoIdhCl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYAaAd5LQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYAaAd5LQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYAaAd5LQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYAaAd5LQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYAaAd5LQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYAaAd5LQ .row > .row {
  display: block;
}
.cid-sjYAaAd5LQ .mbr-gallery-item {
  width: 100%;
}
.cid-sjYAaAd5LQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYAaAd5LQ .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYAaAd5LQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYAaAd5LQ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYAaAd5LQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYAaAd5LQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYz2LSwja {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYAbq6AzO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYAbq6AzO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYAbq6AzO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYAbq6AzO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYAbq6AzO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYAbq6AzO .row > .row {
  display: block;
}
.cid-sjYAbq6AzO .mbr-gallery-item {
  width: 100%;
}
.cid-sjYAbq6AzO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYAbq6AzO .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYAbq6AzO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYAbq6AzO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYAbq6AzO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYAbq6AzO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYz4EMxqg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYAcsV9kU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYAcsV9kU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYAcsV9kU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYAcsV9kU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYAcsV9kU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYAcsV9kU .row > .row {
  display: block;
}
.cid-sjYAcsV9kU .mbr-gallery-item {
  width: 100%;
}
.cid-sjYAcsV9kU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYAcsV9kU .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYAcsV9kU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYAcsV9kU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYAcsV9kU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYAcsV9kU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYz6otJSI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYAdjcUa2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYAdjcUa2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYAdjcUa2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYAdjcUa2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYAdjcUa2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYAdjcUa2 .row > .row {
  display: block;
}
.cid-sjYAdjcUa2 .mbr-gallery-item {
  width: 100%;
}
.cid-sjYAdjcUa2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYAdjcUa2 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYAdjcUa2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYAdjcUa2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYAdjcUa2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYAdjcUa2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ1DhRPCN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZ1EKKKaa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZ1EKKKaa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZ1EKKKaa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZ1EKKKaa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZ1EKKKaa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZ1EKKKaa .row > .row {
  display: block;
}
.cid-sjZ1EKKKaa .mbr-gallery-item {
  width: 100%;
}
.cid-sjZ1EKKKaa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZ1EKKKaa .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZ1EKKKaa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZ1EKKKaa .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZ1EKKKaa .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZ1EKKKaa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjYz78wP8H {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjYAeb32sW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjYAeb32sW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjYAeb32sW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjYAeb32sW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjYAeb32sW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjYAeb32sW .row > .row {
  display: block;
}
.cid-sjYAeb32sW .mbr-gallery-item {
  width: 100%;
}
.cid-sjYAeb32sW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjYAeb32sW .mbr-gallery-item > div {
  position: relative;
}
.cid-sjYAeb32sW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjYAeb32sW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjYAeb32sW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjYAeb32sW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjZ2TsNifu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjZ2UyinM7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjZ2UyinM7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjZ2UyinM7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjZ2UyinM7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjZ2UyinM7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjZ2UyinM7 .row > .row {
  display: block;
}
.cid-sjZ2UyinM7 .mbr-gallery-item {
  width: 100%;
}
.cid-sjZ2UyinM7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjZ2UyinM7 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjZ2UyinM7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjZ2UyinM7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjZ2UyinM7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjZ2UyinM7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3zWxbIjC3 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s3zWxbIjC3 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3zWxbIjC3 div.b {
  padding-top: 2rem;
}
.cid-s3zWxbIjC3 H5 {
  color: #232323;
}
.cid-s3zXfbgV4O {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zXfbgV4O .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zXfbgV4O .section-text {
  padding: 2rem 0;
}
.cid-s3zXfbgV4O .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zXfbgV4O .inner-container {
    width: 100% !important;
  }
}
.cid-v73lORMczz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v73lORMczz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73lORMczz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73lORMczz .row {
  justify-content: center;
}
.cid-v73lORMczz .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73lORMczz .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73lORMczz .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73lORMczz .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73lORMczz .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73lORMczz .mbr-text_1,
.cid-v73lORMczz .mbr-text_2,
.cid-v73lORMczz .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73lORMczz .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73lORMczz .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73lORMczz .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73lORMczz .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73lORMczz .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73lORMczz .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73lORMczz .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73lORMczz .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73lORMczz .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v73lORMczz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73lORMczz .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73lORMczz .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73lORMczz .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73lQ7yb0w {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v73lQ7yb0w .mbr-fallback-image.disabled {
  display: none;
}
.cid-v73lQ7yb0w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v73lQ7yb0w .row {
  justify-content: center;
}
.cid-v73lQ7yb0w .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v73lQ7yb0w .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v73lQ7yb0w .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v73lQ7yb0w .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v73lQ7yb0w .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v73lQ7yb0w .mbr-text_1,
.cid-v73lQ7yb0w .mbr-text_2,
.cid-v73lQ7yb0w .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v73lQ7yb0w .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73lQ7yb0w .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v73lQ7yb0w .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73lQ7yb0w .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73lQ7yb0w .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73lQ7yb0w .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v73lQ7yb0w .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v73lQ7yb0w .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v73lQ7yb0w .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v73lQ7yb0w .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v73lQ7yb0w .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v73lQ7yb0w .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v73lQ7yb0w .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v73lSC2OVQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73lSC2OVQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v73lSC2OVQ .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v73lSC2OVQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v73lSC2OVQ .inner-container {
    width: 100% !important;
  }
}
.cid-s3zXfbOTub {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s3zXfbOTub .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3zXfbOTub .section-text {
  padding: 2rem 0;
}
.cid-s3zXfbOTub .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3zXfbOTub .inner-container {
    width: 100% !important;
  }
}
.cid-v73lTNBYVt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v73lTNBYVt .mbr-section-subtitle {
  color: #767676;
}
.cid-v73lTNBYVt .container-table {
  margin: 0 auto;
}
.cid-v73lTNBYVt .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v73lTNBYVt .dataTables_wrapper {
  display: block;
}
.cid-v73lTNBYVt .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v73lTNBYVt .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v73lTNBYVt table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v73lTNBYVt table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v73lTNBYVt table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v73lTNBYVt table td {
  border-top: 1px solid #232323;
}
.cid-v73lTNBYVt table.table {
  background: #ecae15;
}
.cid-v73lTNBYVt .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v73lTNBYVt .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v73lTNBYVt .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v73lTNBYVt .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v73lTNBYVt .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v73lTNBYVt .dataTables_filter {
    text-align: center;
  }
  .cid-v73lTNBYVt .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v73lTNBYVt .mbr-section-title {
  color: #232323;
}
.cid-v73lTNBYVt .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v73lTNBYVt .body-item {
  text-align: center;
}
.cid-sjHraOur0J {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHrchi9Kf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHrchi9Kf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHrchi9Kf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHrchi9Kf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHrchi9Kf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHrchi9Kf .row > .row {
  display: block;
}
.cid-sjHrchi9Kf .mbr-gallery-item {
  width: 100%;
}
.cid-sjHrchi9Kf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHrchi9Kf .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHrchi9Kf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHrchi9Kf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHrchi9Kf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHrchi9Kf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHloz8KnP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHlpVEY1T {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHlpVEY1T .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHlpVEY1T .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHlpVEY1T .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHlpVEY1T .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHlpVEY1T .row > .row {
  display: block;
}
.cid-sjHlpVEY1T .mbr-gallery-item {
  width: 100%;
}
.cid-sjHlpVEY1T .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHlpVEY1T .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHlpVEY1T .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHlpVEY1T .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHlpVEY1T .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHlpVEY1T .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHlSoax4J {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHmK91HpY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHmK91HpY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHmK91HpY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHmK91HpY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHmK91HpY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHmK91HpY .row > .row {
  display: block;
}
.cid-sjHmK91HpY .mbr-gallery-item {
  width: 100%;
}
.cid-sjHmK91HpY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHmK91HpY .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHmK91HpY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHmK91HpY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHmK91HpY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHmK91HpY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHlXe9KGt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHuRTnwSd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHuRTnwSd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHuRTnwSd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHuRTnwSd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHuRTnwSd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHuRTnwSd .row > .row {
  display: block;
}
.cid-sjHuRTnwSd .mbr-gallery-item {
  width: 100%;
}
.cid-sjHuRTnwSd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHuRTnwSd .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHuRTnwSd .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHuRTnwSd .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHuRTnwSd .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHuRTnwSd .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHuTB7eQX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHmL3vT9P {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHmL3vT9P .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHmL3vT9P .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHmL3vT9P .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHmL3vT9P .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHmL3vT9P .row > .row {
  display: block;
}
.cid-sjHmL3vT9P .mbr-gallery-item {
  width: 100%;
}
.cid-sjHmL3vT9P .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHmL3vT9P .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHmL3vT9P .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHmL3vT9P .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHmL3vT9P .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHmL3vT9P .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHueJsaVL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHugrPCTk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHugrPCTk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHugrPCTk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHugrPCTk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHugrPCTk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHugrPCTk .row > .row {
  display: block;
}
.cid-sjHugrPCTk .mbr-gallery-item {
  width: 100%;
}
.cid-sjHugrPCTk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHugrPCTk .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHugrPCTk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHugrPCTk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHugrPCTk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHugrPCTk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHm2z7bqU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHmM2NNSp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHmM2NNSp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHmM2NNSp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHmM2NNSp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHmM2NNSp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHmM2NNSp .row > .row {
  display: block;
}
.cid-sjHmM2NNSp .mbr-gallery-item {
  width: 100%;
}
.cid-sjHmM2NNSp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHmM2NNSp .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHmM2NNSp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHmM2NNSp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHmM2NNSp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHmM2NNSp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHASoFKx2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHAU5dM5i {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHAU5dM5i .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHAU5dM5i .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHAU5dM5i .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHAU5dM5i .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHAU5dM5i .row > .row {
  display: block;
}
.cid-sjHAU5dM5i .mbr-gallery-item {
  width: 100%;
}
.cid-sjHAU5dM5i .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHAU5dM5i .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHAU5dM5i .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHAU5dM5i .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHAU5dM5i .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHAU5dM5i .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHm1D0IkL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHmN279ny {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHmN279ny .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHmN279ny .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHmN279ny .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHmN279ny .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHmN279ny .row > .row {
  display: block;
}
.cid-sjHmN279ny .mbr-gallery-item {
  width: 100%;
}
.cid-sjHmN279ny .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHmN279ny .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHmN279ny .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHmN279ny .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHmN279ny .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHmN279ny .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHBZKF2nl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHC1nshic {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHC1nshic .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHC1nshic .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHC1nshic .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHC1nshic .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHC1nshic .row > .row {
  display: block;
}
.cid-sjHC1nshic .mbr-gallery-item {
  width: 100%;
}
.cid-sjHC1nshic .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHC1nshic .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHC1nshic .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHC1nshic .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHC1nshic .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHC1nshic .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHm3pt2BT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHmOBj4wj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHmOBj4wj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHmOBj4wj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHmOBj4wj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHmOBj4wj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHmOBj4wj .row > .row {
  display: block;
}
.cid-sjHmOBj4wj .mbr-gallery-item {
  width: 100%;
}
.cid-sjHmOBj4wj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHmOBj4wj .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHmOBj4wj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHmOBj4wj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHmOBj4wj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHmOBj4wj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHD2uv2zT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHD4bO6De {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHD4bO6De .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHD4bO6De .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHD4bO6De .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHD4bO6De .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHD4bO6De .row > .row {
  display: block;
}
.cid-sjHD4bO6De .mbr-gallery-item {
  width: 100%;
}
.cid-sjHD4bO6De .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHD4bO6De .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHD4bO6De .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHD4bO6De .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHD4bO6De .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHD4bO6De .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHm5S7BwO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHmQxOk8D {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHmQxOk8D .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHmQxOk8D .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHmQxOk8D .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHmQxOk8D .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHmQxOk8D .row > .row {
  display: block;
}
.cid-sjHmQxOk8D .mbr-gallery-item {
  width: 100%;
}
.cid-sjHmQxOk8D .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHmQxOk8D .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHmQxOk8D .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHmQxOk8D .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHmQxOk8D .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHmQxOk8D .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjOX6jz36U {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjOX7C0Nwf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjOX7C0Nwf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjOX7C0Nwf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjOX7C0Nwf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjOX7C0Nwf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjOX7C0Nwf .row > .row {
  display: block;
}
.cid-sjOX7C0Nwf .mbr-gallery-item {
  width: 100%;
}
.cid-sjOX7C0Nwf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjOX7C0Nwf .mbr-gallery-item > div {
  position: relative;
}
.cid-sjOX7C0Nwf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjOX7C0Nwf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjOX7C0Nwf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjOX7C0Nwf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHm58NXIQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHmRKptrS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHmRKptrS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHmRKptrS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHmRKptrS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHmRKptrS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHmRKptrS .row > .row {
  display: block;
}
.cid-sjHmRKptrS .mbr-gallery-item {
  width: 100%;
}
.cid-sjHmRKptrS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHmRKptrS .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHmRKptrS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHmRKptrS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHmRKptrS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHmRKptrS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjOY9vp4ci {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjOYbeguDn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjOYbeguDn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjOYbeguDn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjOYbeguDn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjOYbeguDn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjOYbeguDn .row > .row {
  display: block;
}
.cid-sjOYbeguDn .mbr-gallery-item {
  width: 100%;
}
.cid-sjOYbeguDn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjOYbeguDn .mbr-gallery-item > div {
  position: relative;
}
.cid-sjOYbeguDn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjOYbeguDn .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjOYbeguDn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjOYbeguDn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHm4dELf4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHmSFuJoo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHmSFuJoo .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHmSFuJoo .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHmSFuJoo .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHmSFuJoo .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHmSFuJoo .row > .row {
  display: block;
}
.cid-sjHmSFuJoo .mbr-gallery-item {
  width: 100%;
}
.cid-sjHmSFuJoo .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHmSFuJoo .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHmSFuJoo .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHmSFuJoo .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHmSFuJoo .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHmSFuJoo .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHm0OAtwQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjP1JE3ND0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjP1JE3ND0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjP1JE3ND0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjP1JE3ND0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjP1JE3ND0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjP1JE3ND0 .row > .row {
  display: block;
}
.cid-sjP1JE3ND0 .mbr-gallery-item {
  width: 100%;
}
.cid-sjP1JE3ND0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjP1JE3ND0 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjP1JE3ND0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjP1JE3ND0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjP1JE3ND0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjP1JE3ND0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjP1HY8Epm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHmTQigLt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHmTQigLt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHmTQigLt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHmTQigLt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHmTQigLt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHmTQigLt .row > .row {
  display: block;
}
.cid-sjHmTQigLt .mbr-gallery-item {
  width: 100%;
}
.cid-sjHmTQigLt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHmTQigLt .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHmTQigLt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHmTQigLt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHmTQigLt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHmTQigLt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjP2GVSTXR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjP2IrKRN3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjP2IrKRN3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjP2IrKRN3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjP2IrKRN3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjP2IrKRN3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjP2IrKRN3 .row > .row {
  display: block;
}
.cid-sjP2IrKRN3 .mbr-gallery-item {
  width: 100%;
}
.cid-sjP2IrKRN3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjP2IrKRN3 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjP2IrKRN3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjP2IrKRN3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjP2IrKRN3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjP2IrKRN3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHlZJtk5Q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHmUVaacK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHmUVaacK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHmUVaacK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHmUVaacK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHmUVaacK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHmUVaacK .row > .row {
  display: block;
}
.cid-sjHmUVaacK .mbr-gallery-item {
  width: 100%;
}
.cid-sjHmUVaacK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHmUVaacK .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHmUVaacK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHmUVaacK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHmUVaacK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHmUVaacK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjP5KD3S4J {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjP5LUJByP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjP5LUJByP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjP5LUJByP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjP5LUJByP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjP5LUJByP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjP5LUJByP .row > .row {
  display: block;
}
.cid-sjP5LUJByP .mbr-gallery-item {
  width: 100%;
}
.cid-sjP5LUJByP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjP5LUJByP .mbr-gallery-item > div {
  position: relative;
}
.cid-sjP5LUJByP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjP5LUJByP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjP5LUJByP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjP5LUJByP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjHlYGeyYY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjHmWtzNNh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjHmWtzNNh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjHmWtzNNh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjHmWtzNNh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjHmWtzNNh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjHmWtzNNh .row > .row {
  display: block;
}
.cid-sjHmWtzNNh .mbr-gallery-item {
  width: 100%;
}
.cid-sjHmWtzNNh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjHmWtzNNh .mbr-gallery-item > div {
  position: relative;
}
.cid-sjHmWtzNNh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjHmWtzNNh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjHmWtzNNh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjHmWtzNNh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjP4SAnkA2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sjP4TqjU8k {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sjP4TqjU8k .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjP4TqjU8k .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjP4TqjU8k .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjP4TqjU8k .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjP4TqjU8k .row > .row {
  display: block;
}
.cid-sjP4TqjU8k .mbr-gallery-item {
  width: 100%;
}
.cid-sjP4TqjU8k .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjP4TqjU8k .mbr-gallery-item > div {
  position: relative;
}
.cid-sjP4TqjU8k .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjP4TqjU8k .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjP4TqjU8k .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjP4TqjU8k .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3zXfjetEn {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s3zXfjetEn .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3zXfjetEn div.b {
  padding-top: 2rem;
}
.cid-s3zXfjetEn H5 {
  color: #232323;
}
.cid-s3QAfYC0E7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s3QAfYC0E7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3QAfYC0E7 .section-text {
  padding: 2rem 0;
}
.cid-s3QAfYC0E7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3QAfYC0E7 .inner-container {
    width: 100% !important;
  }
}
.cid-v798y0rlQj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #15ece0;
}
.cid-v798y0rlQj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v798y0rlQj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v798y0rlQj .row {
  justify-content: center;
}
.cid-v798y0rlQj .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v798y0rlQj .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v798y0rlQj .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v798y0rlQj .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v798y0rlQj .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v798y0rlQj .mbr-text_1,
.cid-v798y0rlQj .mbr-text_2,
.cid-v798y0rlQj .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v798y0rlQj .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v798y0rlQj .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v798y0rlQj .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v798y0rlQj .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v798y0rlQj .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v798y0rlQj .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v798y0rlQj .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v798y0rlQj .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v798y0rlQj .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v798y0rlQj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v798y0rlQj .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v798y0rlQj .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v798y0rlQj .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v798zaRe3A {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #15ece0;
}
.cid-v798zaRe3A .mbr-fallback-image.disabled {
  display: none;
}
.cid-v798zaRe3A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v798zaRe3A .row {
  justify-content: center;
}
.cid-v798zaRe3A .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v798zaRe3A .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v798zaRe3A .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v798zaRe3A .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v798zaRe3A .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v798zaRe3A .mbr-text_1,
.cid-v798zaRe3A .mbr-text_2,
.cid-v798zaRe3A .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v798zaRe3A .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v798zaRe3A .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v798zaRe3A .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v798zaRe3A .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v798zaRe3A .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v798zaRe3A .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v798zaRe3A .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v798zaRe3A .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v798zaRe3A .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v798zaRe3A .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v798zaRe3A .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v798zaRe3A .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v798zaRe3A .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v798C1gwLX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v798C1gwLX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v798C1gwLX .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v798C1gwLX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v798C1gwLX .inner-container {
    width: 100% !important;
  }
}
.cid-v798DtbR4J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v798DtbR4J .mbr-section-subtitle {
  color: #767676;
}
.cid-v798DtbR4J .container-table {
  margin: 0 auto;
}
.cid-v798DtbR4J .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v798DtbR4J .dataTables_wrapper {
  display: block;
}
.cid-v798DtbR4J .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v798DtbR4J .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v798DtbR4J table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v798DtbR4J table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v798DtbR4J table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v798DtbR4J table td {
  border-top: 1px solid #232323;
}
.cid-v798DtbR4J table.table {
  background: #15ece0;
}
.cid-v798DtbR4J .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v798DtbR4J .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v798DtbR4J .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v798DtbR4J .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v798DtbR4J .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v798DtbR4J .dataTables_filter {
    text-align: center;
  }
  .cid-v798DtbR4J .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v798DtbR4J .mbr-section-title {
  color: #232323;
}
.cid-v798DtbR4J .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v798DtbR4J .body-item {
  text-align: center;
}
.cid-s3QAfZDcz5 {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-s3QAfZDcz5 .image-block {
  margin: auto;
}
.cid-s3QAfZDcz5 figcaption {
  position: relative;
}
.cid-s3QAfZDcz5 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-s3QAfZDcz5 .image-block {
    width: 100% !important;
  }
}
.cid-s3QE1rHEmC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s3QE1rHEmC .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3QE1rHEmC .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s3QE1rHEmC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3QE1rHEmC .inner-container {
    width: 100% !important;
  }
}
.cid-skAlCn3rBH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAlDGFiJW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAlDGFiJW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAlDGFiJW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAlDGFiJW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAlDGFiJW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAlDGFiJW .row > .row {
  display: block;
}
.cid-skAlDGFiJW .mbr-gallery-item {
  width: 100%;
}
.cid-skAlDGFiJW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAlDGFiJW .mbr-gallery-item > div {
  position: relative;
}
.cid-skAlDGFiJW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAlDGFiJW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAlDGFiJW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAlDGFiJW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAbuiVbPb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAbGyarab {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAbGyarab .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAbGyarab .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAbGyarab .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAbGyarab .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAbGyarab .row > .row {
  display: block;
}
.cid-skAbGyarab .mbr-gallery-item {
  width: 100%;
}
.cid-skAbGyarab .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAbGyarab .mbr-gallery-item > div {
  position: relative;
}
.cid-skAbGyarab .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAbGyarab .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAbGyarab .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAbGyarab .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAbw0xn6S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAbI44e8j {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAbI44e8j .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAbI44e8j .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAbI44e8j .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAbI44e8j .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAbI44e8j .row > .row {
  display: block;
}
.cid-skAbI44e8j .mbr-gallery-item {
  width: 100%;
}
.cid-skAbI44e8j .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAbI44e8j .mbr-gallery-item > div {
  position: relative;
}
.cid-skAbI44e8j .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAbI44e8j .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAbI44e8j .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAbI44e8j .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAbxZRbsM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAbJTnseF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAbJTnseF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAbJTnseF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAbJTnseF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAbJTnseF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAbJTnseF .row > .row {
  display: block;
}
.cid-skAbJTnseF .mbr-gallery-item {
  width: 100%;
}
.cid-skAbJTnseF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAbJTnseF .mbr-gallery-item > div {
  position: relative;
}
.cid-skAbJTnseF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAbJTnseF .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAbJTnseF .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAbJTnseF .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAbz0LVH2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAbKLOuUM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAbKLOuUM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAbKLOuUM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAbKLOuUM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAbKLOuUM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAbKLOuUM .row > .row {
  display: block;
}
.cid-skAbKLOuUM .mbr-gallery-item {
  width: 100%;
}
.cid-skAbKLOuUM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAbKLOuUM .mbr-gallery-item > div {
  position: relative;
}
.cid-skAbKLOuUM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAbKLOuUM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAbKLOuUM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAbKLOuUM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAbzSD2QM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAbLCCvSc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAbLCCvSc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAbLCCvSc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAbLCCvSc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAbLCCvSc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAbLCCvSc .row > .row {
  display: block;
}
.cid-skAbLCCvSc .mbr-gallery-item {
  width: 100%;
}
.cid-skAbLCCvSc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAbLCCvSc .mbr-gallery-item > div {
  position: relative;
}
.cid-skAbLCCvSc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAbLCCvSc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAbLCCvSc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAbLCCvSc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAbAPDw4K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAbMyjAUl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAbMyjAUl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAbMyjAUl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAbMyjAUl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAbMyjAUl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAbMyjAUl .row > .row {
  display: block;
}
.cid-skAbMyjAUl .mbr-gallery-item {
  width: 100%;
}
.cid-skAbMyjAUl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAbMyjAUl .mbr-gallery-item > div {
  position: relative;
}
.cid-skAbMyjAUl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAbMyjAUl .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAbMyjAUl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAbMyjAUl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAbC6BRrl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAbNAiEcx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAbNAiEcx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAbNAiEcx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAbNAiEcx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAbNAiEcx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAbNAiEcx .row > .row {
  display: block;
}
.cid-skAbNAiEcx .mbr-gallery-item {
  width: 100%;
}
.cid-skAbNAiEcx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAbNAiEcx .mbr-gallery-item > div {
  position: relative;
}
.cid-skAbNAiEcx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAbNAiEcx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAbNAiEcx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAbNAiEcx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAnMM3Jbv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAocPRJcJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAocPRJcJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAocPRJcJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAocPRJcJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAocPRJcJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAocPRJcJ .row > .row {
  display: block;
}
.cid-skAocPRJcJ .mbr-gallery-item {
  width: 100%;
}
.cid-skAocPRJcJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAocPRJcJ .mbr-gallery-item > div {
  position: relative;
}
.cid-skAocPRJcJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAocPRJcJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAocPRJcJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAocPRJcJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAbDlCeOr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAbOxokfU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAbOxokfU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAbOxokfU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAbOxokfU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAbOxokfU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAbOxokfU .row > .row {
  display: block;
}
.cid-skAbOxokfU .mbr-gallery-item {
  width: 100%;
}
.cid-skAbOxokfU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAbOxokfU .mbr-gallery-item > div {
  position: relative;
}
.cid-skAbOxokfU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAbOxokfU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAbOxokfU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAbOxokfU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAbEJ9CCK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAbPn5NXR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAbPn5NXR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAbPn5NXR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAbPn5NXR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAbPn5NXR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAbPn5NXR .row > .row {
  display: block;
}
.cid-skAbPn5NXR .mbr-gallery-item {
  width: 100%;
}
.cid-skAbPn5NXR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAbPn5NXR .mbr-gallery-item > div {
  position: relative;
}
.cid-skAbPn5NXR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAbPn5NXR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAbPn5NXR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAbPn5NXR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3QAg1dqrb {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #15ece0;
}
.cid-s3QAg1dqrb .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3QAg1dqrb div.b {
  padding-top: 2rem;
}
.cid-s3QAg1dqrb H5 {
  color: #232323;
}
.cid-s3QFqWMbvf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s3QFqWMbvf .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3QFqWMbvf .section-text {
  padding: 2rem 0;
}
.cid-s3QFqWMbvf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3QFqWMbvf .inner-container {
    width: 100% !important;
  }
}
.cid-v78yiXI1hO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #15ece0;
}
.cid-v78yiXI1hO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78yiXI1hO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78yiXI1hO .row {
  justify-content: center;
}
.cid-v78yiXI1hO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78yiXI1hO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78yiXI1hO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78yiXI1hO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78yiXI1hO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78yiXI1hO .mbr-text_1,
.cid-v78yiXI1hO .mbr-text_2,
.cid-v78yiXI1hO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78yiXI1hO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78yiXI1hO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78yiXI1hO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78yiXI1hO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78yiXI1hO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78yiXI1hO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78yiXI1hO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78yiXI1hO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78yiXI1hO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78yiXI1hO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78yiXI1hO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78yiXI1hO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78yiXI1hO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78xsibar0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #15ece0;
}
.cid-v78xsibar0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78xsibar0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78xsibar0 .row {
  justify-content: center;
}
.cid-v78xsibar0 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78xsibar0 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78xsibar0 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78xsibar0 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78xsibar0 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78xsibar0 .mbr-text_1,
.cid-v78xsibar0 .mbr-text_2,
.cid-v78xsibar0 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78xsibar0 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78xsibar0 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78xsibar0 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78xsibar0 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78xsibar0 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78xsibar0 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78xsibar0 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78xsibar0 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78xsibar0 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78xsibar0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78xsibar0 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78xsibar0 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78xsibar0 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78xvCeCEm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78xvCeCEm .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v78xvCeCEm .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v78xvCeCEm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v78xvCeCEm .inner-container {
    width: 100% !important;
  }
}
.cid-uybblBNNFU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uybblBNNFU .mbr-section-subtitle {
  color: #767676;
}
.cid-uybblBNNFU .container-table {
  margin: 0 auto;
}
.cid-uybblBNNFU .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybblBNNFU .dataTables_wrapper {
  display: block;
}
.cid-uybblBNNFU .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybblBNNFU .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybblBNNFU table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybblBNNFU table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybblBNNFU table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybblBNNFU table td {
  border-top: 1px solid #232323;
}
.cid-uybblBNNFU table.table {
  background: #15ece0;
}
.cid-uybblBNNFU .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybblBNNFU .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybblBNNFU .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybblBNNFU .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybblBNNFU .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybblBNNFU .dataTables_filter {
    text-align: center;
  }
  .cid-uybblBNNFU .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybblBNNFU .mbr-section-title {
  color: #232323;
}
.cid-uybblBNNFU .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-uybblBNNFU .body-item {
  text-align: center;
}
.cid-s3QFqYHfsN {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-s3QFqYHfsN .image-block {
  margin: auto;
}
.cid-s3QFqYHfsN figcaption {
  position: relative;
}
.cid-s3QFqYHfsN figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-s3QFqYHfsN .image-block {
    width: 100% !important;
  }
}
.cid-s3QFqZ1bad {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s3QFqZ1bad .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3QFqZ1bad .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s3QFqZ1bad .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3QFqZ1bad .inner-container {
    width: 100% !important;
  }
}
.cid-skApCg0l0K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skApSqwg75 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skApSqwg75 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skApSqwg75 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skApSqwg75 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skApSqwg75 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skApSqwg75 .row > .row {
  display: block;
}
.cid-skApSqwg75 .mbr-gallery-item {
  width: 100%;
}
.cid-skApSqwg75 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skApSqwg75 .mbr-gallery-item > div {
  position: relative;
}
.cid-skApSqwg75 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skApSqwg75 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skApSqwg75 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skApSqwg75 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skApCXKRk1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skApThKZ9W {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skApThKZ9W .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skApThKZ9W .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skApThKZ9W .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skApThKZ9W .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skApThKZ9W .row > .row {
  display: block;
}
.cid-skApThKZ9W .mbr-gallery-item {
  width: 100%;
}
.cid-skApThKZ9W .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skApThKZ9W .mbr-gallery-item > div {
  position: relative;
}
.cid-skApThKZ9W .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skApThKZ9W .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skApThKZ9W .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skApThKZ9W .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skApIh3K61 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skApTWPPji {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skApTWPPji .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skApTWPPji .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skApTWPPji .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skApTWPPji .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skApTWPPji .row > .row {
  display: block;
}
.cid-skApTWPPji .mbr-gallery-item {
  width: 100%;
}
.cid-skApTWPPji .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skApTWPPji .mbr-gallery-item > div {
  position: relative;
}
.cid-skApTWPPji .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skApTWPPji .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skApTWPPji .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skApTWPPji .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skApHJnaY5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAr7oU9Sp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAr7oU9Sp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAr7oU9Sp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAr7oU9Sp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAr7oU9Sp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAr7oU9Sp .row > .row {
  display: block;
}
.cid-skAr7oU9Sp .mbr-gallery-item {
  width: 100%;
}
.cid-skAr7oU9Sp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAr7oU9Sp .mbr-gallery-item > div {
  position: relative;
}
.cid-skAr7oU9Sp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAr7oU9Sp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAr7oU9Sp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAr7oU9Sp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skApEhivXD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAr83yPOX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAr83yPOX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAr83yPOX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAr83yPOX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAr83yPOX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAr83yPOX .row > .row {
  display: block;
}
.cid-skAr83yPOX .mbr-gallery-item {
  width: 100%;
}
.cid-skAr83yPOX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAr83yPOX .mbr-gallery-item > div {
  position: relative;
}
.cid-skAr83yPOX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAr83yPOX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAr83yPOX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAr83yPOX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skApFxCq7c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAr8GOsBP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAr8GOsBP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAr8GOsBP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAr8GOsBP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAr8GOsBP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAr8GOsBP .row > .row {
  display: block;
}
.cid-skAr8GOsBP .mbr-gallery-item {
  width: 100%;
}
.cid-skAr8GOsBP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAr8GOsBP .mbr-gallery-item > div {
  position: relative;
}
.cid-skAr8GOsBP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAr8GOsBP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAr8GOsBP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAr8GOsBP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skApHePMas {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAr9k9z5l {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAr9k9z5l .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAr9k9z5l .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAr9k9z5l .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAr9k9z5l .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAr9k9z5l .row > .row {
  display: block;
}
.cid-skAr9k9z5l .mbr-gallery-item {
  width: 100%;
}
.cid-skAr9k9z5l .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAr9k9z5l .mbr-gallery-item > div {
  position: relative;
}
.cid-skAr9k9z5l .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAr9k9z5l .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAr9k9z5l .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAr9k9z5l .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skApGIfAAG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAr9YLgUo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAr9YLgUo .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAr9YLgUo .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAr9YLgUo .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAr9YLgUo .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAr9YLgUo .row > .row {
  display: block;
}
.cid-skAr9YLgUo .mbr-gallery-item {
  width: 100%;
}
.cid-skAr9YLgUo .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAr9YLgUo .mbr-gallery-item > div {
  position: relative;
}
.cid-skAr9YLgUo .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAr9YLgUo .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAr9YLgUo .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAr9YLgUo .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skApG5NFxO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skArawOHmf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skArawOHmf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skArawOHmf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skArawOHmf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skArawOHmf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skArawOHmf .row > .row {
  display: block;
}
.cid-skArawOHmf .mbr-gallery-item {
  width: 100%;
}
.cid-skArawOHmf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skArawOHmf .mbr-gallery-item > div {
  position: relative;
}
.cid-skArawOHmf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skArawOHmf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skArawOHmf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skArawOHmf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skApERBufm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skArb6WSWf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skArb6WSWf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skArb6WSWf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skArb6WSWf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skArb6WSWf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skArb6WSWf .row > .row {
  display: block;
}
.cid-skArb6WSWf .mbr-gallery-item {
  width: 100%;
}
.cid-skArb6WSWf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skArb6WSWf .mbr-gallery-item > div {
  position: relative;
}
.cid-skArb6WSWf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skArb6WSWf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skArb6WSWf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skArb6WSWf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skApDFVaWv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skArbEc4MX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skArbEc4MX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skArbEc4MX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skArbEc4MX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skArbEc4MX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skArbEc4MX .row > .row {
  display: block;
}
.cid-skArbEc4MX .mbr-gallery-item {
  width: 100%;
}
.cid-skArbEc4MX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skArbEc4MX .mbr-gallery-item > div {
  position: relative;
}
.cid-skArbEc4MX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skArbEc4MX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skArbEc4MX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skArbEc4MX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skApBhWs1Q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skArchfAyT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skArchfAyT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skArchfAyT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skArchfAyT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skArchfAyT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skArchfAyT .row > .row {
  display: block;
}
.cid-skArchfAyT .mbr-gallery-item {
  width: 100%;
}
.cid-skArchfAyT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skArchfAyT .mbr-gallery-item > div {
  position: relative;
}
.cid-skArchfAyT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skArchfAyT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skArchfAyT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skArchfAyT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3QFr4KMTN {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #15ece0;
}
.cid-s3QFr4KMTN .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3QFr4KMTN div.b {
  padding-top: 2rem;
}
.cid-s3QFr4KMTN H5 {
  color: #232323;
}
.cid-s3QKgmI9G3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s3QKgmI9G3 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3QKgmI9G3 .section-text {
  padding: 2rem 0;
}
.cid-s3QKgmI9G3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3QKgmI9G3 .inner-container {
    width: 100% !important;
  }
}
.cid-v78zFN9VQb {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #15ece0;
}
.cid-v78zFN9VQb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78zFN9VQb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78zFN9VQb .row {
  justify-content: center;
}
.cid-v78zFN9VQb .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78zFN9VQb .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78zFN9VQb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78zFN9VQb .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78zFN9VQb .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78zFN9VQb .mbr-text_1,
.cid-v78zFN9VQb .mbr-text_2,
.cid-v78zFN9VQb .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78zFN9VQb .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78zFN9VQb .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78zFN9VQb .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78zFN9VQb .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78zFN9VQb .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78zFN9VQb .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78zFN9VQb .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78zFN9VQb .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78zFN9VQb .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78zFN9VQb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78zFN9VQb .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78zFN9VQb .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78zFN9VQb .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78zGJS5Yf {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #15ece0;
}
.cid-v78zGJS5Yf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78zGJS5Yf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78zGJS5Yf .row {
  justify-content: center;
}
.cid-v78zGJS5Yf .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78zGJS5Yf .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78zGJS5Yf .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78zGJS5Yf .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78zGJS5Yf .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78zGJS5Yf .mbr-text_1,
.cid-v78zGJS5Yf .mbr-text_2,
.cid-v78zGJS5Yf .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78zGJS5Yf .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78zGJS5Yf .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78zGJS5Yf .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78zGJS5Yf .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78zGJS5Yf .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78zGJS5Yf .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78zGJS5Yf .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78zGJS5Yf .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78zGJS5Yf .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78zGJS5Yf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78zGJS5Yf .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78zGJS5Yf .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78zGJS5Yf .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78zHLPs3r {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78zHLPs3r .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v78zHLPs3r .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v78zHLPs3r .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v78zHLPs3r .inner-container {
    width: 100% !important;
  }
}
.cid-v78zJypCkS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78zJypCkS .mbr-section-subtitle {
  color: #767676;
}
.cid-v78zJypCkS .container-table {
  margin: 0 auto;
}
.cid-v78zJypCkS .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v78zJypCkS .dataTables_wrapper {
  display: block;
}
.cid-v78zJypCkS .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v78zJypCkS .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v78zJypCkS table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v78zJypCkS table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v78zJypCkS table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v78zJypCkS table td {
  border-top: 1px solid #232323;
}
.cid-v78zJypCkS table.table {
  background: #15ece0;
}
.cid-v78zJypCkS .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v78zJypCkS .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v78zJypCkS .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v78zJypCkS .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v78zJypCkS .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v78zJypCkS .dataTables_filter {
    text-align: center;
  }
  .cid-v78zJypCkS .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v78zJypCkS .mbr-section-title {
  color: #232323;
}
.cid-v78zJypCkS .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v78zJypCkS .body-item {
  text-align: center;
}
.cid-s3QKgoExJu {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-s3QKgoExJu .image-block {
  margin: auto;
}
.cid-s3QKgoExJu figcaption {
  position: relative;
}
.cid-s3QKgoExJu figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-s3QKgoExJu .image-block {
    width: 100% !important;
  }
}
.cid-s3QKgp0gku {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s3QKgp0gku .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3QKgp0gku .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s3QKgp0gku .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3QKgp0gku .inner-container {
    width: 100% !important;
  }
}
.cid-skAEU1puxe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAGnp9fjc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAGnp9fjc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAGnp9fjc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAGnp9fjc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAGnp9fjc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAGnp9fjc .row > .row {
  display: block;
}
.cid-skAGnp9fjc .mbr-gallery-item {
  width: 100%;
}
.cid-skAGnp9fjc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAGnp9fjc .mbr-gallery-item > div {
  position: relative;
}
.cid-skAGnp9fjc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAGnp9fjc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAGnp9fjc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAGnp9fjc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAEYyaD1C {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAGofDUkO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAGofDUkO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAGofDUkO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAGofDUkO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAGofDUkO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAGofDUkO .row > .row {
  display: block;
}
.cid-skAGofDUkO .mbr-gallery-item {
  width: 100%;
}
.cid-skAGofDUkO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAGofDUkO .mbr-gallery-item > div {
  position: relative;
}
.cid-skAGofDUkO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAGofDUkO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAGofDUkO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAGofDUkO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAEWNB5Tq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAGoY2KgM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAGoY2KgM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAGoY2KgM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAGoY2KgM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAGoY2KgM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAGoY2KgM .row > .row {
  display: block;
}
.cid-skAGoY2KgM .mbr-gallery-item {
  width: 100%;
}
.cid-skAGoY2KgM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAGoY2KgM .mbr-gallery-item > div {
  position: relative;
}
.cid-skAGoY2KgM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAGoY2KgM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAGoY2KgM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAGoY2KgM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAEXXJyw9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAGpBcXaU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAGpBcXaU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAGpBcXaU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAGpBcXaU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAGpBcXaU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAGpBcXaU .row > .row {
  display: block;
}
.cid-skAGpBcXaU .mbr-gallery-item {
  width: 100%;
}
.cid-skAGpBcXaU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAGpBcXaU .mbr-gallery-item > div {
  position: relative;
}
.cid-skAGpBcXaU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAGpBcXaU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAGpBcXaU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAGpBcXaU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAEXr1Ycu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAGqf8BBS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAGqf8BBS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAGqf8BBS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAGqf8BBS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAGqf8BBS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAGqf8BBS .row > .row {
  display: block;
}
.cid-skAGqf8BBS .mbr-gallery-item {
  width: 100%;
}
.cid-skAGqf8BBS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAGqf8BBS .mbr-gallery-item > div {
  position: relative;
}
.cid-skAGqf8BBS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAGqf8BBS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAGqf8BBS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAGqf8BBS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAEWg973N {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAGqQKJ8U {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAGqQKJ8U .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAGqQKJ8U .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAGqQKJ8U .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAGqQKJ8U .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAGqQKJ8U .row > .row {
  display: block;
}
.cid-skAGqQKJ8U .mbr-gallery-item {
  width: 100%;
}
.cid-skAGqQKJ8U .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAGqQKJ8U .mbr-gallery-item > div {
  position: relative;
}
.cid-skAGqQKJ8U .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAGqQKJ8U .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAGqQKJ8U .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAGqQKJ8U .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAEVIejBb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAGrCzPSJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAGrCzPSJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAGrCzPSJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAGrCzPSJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAGrCzPSJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAGrCzPSJ .row > .row {
  display: block;
}
.cid-skAGrCzPSJ .mbr-gallery-item {
  width: 100%;
}
.cid-skAGrCzPSJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAGrCzPSJ .mbr-gallery-item > div {
  position: relative;
}
.cid-skAGrCzPSJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAGrCzPSJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAGrCzPSJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAGrCzPSJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAEVawiLH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAGsg8Z6r {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAGsg8Z6r .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAGsg8Z6r .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAGsg8Z6r .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAGsg8Z6r .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAGsg8Z6r .row > .row {
  display: block;
}
.cid-skAGsg8Z6r .mbr-gallery-item {
  width: 100%;
}
.cid-skAGsg8Z6r .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAGsg8Z6r .mbr-gallery-item > div {
  position: relative;
}
.cid-skAGsg8Z6r .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAGsg8Z6r .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAGsg8Z6r .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAGsg8Z6r .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAEUCxl5x {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAGsQXxUw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAGsQXxUw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAGsQXxUw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAGsQXxUw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAGsQXxUw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAGsQXxUw .row > .row {
  display: block;
}
.cid-skAGsQXxUw .mbr-gallery-item {
  width: 100%;
}
.cid-skAGsQXxUw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAGsQXxUw .mbr-gallery-item > div {
  position: relative;
}
.cid-skAGsQXxUw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAGsQXxUw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAGsQXxUw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAGsQXxUw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAETmqxaK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAGu5Gl1g {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAGu5Gl1g .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAGu5Gl1g .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAGu5Gl1g .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAGu5Gl1g .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAGu5Gl1g .row > .row {
  display: block;
}
.cid-skAGu5Gl1g .mbr-gallery-item {
  width: 100%;
}
.cid-skAGu5Gl1g .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAGu5Gl1g .mbr-gallery-item > div {
  position: relative;
}
.cid-skAGu5Gl1g .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAGu5Gl1g .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAGu5Gl1g .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAGu5Gl1g .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAERPV1r8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAGuKElp5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAGuKElp5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAGuKElp5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAGuKElp5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAGuKElp5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAGuKElp5 .row > .row {
  display: block;
}
.cid-skAGuKElp5 .mbr-gallery-item {
  width: 100%;
}
.cid-skAGuKElp5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAGuKElp5 .mbr-gallery-item > div {
  position: relative;
}
.cid-skAGuKElp5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAGuKElp5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAGuKElp5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAGuKElp5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skAESHc65D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skAGvjoPVO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skAGvjoPVO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skAGvjoPVO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skAGvjoPVO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skAGvjoPVO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skAGvjoPVO .row > .row {
  display: block;
}
.cid-skAGvjoPVO .mbr-gallery-item {
  width: 100%;
}
.cid-skAGvjoPVO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skAGvjoPVO .mbr-gallery-item > div {
  position: relative;
}
.cid-skAGvjoPVO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skAGvjoPVO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skAGvjoPVO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skAGvjoPVO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3QKgvYcqP {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #15ece0;
}
.cid-s3QKgvYcqP .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3QKgvYcqP div.b {
  padding-top: 2rem;
}
.cid-s3QKgvYcqP H5 {
  color: #232323;
}
.cid-s3QN0qYJkt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s3QN0qYJkt .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3QN0qYJkt .section-text {
  padding: 2rem 0;
}
.cid-s3QN0qYJkt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3QN0qYJkt .inner-container {
    width: 100% !important;
  }
}
.cid-v78AGi2mCO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #15ece0;
}
.cid-v78AGi2mCO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78AGi2mCO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78AGi2mCO .row {
  justify-content: center;
}
.cid-v78AGi2mCO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78AGi2mCO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78AGi2mCO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78AGi2mCO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78AGi2mCO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78AGi2mCO .mbr-text_1,
.cid-v78AGi2mCO .mbr-text_2,
.cid-v78AGi2mCO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78AGi2mCO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78AGi2mCO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78AGi2mCO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78AGi2mCO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78AGi2mCO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78AGi2mCO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78AGi2mCO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78AGi2mCO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78AGi2mCO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78AGi2mCO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78AGi2mCO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78AGi2mCO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78AGi2mCO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78AHgDlGp {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #15ece0;
}
.cid-v78AHgDlGp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78AHgDlGp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78AHgDlGp .row {
  justify-content: center;
}
.cid-v78AHgDlGp .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78AHgDlGp .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78AHgDlGp .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78AHgDlGp .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78AHgDlGp .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78AHgDlGp .mbr-text_1,
.cid-v78AHgDlGp .mbr-text_2,
.cid-v78AHgDlGp .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78AHgDlGp .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78AHgDlGp .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78AHgDlGp .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78AHgDlGp .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78AHgDlGp .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78AHgDlGp .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78AHgDlGp .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78AHgDlGp .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78AHgDlGp .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78AHgDlGp .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78AHgDlGp .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78AHgDlGp .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78AHgDlGp .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78AIMvAJt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78AIMvAJt .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v78AIMvAJt .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v78AIMvAJt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v78AIMvAJt .inner-container {
    width: 100% !important;
  }
}
.cid-v78AKiCAjU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78AKiCAjU .mbr-section-subtitle {
  color: #767676;
}
.cid-v78AKiCAjU .container-table {
  margin: 0 auto;
}
.cid-v78AKiCAjU .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v78AKiCAjU .dataTables_wrapper {
  display: block;
}
.cid-v78AKiCAjU .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v78AKiCAjU .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v78AKiCAjU table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v78AKiCAjU table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v78AKiCAjU table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v78AKiCAjU table td {
  border-top: 1px solid #232323;
}
.cid-v78AKiCAjU table.table {
  background: #15ece0;
}
.cid-v78AKiCAjU .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v78AKiCAjU .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v78AKiCAjU .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v78AKiCAjU .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v78AKiCAjU .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v78AKiCAjU .dataTables_filter {
    text-align: center;
  }
  .cid-v78AKiCAjU .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v78AKiCAjU .mbr-section-title {
  color: #232323;
}
.cid-v78AKiCAjU .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v78AKiCAjU .body-item {
  text-align: center;
}
.cid-s3QN0t5M5Y {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-s3QN0t5M5Y .image-block {
  margin: auto;
}
.cid-s3QN0t5M5Y figcaption {
  position: relative;
}
.cid-s3QN0t5M5Y figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-s3QN0t5M5Y .image-block {
    width: 100% !important;
  }
}
.cid-s3QN0tpWl7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s3QN0tpWl7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3QN0tpWl7 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s3QN0tpWl7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3QN0tpWl7 .inner-container {
    width: 100% !important;
  }
}
.cid-skJUwcFzfr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJUEPx9kO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJUEPx9kO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJUEPx9kO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJUEPx9kO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJUEPx9kO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJUEPx9kO .row > .row {
  display: block;
}
.cid-skJUEPx9kO .mbr-gallery-item {
  width: 100%;
}
.cid-skJUEPx9kO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJUEPx9kO .mbr-gallery-item > div {
  position: relative;
}
.cid-skJUEPx9kO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJUEPx9kO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJUEPx9kO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJUEPx9kO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJUAEV433 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJUFCeNCR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJUFCeNCR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJUFCeNCR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJUFCeNCR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJUFCeNCR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJUFCeNCR .row > .row {
  display: block;
}
.cid-skJUFCeNCR .mbr-gallery-item {
  width: 100%;
}
.cid-skJUFCeNCR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJUFCeNCR .mbr-gallery-item > div {
  position: relative;
}
.cid-skJUFCeNCR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJUFCeNCR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJUFCeNCR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJUFCeNCR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJUzfSmk1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJUGc0RtB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJUGc0RtB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJUGc0RtB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJUGc0RtB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJUGc0RtB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJUGc0RtB .row > .row {
  display: block;
}
.cid-skJUGc0RtB .mbr-gallery-item {
  width: 100%;
}
.cid-skJUGc0RtB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJUGc0RtB .mbr-gallery-item > div {
  position: relative;
}
.cid-skJUGc0RtB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJUGc0RtB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJUGc0RtB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJUGc0RtB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJUE8rmn4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJUGLeR7D {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJUGLeR7D .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJUGLeR7D .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJUGLeR7D .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJUGLeR7D .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJUGLeR7D .row > .row {
  display: block;
}
.cid-skJUGLeR7D .mbr-gallery-item {
  width: 100%;
}
.cid-skJUGLeR7D .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJUGLeR7D .mbr-gallery-item > div {
  position: relative;
}
.cid-skJUGLeR7D .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJUGLeR7D .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJUGLeR7D .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJUGLeR7D .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJUDvuP8d {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJUHs63nI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJUHs63nI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJUHs63nI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJUHs63nI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJUHs63nI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJUHs63nI .row > .row {
  display: block;
}
.cid-skJUHs63nI .mbr-gallery-item {
  width: 100%;
}
.cid-skJUHs63nI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJUHs63nI .mbr-gallery-item > div {
  position: relative;
}
.cid-skJUHs63nI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJUHs63nI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJUHs63nI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJUHs63nI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJUCUUvb2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJUIgEdmG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJUIgEdmG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJUIgEdmG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJUIgEdmG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJUIgEdmG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJUIgEdmG .row > .row {
  display: block;
}
.cid-skJUIgEdmG .mbr-gallery-item {
  width: 100%;
}
.cid-skJUIgEdmG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJUIgEdmG .mbr-gallery-item > div {
  position: relative;
}
.cid-skJUIgEdmG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJUIgEdmG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJUIgEdmG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJUIgEdmG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJUCjYvRh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJUJ4kXJS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJUJ4kXJS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJUJ4kXJS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJUJ4kXJS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJUJ4kXJS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJUJ4kXJS .row > .row {
  display: block;
}
.cid-skJUJ4kXJS .mbr-gallery-item {
  width: 100%;
}
.cid-skJUJ4kXJS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJUJ4kXJS .mbr-gallery-item > div {
  position: relative;
}
.cid-skJUJ4kXJS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJUJ4kXJS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJUJ4kXJS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJUJ4kXJS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJUBFTif5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJUJQUcQy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJUJQUcQy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJUJQUcQy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJUJQUcQy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJUJQUcQy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJUJQUcQy .row > .row {
  display: block;
}
.cid-skJUJQUcQy .mbr-gallery-item {
  width: 100%;
}
.cid-skJUJQUcQy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJUJQUcQy .mbr-gallery-item > div {
  position: relative;
}
.cid-skJUJQUcQy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJUJQUcQy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJUJQUcQy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJUJQUcQy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJUzZDCgM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJUKAwt2o {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJUKAwt2o .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJUKAwt2o .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJUKAwt2o .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJUKAwt2o .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJUKAwt2o .row > .row {
  display: block;
}
.cid-skJUKAwt2o .mbr-gallery-item {
  width: 100%;
}
.cid-skJUKAwt2o .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJUKAwt2o .mbr-gallery-item > div {
  position: relative;
}
.cid-skJUKAwt2o .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJUKAwt2o .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJUKAwt2o .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJUKAwt2o .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJUxSwTwp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJULyW7jx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJULyW7jx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJULyW7jx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJULyW7jx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJULyW7jx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJULyW7jx .row > .row {
  display: block;
}
.cid-skJULyW7jx .mbr-gallery-item {
  width: 100%;
}
.cid-skJULyW7jx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJULyW7jx .mbr-gallery-item > div {
  position: relative;
}
.cid-skJULyW7jx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJULyW7jx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJULyW7jx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJULyW7jx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJUyzCk4p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJUMtf2oD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJUMtf2oD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJUMtf2oD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJUMtf2oD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJUMtf2oD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJUMtf2oD .row > .row {
  display: block;
}
.cid-skJUMtf2oD .mbr-gallery-item {
  width: 100%;
}
.cid-skJUMtf2oD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJUMtf2oD .mbr-gallery-item > div {
  position: relative;
}
.cid-skJUMtf2oD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJUMtf2oD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJUMtf2oD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJUMtf2oD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJUx0pqlB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJUNxz6Kt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJUNxz6Kt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJUNxz6Kt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJUNxz6Kt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJUNxz6Kt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJUNxz6Kt .row > .row {
  display: block;
}
.cid-skJUNxz6Kt .mbr-gallery-item {
  width: 100%;
}
.cid-skJUNxz6Kt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJUNxz6Kt .mbr-gallery-item > div {
  position: relative;
}
.cid-skJUNxz6Kt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJUNxz6Kt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJUNxz6Kt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJUNxz6Kt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3QN0zZnEN {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #15ece0;
}
.cid-s3QN0zZnEN .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3QN0zZnEN div.b {
  padding-top: 2rem;
}
.cid-s3QN0zZnEN H5 {
  color: #232323;
}
.cid-s3QNWzmEcr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s3QNWzmEcr .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3QNWzmEcr .section-text {
  padding: 2rem 0;
}
.cid-s3QNWzmEcr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3QNWzmEcr .inner-container {
    width: 100% !important;
  }
}
.cid-v78B4s9piw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #15ece0;
}
.cid-v78B4s9piw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78B4s9piw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78B4s9piw .row {
  justify-content: center;
}
.cid-v78B4s9piw .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78B4s9piw .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78B4s9piw .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78B4s9piw .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78B4s9piw .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78B4s9piw .mbr-text_1,
.cid-v78B4s9piw .mbr-text_2,
.cid-v78B4s9piw .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78B4s9piw .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78B4s9piw .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78B4s9piw .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78B4s9piw .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78B4s9piw .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78B4s9piw .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78B4s9piw .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78B4s9piw .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78B4s9piw .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78B4s9piw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78B4s9piw .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78B4s9piw .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78B4s9piw .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78B5pha0d {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #15ece0;
}
.cid-v78B5pha0d .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78B5pha0d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78B5pha0d .row {
  justify-content: center;
}
.cid-v78B5pha0d .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78B5pha0d .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78B5pha0d .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78B5pha0d .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78B5pha0d .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78B5pha0d .mbr-text_1,
.cid-v78B5pha0d .mbr-text_2,
.cid-v78B5pha0d .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78B5pha0d .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78B5pha0d .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78B5pha0d .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78B5pha0d .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78B5pha0d .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78B5pha0d .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78B5pha0d .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78B5pha0d .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78B5pha0d .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78B5pha0d .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78B5pha0d .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78B5pha0d .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78B5pha0d .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78B6TLzrG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78B6TLzrG .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v78B6TLzrG .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v78B6TLzrG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v78B6TLzrG .inner-container {
    width: 100% !important;
  }
}
.cid-v78B83jOBz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78B83jOBz .mbr-section-subtitle {
  color: #767676;
}
.cid-v78B83jOBz .container-table {
  margin: 0 auto;
}
.cid-v78B83jOBz .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v78B83jOBz .dataTables_wrapper {
  display: block;
}
.cid-v78B83jOBz .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v78B83jOBz .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v78B83jOBz table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v78B83jOBz table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v78B83jOBz table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v78B83jOBz table td {
  border-top: 1px solid #232323;
}
.cid-v78B83jOBz table.table {
  background: #15ece0;
}
.cid-v78B83jOBz .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v78B83jOBz .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v78B83jOBz .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v78B83jOBz .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v78B83jOBz .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v78B83jOBz .dataTables_filter {
    text-align: center;
  }
  .cid-v78B83jOBz .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v78B83jOBz .mbr-section-title {
  color: #232323;
}
.cid-v78B83jOBz .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v78B83jOBz .body-item {
  text-align: center;
}
.cid-s3QNWBiboq {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-s3QNWBiboq .image-block {
  margin: auto;
}
.cid-s3QNWBiboq figcaption {
  position: relative;
}
.cid-s3QNWBiboq figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-s3QNWBiboq .image-block {
    width: 100% !important;
  }
}
.cid-s3QNWBD5xT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s3QNWBD5xT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3QNWBD5xT .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s3QNWBD5xT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3QNWBD5xT .inner-container {
    width: 100% !important;
  }
}
.cid-skJYQ9Egam {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJYXyHr5E {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJYXyHr5E .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJYXyHr5E .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJYXyHr5E .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJYXyHr5E .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJYXyHr5E .row > .row {
  display: block;
}
.cid-skJYXyHr5E .mbr-gallery-item {
  width: 100%;
}
.cid-skJYXyHr5E .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJYXyHr5E .mbr-gallery-item > div {
  position: relative;
}
.cid-skJYXyHr5E .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJYXyHr5E .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJYXyHr5E .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJYXyHr5E .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJYQR0qLR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJYYlBHPj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJYYlBHPj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJYYlBHPj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJYYlBHPj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJYYlBHPj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJYYlBHPj .row > .row {
  display: block;
}
.cid-skJYYlBHPj .mbr-gallery-item {
  width: 100%;
}
.cid-skJYYlBHPj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJYYlBHPj .mbr-gallery-item > div {
  position: relative;
}
.cid-skJYYlBHPj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJYYlBHPj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJYYlBHPj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJYYlBHPj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJYWqVbNf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJYYTyZry {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJYYTyZry .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJYYTyZry .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJYYTyZry .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJYYTyZry .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJYYTyZry .row > .row {
  display: block;
}
.cid-skJYYTyZry .mbr-gallery-item {
  width: 100%;
}
.cid-skJYYTyZry .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJYYTyZry .mbr-gallery-item > div {
  position: relative;
}
.cid-skJYYTyZry .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJYYTyZry .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJYYTyZry .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJYYTyZry .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJYUFPl6t {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJYZt3Rfx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJYZt3Rfx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJYZt3Rfx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJYZt3Rfx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJYZt3Rfx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJYZt3Rfx .row > .row {
  display: block;
}
.cid-skJYZt3Rfx .mbr-gallery-item {
  width: 100%;
}
.cid-skJYZt3Rfx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJYZt3Rfx .mbr-gallery-item > div {
  position: relative;
}
.cid-skJYZt3Rfx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJYZt3Rfx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJYZt3Rfx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJYZt3Rfx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJYU4nbxB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJZ04MUPn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJZ04MUPn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJZ04MUPn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJZ04MUPn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJZ04MUPn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJZ04MUPn .row > .row {
  display: block;
}
.cid-skJZ04MUPn .mbr-gallery-item {
  width: 100%;
}
.cid-skJZ04MUPn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJZ04MUPn .mbr-gallery-item > div {
  position: relative;
}
.cid-skJZ04MUPn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJZ04MUPn .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJZ04MUPn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJZ04MUPn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJYVR7hM4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJZ0OlCsH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJZ0OlCsH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJZ0OlCsH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJZ0OlCsH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJZ0OlCsH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJZ0OlCsH .row > .row {
  display: block;
}
.cid-skJZ0OlCsH .mbr-gallery-item {
  width: 100%;
}
.cid-skJZ0OlCsH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJZ0OlCsH .mbr-gallery-item > div {
  position: relative;
}
.cid-skJZ0OlCsH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJZ0OlCsH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJZ0OlCsH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJZ0OlCsH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJYVh0FTc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJZ1uiapW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJZ1uiapW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJZ1uiapW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJZ1uiapW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJZ1uiapW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJZ1uiapW .row > .row {
  display: block;
}
.cid-skJZ1uiapW .mbr-gallery-item {
  width: 100%;
}
.cid-skJZ1uiapW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJZ1uiapW .mbr-gallery-item > div {
  position: relative;
}
.cid-skJZ1uiapW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJZ1uiapW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJZ1uiapW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJZ1uiapW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJYS7DQ4j {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJZ26vABE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJZ26vABE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJZ26vABE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJZ26vABE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJZ26vABE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJZ26vABE .row > .row {
  display: block;
}
.cid-skJZ26vABE .mbr-gallery-item {
  width: 100%;
}
.cid-skJZ26vABE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJZ26vABE .mbr-gallery-item > div {
  position: relative;
}
.cid-skJZ26vABE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJZ26vABE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJZ26vABE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJZ26vABE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJYTpHbdX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJZ2KKPU6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJZ2KKPU6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJZ2KKPU6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJZ2KKPU6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJZ2KKPU6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJZ2KKPU6 .row > .row {
  display: block;
}
.cid-skJZ2KKPU6 .mbr-gallery-item {
  width: 100%;
}
.cid-skJZ2KKPU6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJZ2KKPU6 .mbr-gallery-item > div {
  position: relative;
}
.cid-skJZ2KKPU6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJZ2KKPU6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJZ2KKPU6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJZ2KKPU6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJYSLc88j {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJZ3ri8CI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJZ3ri8CI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJZ3ri8CI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJZ3ri8CI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJZ3ri8CI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJZ3ri8CI .row > .row {
  display: block;
}
.cid-skJZ3ri8CI .mbr-gallery-item {
  width: 100%;
}
.cid-skJZ3ri8CI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJZ3ri8CI .mbr-gallery-item > div {
  position: relative;
}
.cid-skJZ3ri8CI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJZ3ri8CI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJZ3ri8CI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJZ3ri8CI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJYRurxjR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJZ4l400j {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJZ4l400j .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJZ4l400j .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJZ4l400j .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJZ4l400j .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJZ4l400j .row > .row {
  display: block;
}
.cid-skJZ4l400j .mbr-gallery-item {
  width: 100%;
}
.cid-skJZ4l400j .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJZ4l400j .mbr-gallery-item > div {
  position: relative;
}
.cid-skJZ4l400j .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJZ4l400j .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJZ4l400j .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJZ4l400j .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skJYPnKpRe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skJZ55l6vK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skJZ55l6vK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skJZ55l6vK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skJZ55l6vK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skJZ55l6vK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skJZ55l6vK .row > .row {
  display: block;
}
.cid-skJZ55l6vK .mbr-gallery-item {
  width: 100%;
}
.cid-skJZ55l6vK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skJZ55l6vK .mbr-gallery-item > div {
  position: relative;
}
.cid-skJZ55l6vK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skJZ55l6vK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skJZ55l6vK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skJZ55l6vK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3QNWIuEHi {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #15ece0;
}
.cid-s3QNWIuEHi .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3QNWIuEHi div.b {
  padding-top: 2rem;
}
.cid-s3QNWIuEHi H5 {
  color: #232323;
}
.cid-s3QP5RSK8Z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s3QP5RSK8Z .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3QP5RSK8Z .section-text {
  padding: 2rem 0;
}
.cid-s3QP5RSK8Z .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3QP5RSK8Z .inner-container {
    width: 100% !important;
  }
}
.cid-v78By1yEst {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #15ece0;
}
.cid-v78By1yEst .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78By1yEst .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78By1yEst .row {
  justify-content: center;
}
.cid-v78By1yEst .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78By1yEst .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78By1yEst .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78By1yEst .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78By1yEst .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78By1yEst .mbr-text_1,
.cid-v78By1yEst .mbr-text_2,
.cid-v78By1yEst .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78By1yEst .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78By1yEst .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78By1yEst .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78By1yEst .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78By1yEst .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78By1yEst .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78By1yEst .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78By1yEst .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78By1yEst .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78By1yEst .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78By1yEst .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78By1yEst .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78By1yEst .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78Bz9NCTd {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #15ece0;
}
.cid-v78Bz9NCTd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78Bz9NCTd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78Bz9NCTd .row {
  justify-content: center;
}
.cid-v78Bz9NCTd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78Bz9NCTd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78Bz9NCTd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78Bz9NCTd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78Bz9NCTd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78Bz9NCTd .mbr-text_1,
.cid-v78Bz9NCTd .mbr-text_2,
.cid-v78Bz9NCTd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78Bz9NCTd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78Bz9NCTd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78Bz9NCTd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78Bz9NCTd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78Bz9NCTd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78Bz9NCTd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78Bz9NCTd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78Bz9NCTd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78Bz9NCTd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78Bz9NCTd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78Bz9NCTd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78Bz9NCTd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78Bz9NCTd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78BDEVBXs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78BDEVBXs .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v78BDEVBXs .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v78BDEVBXs .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v78BDEVBXs .inner-container {
    width: 100% !important;
  }
}
.cid-uyqaQk7HLD {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uyqaQk7HLD .image-block {
  margin: auto;
}
.cid-uyqaQk7HLD figcaption {
  position: relative;
}
.cid-uyqaQk7HLD figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uyqaQk7HLD .image-block {
    width: 100% !important;
  }
}
.cid-v78BBDsfss {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78BBDsfss .mbr-section-subtitle {
  color: #767676;
}
.cid-v78BBDsfss .container-table {
  margin: 0 auto;
}
.cid-v78BBDsfss .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v78BBDsfss .dataTables_wrapper {
  display: block;
}
.cid-v78BBDsfss .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v78BBDsfss .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v78BBDsfss table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v78BBDsfss table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v78BBDsfss table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v78BBDsfss table td {
  border-top: 1px solid #232323;
}
.cid-v78BBDsfss table.table {
  background: #15ece0;
}
.cid-v78BBDsfss .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v78BBDsfss .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v78BBDsfss .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v78BBDsfss .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v78BBDsfss .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v78BBDsfss .dataTables_filter {
    text-align: center;
  }
  .cid-v78BBDsfss .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v78BBDsfss .mbr-section-title {
  color: #232323;
}
.cid-v78BBDsfss .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v78BBDsfss .body-item {
  text-align: center;
}
.cid-uyqaMirO5X {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uyqaMirO5X .image-block {
  margin: auto;
}
.cid-uyqaMirO5X figcaption {
  position: relative;
}
.cid-uyqaMirO5X figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uyqaMirO5X .image-block {
    width: 100% !important;
  }
}
.cid-uyqaIdXC5e {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uyqaIdXC5e .image-block {
  margin: auto;
}
.cid-uyqaIdXC5e figcaption {
  position: relative;
}
.cid-uyqaIdXC5e figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uyqaIdXC5e .image-block {
    width: 100% !important;
  }
}
.cid-s3QP5TYEBI {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-s3QP5TYEBI .image-block {
  margin: auto;
}
.cid-s3QP5TYEBI figcaption {
  position: relative;
}
.cid-s3QP5TYEBI figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-s3QP5TYEBI .image-block {
    width: 100% !important;
  }
}
.cid-skPFtlrNBA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPFFr6qug {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPFFr6qug .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPFFr6qug .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPFFr6qug .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPFFr6qug .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPFFr6qug .row > .row {
  display: block;
}
.cid-skPFFr6qug .mbr-gallery-item {
  width: 100%;
}
.cid-skPFFr6qug .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPFFr6qug .mbr-gallery-item > div {
  position: relative;
}
.cid-skPFFr6qug .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPFFr6qug .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPFFr6qug .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPFFr6qug .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPFALMkBV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPFQRaApV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPFQRaApV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPFQRaApV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPFQRaApV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPFQRaApV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPFQRaApV .row > .row {
  display: block;
}
.cid-skPFQRaApV .mbr-gallery-item {
  width: 100%;
}
.cid-skPFQRaApV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPFQRaApV .mbr-gallery-item > div {
  position: relative;
}
.cid-skPFQRaApV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPFQRaApV .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPFQRaApV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPFQRaApV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPFDsByem {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPFRP3C10 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPFRP3C10 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPFRP3C10 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPFRP3C10 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPFRP3C10 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPFRP3C10 .row > .row {
  display: block;
}
.cid-skPFRP3C10 .mbr-gallery-item {
  width: 100%;
}
.cid-skPFRP3C10 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPFRP3C10 .mbr-gallery-item > div {
  position: relative;
}
.cid-skPFRP3C10 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPFRP3C10 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPFRP3C10 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPFRP3C10 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPFz113Ym {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPFSjMwFY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPFSjMwFY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPFSjMwFY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPFSjMwFY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPFSjMwFY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPFSjMwFY .row > .row {
  display: block;
}
.cid-skPFSjMwFY .mbr-gallery-item {
  width: 100%;
}
.cid-skPFSjMwFY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPFSjMwFY .mbr-gallery-item > div {
  position: relative;
}
.cid-skPFSjMwFY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPFSjMwFY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPFSjMwFY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPFSjMwFY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPFCq0qBG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPFTqrmmk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPFTqrmmk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPFTqrmmk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPFTqrmmk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPFTqrmmk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPFTqrmmk .row > .row {
  display: block;
}
.cid-skPFTqrmmk .mbr-gallery-item {
  width: 100%;
}
.cid-skPFTqrmmk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPFTqrmmk .mbr-gallery-item > div {
  position: relative;
}
.cid-skPFTqrmmk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPFTqrmmk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPFTqrmmk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPFTqrmmk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPFxbg3Px {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPFTNtwZT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPFTNtwZT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPFTNtwZT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPFTNtwZT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPFTNtwZT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPFTNtwZT .row > .row {
  display: block;
}
.cid-skPFTNtwZT .mbr-gallery-item {
  width: 100%;
}
.cid-skPFTNtwZT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPFTNtwZT .mbr-gallery-item > div {
  position: relative;
}
.cid-skPFTNtwZT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPFTNtwZT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPFTNtwZT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPFTNtwZT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPFBOm4UW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPFVazyZL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPFVazyZL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPFVazyZL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPFVazyZL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPFVazyZL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPFVazyZL .row > .row {
  display: block;
}
.cid-skPFVazyZL .mbr-gallery-item {
  width: 100%;
}
.cid-skPFVazyZL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPFVazyZL .mbr-gallery-item > div {
  position: relative;
}
.cid-skPFVazyZL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPFVazyZL .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPFVazyZL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPFVazyZL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPFA3z6HI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPFZKYVqp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPFZKYVqp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPFZKYVqp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPFZKYVqp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPFZKYVqp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPFZKYVqp .row > .row {
  display: block;
}
.cid-skPFZKYVqp .mbr-gallery-item {
  width: 100%;
}
.cid-skPFZKYVqp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPFZKYVqp .mbr-gallery-item > div {
  position: relative;
}
.cid-skPFZKYVqp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPFZKYVqp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPFZKYVqp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPFZKYVqp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPFviiSyT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPFWys5Kn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPFWys5Kn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPFWys5Kn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPFWys5Kn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPFWys5Kn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPFWys5Kn .row > .row {
  display: block;
}
.cid-skPFWys5Kn .mbr-gallery-item {
  width: 100%;
}
.cid-skPFWys5Kn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPFWys5Kn .mbr-gallery-item > div {
  position: relative;
}
.cid-skPFWys5Kn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPFWys5Kn .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPFWys5Kn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPFWys5Kn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPFwm3cbz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPFXgytuc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPFXgytuc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPFXgytuc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPFXgytuc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPFXgytuc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPFXgytuc .row > .row {
  display: block;
}
.cid-skPFXgytuc .mbr-gallery-item {
  width: 100%;
}
.cid-skPFXgytuc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPFXgytuc .mbr-gallery-item > div {
  position: relative;
}
.cid-skPFXgytuc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPFXgytuc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPFXgytuc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPFXgytuc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPFydgtdl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPFXPGTMi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPFXPGTMi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPFXPGTMi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPFXPGTMi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPFXPGTMi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPFXPGTMi .row > .row {
  display: block;
}
.cid-skPFXPGTMi .mbr-gallery-item {
  width: 100%;
}
.cid-skPFXPGTMi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPFXPGTMi .mbr-gallery-item > div {
  position: relative;
}
.cid-skPFXPGTMi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPFXPGTMi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPFXPGTMi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPFXPGTMi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPFukhoZT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPFYqDEkE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPFYqDEkE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPFYqDEkE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPFYqDEkE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPFYqDEkE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPFYqDEkE .row > .row {
  display: block;
}
.cid-skPFYqDEkE .mbr-gallery-item {
  width: 100%;
}
.cid-skPFYqDEkE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPFYqDEkE .mbr-gallery-item > div {
  position: relative;
}
.cid-skPFYqDEkE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPFYqDEkE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPFYqDEkE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPFYqDEkE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3QP61qsnH {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #15ece0;
}
.cid-s3QP61qsnH .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3QP61qsnH div.b {
  padding-top: 2rem;
}
.cid-s3QP61qsnH H5 {
  color: #232323;
}
.cid-s3R1Lw8RPA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-s3R1Lw8RPA .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3R1Lw8RPA .section-text {
  padding: 2rem 0;
}
.cid-s3R1Lw8RPA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3R1Lw8RPA .inner-container {
    width: 100% !important;
  }
}
.cid-v78C5es9To {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #15ece0;
}
.cid-v78C5es9To .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78C5es9To .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78C5es9To .row {
  justify-content: center;
}
.cid-v78C5es9To .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78C5es9To .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78C5es9To .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78C5es9To .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78C5es9To .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78C5es9To .mbr-text_1,
.cid-v78C5es9To .mbr-text_2,
.cid-v78C5es9To .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78C5es9To .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78C5es9To .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78C5es9To .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78C5es9To .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78C5es9To .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78C5es9To .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78C5es9To .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78C5es9To .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78C5es9To .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78C5es9To .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78C5es9To .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78C5es9To .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78C5es9To .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78C6q33Ss {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #15ece0;
}
.cid-v78C6q33Ss .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78C6q33Ss .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78C6q33Ss .row {
  justify-content: center;
}
.cid-v78C6q33Ss .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78C6q33Ss .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78C6q33Ss .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78C6q33Ss .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78C6q33Ss .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78C6q33Ss .mbr-text_1,
.cid-v78C6q33Ss .mbr-text_2,
.cid-v78C6q33Ss .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78C6q33Ss .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78C6q33Ss .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78C6q33Ss .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78C6q33Ss .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78C6q33Ss .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78C6q33Ss .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78C6q33Ss .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78C6q33Ss .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78C6q33Ss .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78C6q33Ss .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78C6q33Ss .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78C6q33Ss .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78C6q33Ss .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78C7Tee2J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78C7Tee2J .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v78C7Tee2J .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v78C7Tee2J .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v78C7Tee2J .inner-container {
    width: 100% !important;
  }
}
.cid-v78C9MV0KV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78C9MV0KV .mbr-section-subtitle {
  color: #767676;
}
.cid-v78C9MV0KV .container-table {
  margin: 0 auto;
}
.cid-v78C9MV0KV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v78C9MV0KV .dataTables_wrapper {
  display: block;
}
.cid-v78C9MV0KV .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v78C9MV0KV .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v78C9MV0KV table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v78C9MV0KV table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v78C9MV0KV table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v78C9MV0KV table td {
  border-top: 1px solid #232323;
}
.cid-v78C9MV0KV table.table {
  background: #15ece0;
}
.cid-v78C9MV0KV .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v78C9MV0KV .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v78C9MV0KV .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v78C9MV0KV .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v78C9MV0KV .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v78C9MV0KV .dataTables_filter {
    text-align: center;
  }
  .cid-v78C9MV0KV .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v78C9MV0KV .mbr-section-title {
  color: #232323;
}
.cid-v78C9MV0KV .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v78C9MV0KV .body-item {
  text-align: center;
}
.cid-uyqb3dwe46 {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uyqb3dwe46 .image-block {
  margin: auto;
}
.cid-uyqb3dwe46 figcaption {
  position: relative;
}
.cid-uyqb3dwe46 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uyqb3dwe46 .image-block {
    width: 100% !important;
  }
}
.cid-s3R1Lyidwl {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-s3R1Lyidwl .image-block {
  margin: auto;
}
.cid-s3R1Lyidwl figcaption {
  position: relative;
}
.cid-s3R1Lyidwl figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-s3R1Lyidwl .image-block {
    width: 100% !important;
  }
}
.cid-skPK3JP427 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPKeME4YJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPKeME4YJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPKeME4YJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPKeME4YJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPKeME4YJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPKeME4YJ .row > .row {
  display: block;
}
.cid-skPKeME4YJ .mbr-gallery-item {
  width: 100%;
}
.cid-skPKeME4YJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPKeME4YJ .mbr-gallery-item > div {
  position: relative;
}
.cid-skPKeME4YJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPKeME4YJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPKeME4YJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPKeME4YJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPK4bG5zc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPKg0LHrM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPKg0LHrM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPKg0LHrM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPKg0LHrM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPKg0LHrM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPKg0LHrM .row > .row {
  display: block;
}
.cid-skPKg0LHrM .mbr-gallery-item {
  width: 100%;
}
.cid-skPKg0LHrM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPKg0LHrM .mbr-gallery-item > div {
  position: relative;
}
.cid-skPKg0LHrM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPKg0LHrM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPKg0LHrM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPKg0LHrM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPKaKvB2n {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPKgNxHX2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPKgNxHX2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPKgNxHX2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPKgNxHX2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPKgNxHX2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPKgNxHX2 .row > .row {
  display: block;
}
.cid-skPKgNxHX2 .mbr-gallery-item {
  width: 100%;
}
.cid-skPKgNxHX2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPKgNxHX2 .mbr-gallery-item > div {
  position: relative;
}
.cid-skPKgNxHX2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPKgNxHX2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPKgNxHX2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPKgNxHX2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPK77V5Vu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPKhAy3Hz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPKhAy3Hz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPKhAy3Hz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPKhAy3Hz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPKhAy3Hz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPKhAy3Hz .row > .row {
  display: block;
}
.cid-skPKhAy3Hz .mbr-gallery-item {
  width: 100%;
}
.cid-skPKhAy3Hz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPKhAy3Hz .mbr-gallery-item > div {
  position: relative;
}
.cid-skPKhAy3Hz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPKhAy3Hz .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPKhAy3Hz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPKhAy3Hz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPK8zYv5k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPKjqvWou {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPKjqvWou .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPKjqvWou .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPKjqvWou .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPKjqvWou .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPKjqvWou .row > .row {
  display: block;
}
.cid-skPKjqvWou .mbr-gallery-item {
  width: 100%;
}
.cid-skPKjqvWou .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPKjqvWou .mbr-gallery-item > div {
  position: relative;
}
.cid-skPKjqvWou .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPKjqvWou .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPKjqvWou .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPKjqvWou .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPKa3eZE1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPKkfyBEC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPKkfyBEC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPKkfyBEC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPKkfyBEC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPKkfyBEC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPKkfyBEC .row > .row {
  display: block;
}
.cid-skPKkfyBEC .mbr-gallery-item {
  width: 100%;
}
.cid-skPKkfyBEC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPKkfyBEC .mbr-gallery-item > div {
  position: relative;
}
.cid-skPKkfyBEC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPKkfyBEC .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPKkfyBEC .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPKkfyBEC .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPK9DEqJa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPKkXJxgd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPKkXJxgd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPKkXJxgd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPKkXJxgd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPKkXJxgd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPKkXJxgd .row > .row {
  display: block;
}
.cid-skPKkXJxgd .mbr-gallery-item {
  width: 100%;
}
.cid-skPKkXJxgd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPKkXJxgd .mbr-gallery-item > div {
  position: relative;
}
.cid-skPKkXJxgd .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPKkXJxgd .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPKkXJxgd .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPKkXJxgd .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPK7T7k3b {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPKlCdjg3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPKlCdjg3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPKlCdjg3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPKlCdjg3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPKlCdjg3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPKlCdjg3 .row > .row {
  display: block;
}
.cid-skPKlCdjg3 .mbr-gallery-item {
  width: 100%;
}
.cid-skPKlCdjg3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPKlCdjg3 .mbr-gallery-item > div {
  position: relative;
}
.cid-skPKlCdjg3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPKlCdjg3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPKlCdjg3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPKlCdjg3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPK5wMQuV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPKmH7GW4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPKmH7GW4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPKmH7GW4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPKmH7GW4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPKmH7GW4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPKmH7GW4 .row > .row {
  display: block;
}
.cid-skPKmH7GW4 .mbr-gallery-item {
  width: 100%;
}
.cid-skPKmH7GW4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPKmH7GW4 .mbr-gallery-item > div {
  position: relative;
}
.cid-skPKmH7GW4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPKmH7GW4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPKmH7GW4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPKmH7GW4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPK6BqAWr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPKnsRmvj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPKnsRmvj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPKnsRmvj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPKnsRmvj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPKnsRmvj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPKnsRmvj .row > .row {
  display: block;
}
.cid-skPKnsRmvj .mbr-gallery-item {
  width: 100%;
}
.cid-skPKnsRmvj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPKnsRmvj .mbr-gallery-item > div {
  position: relative;
}
.cid-skPKnsRmvj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPKnsRmvj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPKnsRmvj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPKnsRmvj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPK4RSYV4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPKo5Uz9t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPKo5Uz9t .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPKo5Uz9t .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPKo5Uz9t .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPKo5Uz9t .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPKo5Uz9t .row > .row {
  display: block;
}
.cid-skPKo5Uz9t .mbr-gallery-item {
  width: 100%;
}
.cid-skPKo5Uz9t .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPKo5Uz9t .mbr-gallery-item > div {
  position: relative;
}
.cid-skPKo5Uz9t .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPKo5Uz9t .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPKo5Uz9t .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPKo5Uz9t .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skPK2AIbVk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skPKoHImQY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skPKoHImQY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skPKoHImQY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skPKoHImQY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skPKoHImQY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skPKoHImQY .row > .row {
  display: block;
}
.cid-skPKoHImQY .mbr-gallery-item {
  width: 100%;
}
.cid-skPKoHImQY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skPKoHImQY .mbr-gallery-item > div {
  position: relative;
}
.cid-skPKoHImQY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skPKoHImQY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skPKoHImQY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skPKoHImQY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3R1LFFOZb {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #15ece0;
}
.cid-s3R1LFFOZb .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3R1LFFOZb div.b {
  padding-top: 2rem;
}
.cid-s3R1LFFOZb H5 {
  color: #232323;
}
.cid-s3RC3u1LPZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3RC3u1LPZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3RC3u1LPZ .section-text {
  padding: 2rem 0;
}
.cid-s3RC3u1LPZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3RC3u1LPZ .inner-container {
    width: 100% !important;
  }
}
.cid-v6XjzrgGj3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6XjzrgGj3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XjzrgGj3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XjzrgGj3 .row {
  justify-content: center;
}
.cid-v6XjzrgGj3 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XjzrgGj3 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XjzrgGj3 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XjzrgGj3 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XjzrgGj3 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XjzrgGj3 .mbr-text_1,
.cid-v6XjzrgGj3 .mbr-text_2,
.cid-v6XjzrgGj3 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XjzrgGj3 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XjzrgGj3 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XjzrgGj3 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XjzrgGj3 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XjzrgGj3 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XjzrgGj3 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XjzrgGj3 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XjzrgGj3 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XjzrgGj3 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XjzrgGj3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XjzrgGj3 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XjzrgGj3 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XjzrgGj3 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XjAEaJ0w {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6XjAEaJ0w .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XjAEaJ0w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XjAEaJ0w .row {
  justify-content: center;
}
.cid-v6XjAEaJ0w .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XjAEaJ0w .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XjAEaJ0w .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XjAEaJ0w .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XjAEaJ0w .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XjAEaJ0w .mbr-text_1,
.cid-v6XjAEaJ0w .mbr-text_2,
.cid-v6XjAEaJ0w .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XjAEaJ0w .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XjAEaJ0w .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XjAEaJ0w .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XjAEaJ0w .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XjAEaJ0w .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XjAEaJ0w .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XjAEaJ0w .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XjAEaJ0w .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XjAEaJ0w .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XjAEaJ0w .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XjAEaJ0w .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XjAEaJ0w .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XjAEaJ0w .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3RC3v0JO2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3RC3v0JO2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3RC3v0JO2 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s3RC3v0JO2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3RC3v0JO2 .inner-container {
    width: 100% !important;
  }
}
.cid-s3RC3viMWB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3RC3viMWB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3RC3viMWB .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s3RC3viMWB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3RC3viMWB .inner-container {
    width: 100% !important;
  }
}
.cid-s3RC3vRgIx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3RC3vRgIx .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3RC3vRgIx .section-text {
  padding: 2rem 0;
}
.cid-s3RC3vRgIx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3RC3vRgIx .inner-container {
    width: 100% !important;
  }
}
.cid-u07LOBegsW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u07LOBegsW .mbr-section-subtitle {
  color: #767676;
}
.cid-u07LOBegsW .container-table {
  margin: 0 auto;
}
.cid-u07LOBegsW .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u07LOBegsW .dataTables_wrapper {
  display: block;
}
.cid-u07LOBegsW .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u07LOBegsW .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u07LOBegsW table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-u07LOBegsW table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u07LOBegsW table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-u07LOBegsW table td {
  border-top: 1px solid #232323;
}
.cid-u07LOBegsW .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u07LOBegsW .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u07LOBegsW .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u07LOBegsW .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u07LOBegsW .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u07LOBegsW .dataTables_filter {
    text-align: center;
  }
  .cid-u07LOBegsW .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u07LOBegsW .mbr-section-title {
  color: #ff3366;
}
.cid-u07LOBegsW .head-item {
  text-align: center;
  color: #232323;
}
.cid-u07LOBegsW .body-item {
  text-align: center;
}
.cid-s3RC3wSKI6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3RC3wSKI6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3RC3wSKI6 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s3RC3wSKI6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3RC3wSKI6 .inner-container {
    width: 100% !important;
  }
}
.cid-sivwBN9vvM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivwDn36kw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivwDn36kw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivwDn36kw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivwDn36kw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivwDn36kw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivwDn36kw .row > .row {
  display: block;
}
.cid-sivwDn36kw .mbr-gallery-item {
  width: 100%;
}
.cid-sivwDn36kw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivwDn36kw .mbr-gallery-item > div {
  position: relative;
}
.cid-sivwDn36kw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivwDn36kw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivwDn36kw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivwDn36kw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sivwGZMETs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivwI62QYj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivwI62QYj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivwI62QYj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivwI62QYj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivwI62QYj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivwI62QYj .row > .row {
  display: block;
}
.cid-sivwI62QYj .mbr-gallery-item {
  width: 100%;
}
.cid-sivwI62QYj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivwI62QYj .mbr-gallery-item > div {
  position: relative;
}
.cid-sivwI62QYj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivwI62QYj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivwI62QYj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivwI62QYj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sivwLsPOtg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivwMBCHm1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivwMBCHm1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivwMBCHm1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivwMBCHm1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivwMBCHm1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivwMBCHm1 .row > .row {
  display: block;
}
.cid-sivwMBCHm1 .mbr-gallery-item {
  width: 100%;
}
.cid-sivwMBCHm1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivwMBCHm1 .mbr-gallery-item > div {
  position: relative;
}
.cid-sivwMBCHm1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivwMBCHm1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivwMBCHm1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivwMBCHm1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sivwOL7deH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivwPO0P23 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivwPO0P23 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivwPO0P23 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivwPO0P23 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivwPO0P23 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivwPO0P23 .row > .row {
  display: block;
}
.cid-sivwPO0P23 .mbr-gallery-item {
  width: 100%;
}
.cid-sivwPO0P23 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivwPO0P23 .mbr-gallery-item > div {
  position: relative;
}
.cid-sivwPO0P23 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivwPO0P23 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivwPO0P23 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivwPO0P23 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sivyOhLqWG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivyPrU6nq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivyPrU6nq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivyPrU6nq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivyPrU6nq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivyPrU6nq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivyPrU6nq .row > .row {
  display: block;
}
.cid-sivyPrU6nq .mbr-gallery-item {
  width: 100%;
}
.cid-sivyPrU6nq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivyPrU6nq .mbr-gallery-item > div {
  position: relative;
}
.cid-sivyPrU6nq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivyPrU6nq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivyPrU6nq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivyPrU6nq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3RC3FrJJy {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-s3RC3FrJJy .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3RC3FrJJy div.b {
  padding-top: 2rem;
}
.cid-s3RC3FrJJy H5 {
  color: #232323;
}
.cid-s3RFD4CM5z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3RFD4CM5z .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3RFD4CM5z .section-text {
  padding: 2rem 0;
}
.cid-s3RFD4CM5z .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3RFD4CM5z .inner-container {
    width: 100% !important;
  }
}
.cid-v6XjQnMB3C {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6XjQnMB3C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XjQnMB3C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XjQnMB3C .row {
  justify-content: center;
}
.cid-v6XjQnMB3C .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XjQnMB3C .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XjQnMB3C .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XjQnMB3C .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XjQnMB3C .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XjQnMB3C .mbr-text_1,
.cid-v6XjQnMB3C .mbr-text_2,
.cid-v6XjQnMB3C .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XjQnMB3C .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XjQnMB3C .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XjQnMB3C .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XjQnMB3C .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XjQnMB3C .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XjQnMB3C .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XjQnMB3C .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XjQnMB3C .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XjQnMB3C .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XjQnMB3C .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XjQnMB3C .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XjQnMB3C .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XjQnMB3C .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XjS2iHo3 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6XjS2iHo3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XjS2iHo3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XjS2iHo3 .row {
  justify-content: center;
}
.cid-v6XjS2iHo3 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XjS2iHo3 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XjS2iHo3 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XjS2iHo3 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XjS2iHo3 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XjS2iHo3 .mbr-text_1,
.cid-v6XjS2iHo3 .mbr-text_2,
.cid-v6XjS2iHo3 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XjS2iHo3 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XjS2iHo3 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XjS2iHo3 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XjS2iHo3 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XjS2iHo3 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XjS2iHo3 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XjS2iHo3 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XjS2iHo3 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XjS2iHo3 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XjS2iHo3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XjS2iHo3 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XjS2iHo3 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XjS2iHo3 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3RFD5GOXF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3RFD5GOXF .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3RFD5GOXF .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s3RFD5GOXF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3RFD5GOXF .inner-container {
    width: 100% !important;
  }
}
.cid-v6XjTNwpDx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6XjTNwpDx .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6XjTNwpDx .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6XjTNwpDx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6XjTNwpDx .inner-container {
    width: 100% !important;
  }
}
.cid-s3RFD6mwjU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3RFD6mwjU .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3RFD6mwjU .section-text {
  padding: 2rem 0;
}
.cid-s3RFD6mwjU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3RFD6mwjU .inner-container {
    width: 100% !important;
  }
}
.cid-uybddO7SMH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybddO7SMH .mbr-section-subtitle {
  color: #767676;
}
.cid-uybddO7SMH .container-table {
  margin: 0 auto;
}
.cid-uybddO7SMH .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybddO7SMH .dataTables_wrapper {
  display: block;
}
.cid-uybddO7SMH .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybddO7SMH .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybddO7SMH table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybddO7SMH table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybddO7SMH table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybddO7SMH table td {
  border-top: 1px solid #232323;
}
.cid-uybddO7SMH .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybddO7SMH .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybddO7SMH .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybddO7SMH .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybddO7SMH .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybddO7SMH .dataTables_filter {
    text-align: center;
  }
  .cid-uybddO7SMH .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybddO7SMH .mbr-section-title {
  color: #ff3366;
}
.cid-uybddO7SMH .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybddO7SMH .body-item {
  text-align: center;
}
.cid-s3RFD83YAZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3RFD83YAZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3RFD83YAZ .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s3RFD83YAZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3RFD83YAZ .inner-container {
    width: 100% !important;
  }
}
.cid-sivJxSRr7X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivJznoouV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivJznoouV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivJznoouV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivJznoouV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivJznoouV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivJznoouV .row > .row {
  display: block;
}
.cid-sivJznoouV .mbr-gallery-item {
  width: 100%;
}
.cid-sivJznoouV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivJznoouV .mbr-gallery-item > div {
  position: relative;
}
.cid-sivJznoouV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivJznoouV .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivJznoouV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivJznoouV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sivJEIBb5P {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivJGkNFm8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivJGkNFm8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivJGkNFm8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivJGkNFm8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivJGkNFm8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivJGkNFm8 .row > .row {
  display: block;
}
.cid-sivJGkNFm8 .mbr-gallery-item {
  width: 100%;
}
.cid-sivJGkNFm8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivJGkNFm8 .mbr-gallery-item > div {
  position: relative;
}
.cid-sivJGkNFm8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivJGkNFm8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivJGkNFm8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivJGkNFm8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sivJJh15iY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivJKmfaqE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivJKmfaqE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivJKmfaqE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivJKmfaqE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivJKmfaqE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivJKmfaqE .row > .row {
  display: block;
}
.cid-sivJKmfaqE .mbr-gallery-item {
  width: 100%;
}
.cid-sivJKmfaqE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivJKmfaqE .mbr-gallery-item > div {
  position: relative;
}
.cid-sivJKmfaqE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivJKmfaqE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivJKmfaqE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivJKmfaqE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sivKodKNee {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivKpqfkse {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivKpqfkse .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivKpqfkse .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivKpqfkse .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivKpqfkse .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivKpqfkse .row > .row {
  display: block;
}
.cid-sivKpqfkse .mbr-gallery-item {
  width: 100%;
}
.cid-sivKpqfkse .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivKpqfkse .mbr-gallery-item > div {
  position: relative;
}
.cid-sivKpqfkse .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivKpqfkse .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivKpqfkse .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivKpqfkse .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sivKrJ8zTy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivKsSiSgy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivKsSiSgy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivKsSiSgy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivKsSiSgy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivKsSiSgy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivKsSiSgy .row > .row {
  display: block;
}
.cid-sivKsSiSgy .mbr-gallery-item {
  width: 100%;
}
.cid-sivKsSiSgy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivKsSiSgy .mbr-gallery-item > div {
  position: relative;
}
.cid-sivKsSiSgy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivKsSiSgy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivKsSiSgy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivKsSiSgy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sivKvjQeE3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivKwuaJOZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivKwuaJOZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivKwuaJOZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivKwuaJOZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivKwuaJOZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivKwuaJOZ .row > .row {
  display: block;
}
.cid-sivKwuaJOZ .mbr-gallery-item {
  width: 100%;
}
.cid-sivKwuaJOZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivKwuaJOZ .mbr-gallery-item > div {
  position: relative;
}
.cid-sivKwuaJOZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivKwuaJOZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivKwuaJOZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivKwuaJOZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sivKxXmjym {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivMgVF8ZB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivMi1NITf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivMi1NITf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivMi1NITf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivMi1NITf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivMi1NITf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivMi1NITf .row > .row {
  display: block;
}
.cid-sivMi1NITf .mbr-gallery-item {
  width: 100%;
}
.cid-sivMi1NITf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivMi1NITf .mbr-gallery-item > div {
  position: relative;
}
.cid-sivMi1NITf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivMi1NITf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivMi1NITf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivMi1NITf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sivMk5qTgu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivMl6JG2K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivMl6JG2K .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivMl6JG2K .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivMl6JG2K .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivMl6JG2K .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivMl6JG2K .row > .row {
  display: block;
}
.cid-sivMl6JG2K .mbr-gallery-item {
  width: 100%;
}
.cid-sivMl6JG2K .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivMl6JG2K .mbr-gallery-item > div {
  position: relative;
}
.cid-sivMl6JG2K .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivMl6JG2K .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivMl6JG2K .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivMl6JG2K .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sivMDeW5w7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivMEkuiAW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivMEkuiAW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivMEkuiAW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivMEkuiAW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivMEkuiAW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivMEkuiAW .row > .row {
  display: block;
}
.cid-sivMEkuiAW .mbr-gallery-item {
  width: 100%;
}
.cid-sivMEkuiAW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivMEkuiAW .mbr-gallery-item > div {
  position: relative;
}
.cid-sivMEkuiAW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivMEkuiAW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivMEkuiAW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivMEkuiAW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sivMG1XPN4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivMH47JMi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivMH47JMi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivMH47JMi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivMH47JMi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivMH47JMi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivMH47JMi .row > .row {
  display: block;
}
.cid-sivMH47JMi .mbr-gallery-item {
  width: 100%;
}
.cid-sivMH47JMi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivMH47JMi .mbr-gallery-item > div {
  position: relative;
}
.cid-sivMH47JMi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivMH47JMi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivMH47JMi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivMH47JMi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sivMIqrHPS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sivMJkZZQf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sivMJkZZQf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivMJkZZQf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivMJkZZQf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivMJkZZQf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivMJkZZQf .row > .row {
  display: block;
}
.cid-sivMJkZZQf .mbr-gallery-item {
  width: 100%;
}
.cid-sivMJkZZQf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivMJkZZQf .mbr-gallery-item > div {
  position: relative;
}
.cid-sivMJkZZQf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivMJkZZQf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivMJkZZQf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivMJkZZQf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3RFDfCuXI {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-s3RFDfCuXI .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3RFDfCuXI div.b {
  padding-top: 2rem;
}
.cid-s3RFDfCuXI H5 {
  color: #232323;
}
.cid-s3YjHrJgWl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YjHrJgWl .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YjHrJgWl .section-text {
  padding: 2rem 0;
}
.cid-s3YjHrJgWl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YjHrJgWl .inner-container {
    width: 100% !important;
  }
}
.cid-v6XkdePuqW {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6XkdePuqW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XkdePuqW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XkdePuqW .row {
  justify-content: center;
}
.cid-v6XkdePuqW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XkdePuqW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XkdePuqW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XkdePuqW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XkdePuqW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XkdePuqW .mbr-text_1,
.cid-v6XkdePuqW .mbr-text_2,
.cid-v6XkdePuqW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XkdePuqW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XkdePuqW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XkdePuqW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XkdePuqW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XkdePuqW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XkdePuqW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XkdePuqW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XkdePuqW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XkdePuqW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XkdePuqW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XkdePuqW .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XkdePuqW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XkdePuqW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XkebzrIs {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6XkebzrIs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XkebzrIs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XkebzrIs .row {
  justify-content: center;
}
.cid-v6XkebzrIs .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XkebzrIs .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XkebzrIs .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XkebzrIs .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XkebzrIs .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XkebzrIs .mbr-text_1,
.cid-v6XkebzrIs .mbr-text_2,
.cid-v6XkebzrIs .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XkebzrIs .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XkebzrIs .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XkebzrIs .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XkebzrIs .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XkebzrIs .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XkebzrIs .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XkebzrIs .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XkebzrIs .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XkebzrIs .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XkebzrIs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XkebzrIs .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XkebzrIs .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XkebzrIs .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3YjHsCwfY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YjHsCwfY .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YjHsCwfY .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s3YjHsCwfY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YjHsCwfY .inner-container {
    width: 100% !important;
  }
}
.cid-v6XkbfXVtn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6XkbfXVtn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6XkbfXVtn .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6XkbfXVtn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6XkbfXVtn .inner-container {
    width: 100% !important;
  }
}
.cid-s3YjHtaghT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YjHtaghT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YjHtaghT .section-text {
  padding: 2rem 0;
}
.cid-s3YjHtaghT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YjHtaghT .inner-container {
    width: 100% !important;
  }
}
.cid-uybdmTgD3X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybdmTgD3X .mbr-section-subtitle {
  color: #767676;
}
.cid-uybdmTgD3X .container-table {
  margin: 0 auto;
}
.cid-uybdmTgD3X .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybdmTgD3X .dataTables_wrapper {
  display: block;
}
.cid-uybdmTgD3X .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybdmTgD3X .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybdmTgD3X table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybdmTgD3X table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybdmTgD3X table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybdmTgD3X table td {
  border-top: 1px solid #232323;
}
.cid-uybdmTgD3X .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybdmTgD3X .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybdmTgD3X .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybdmTgD3X .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybdmTgD3X .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybdmTgD3X .dataTables_filter {
    text-align: center;
  }
  .cid-uybdmTgD3X .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybdmTgD3X .mbr-section-title {
  color: #ff3366;
}
.cid-uybdmTgD3X .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybdmTgD3X .body-item {
  text-align: center;
}
.cid-s3YjHuktZg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YjHuktZg .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YjHuktZg .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s3YjHuktZg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YjHuktZg .inner-container {
    width: 100% !important;
  }
}
.cid-siyu6bt6Rr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siyvGyMjnn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siyvGyMjnn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siyvGyMjnn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siyvGyMjnn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siyvGyMjnn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siyvGyMjnn .row > .row {
  display: block;
}
.cid-siyvGyMjnn .mbr-gallery-item {
  width: 100%;
}
.cid-siyvGyMjnn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siyvGyMjnn .mbr-gallery-item > div {
  position: relative;
}
.cid-siyvGyMjnn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siyvGyMjnn .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siyvGyMjnn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siyvGyMjnn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siyubDqMrA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siywajSqWQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siywajSqWQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siywajSqWQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siywajSqWQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siywajSqWQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siywajSqWQ .row > .row {
  display: block;
}
.cid-siywajSqWQ .mbr-gallery-item {
  width: 100%;
}
.cid-siywajSqWQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siywajSqWQ .mbr-gallery-item > div {
  position: relative;
}
.cid-siywajSqWQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siywajSqWQ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siywajSqWQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siywajSqWQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siyucOaRSK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siywbuvsAj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siywbuvsAj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siywbuvsAj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siywbuvsAj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siywbuvsAj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siywbuvsAj .row > .row {
  display: block;
}
.cid-siywbuvsAj .mbr-gallery-item {
  width: 100%;
}
.cid-siywbuvsAj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siywbuvsAj .mbr-gallery-item > div {
  position: relative;
}
.cid-siywbuvsAj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siywbuvsAj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siywbuvsAj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siywbuvsAj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siyu7IAFzg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siywcp8YTn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siywcp8YTn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siywcp8YTn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siywcp8YTn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siywcp8YTn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siywcp8YTn .row > .row {
  display: block;
}
.cid-siywcp8YTn .mbr-gallery-item {
  width: 100%;
}
.cid-siywcp8YTn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siywcp8YTn .mbr-gallery-item > div {
  position: relative;
}
.cid-siywcp8YTn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siywcp8YTn .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siywcp8YTn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siywcp8YTn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siyueET4FI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siywdgSCzH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siywdgSCzH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siywdgSCzH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siywdgSCzH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siywdgSCzH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siywdgSCzH .row > .row {
  display: block;
}
.cid-siywdgSCzH .mbr-gallery-item {
  width: 100%;
}
.cid-siywdgSCzH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siywdgSCzH .mbr-gallery-item > div {
  position: relative;
}
.cid-siywdgSCzH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siywdgSCzH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siywdgSCzH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siywdgSCzH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siyugag7b2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siyuhG24nn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siyukWdVQw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siywfzn3RN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siywfzn3RN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siywfzn3RN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siywfzn3RN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siywfzn3RN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siywfzn3RN .row > .row {
  display: block;
}
.cid-siywfzn3RN .mbr-gallery-item {
  width: 100%;
}
.cid-siywfzn3RN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siywfzn3RN .mbr-gallery-item > div {
  position: relative;
}
.cid-siywfzn3RN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siywfzn3RN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siywfzn3RN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siywfzn3RN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siyuiXjIpi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siyweFxWR7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siyweFxWR7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siyweFxWR7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siyweFxWR7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siyweFxWR7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siyweFxWR7 .row > .row {
  display: block;
}
.cid-siyweFxWR7 .mbr-gallery-item {
  width: 100%;
}
.cid-siyweFxWR7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siyweFxWR7 .mbr-gallery-item > div {
  position: relative;
}
.cid-siyweFxWR7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siyweFxWR7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siyweFxWR7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siyweFxWR7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siyumFqn4h {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siywgzeMt0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siywgzeMt0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siywgzeMt0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siywgzeMt0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siywgzeMt0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siywgzeMt0 .row > .row {
  display: block;
}
.cid-siywgzeMt0 .mbr-gallery-item {
  width: 100%;
}
.cid-siywgzeMt0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siywgzeMt0 .mbr-gallery-item > div {
  position: relative;
}
.cid-siywgzeMt0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siywgzeMt0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siywgzeMt0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siywgzeMt0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siyunAjE4D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siywhHMDs9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siywhHMDs9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siywhHMDs9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siywhHMDs9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siywhHMDs9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siywhHMDs9 .row > .row {
  display: block;
}
.cid-siywhHMDs9 .mbr-gallery-item {
  width: 100%;
}
.cid-siywhHMDs9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siywhHMDs9 .mbr-gallery-item > div {
  position: relative;
}
.cid-siywhHMDs9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siywhHMDs9 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siywhHMDs9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siywhHMDs9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siyuoupimA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siywiHvmD3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siywiHvmD3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siywiHvmD3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siywiHvmD3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siywiHvmD3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siywiHvmD3 .row > .row {
  display: block;
}
.cid-siywiHvmD3 .mbr-gallery-item {
  width: 100%;
}
.cid-siywiHvmD3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siywiHvmD3 .mbr-gallery-item > div {
  position: relative;
}
.cid-siywiHvmD3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siywiHvmD3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siywiHvmD3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siywiHvmD3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3YjHB9Vuz {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-s3YjHB9Vuz .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3YjHB9Vuz div.b {
  padding-top: 2rem;
}
.cid-s3YjHB9Vuz H5 {
  color: #232323;
}
.cid-s3Ykeq7mpC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Ykeq7mpC .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Ykeq7mpC .section-text {
  padding: 2rem 0;
}
.cid-s3Ykeq7mpC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Ykeq7mpC .inner-container {
    width: 100% !important;
  }
}
.cid-v6XkQzKo5J {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6XkQzKo5J .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XkQzKo5J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XkQzKo5J .row {
  justify-content: center;
}
.cid-v6XkQzKo5J .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XkQzKo5J .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XkQzKo5J .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XkQzKo5J .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XkQzKo5J .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XkQzKo5J .mbr-text_1,
.cid-v6XkQzKo5J .mbr-text_2,
.cid-v6XkQzKo5J .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XkQzKo5J .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XkQzKo5J .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XkQzKo5J .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XkQzKo5J .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XkQzKo5J .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XkQzKo5J .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XkQzKo5J .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XkQzKo5J .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XkQzKo5J .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XkQzKo5J .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XkQzKo5J .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XkQzKo5J .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XkQzKo5J .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XkRH91sP {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6XkRH91sP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XkRH91sP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XkRH91sP .row {
  justify-content: center;
}
.cid-v6XkRH91sP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XkRH91sP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XkRH91sP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XkRH91sP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XkRH91sP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XkRH91sP .mbr-text_1,
.cid-v6XkRH91sP .mbr-text_2,
.cid-v6XkRH91sP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XkRH91sP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XkRH91sP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XkRH91sP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XkRH91sP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XkRH91sP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XkRH91sP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XkRH91sP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XkRH91sP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XkRH91sP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XkRH91sP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XkRH91sP .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XkRH91sP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XkRH91sP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3YkeqXf4w {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YkeqXf4w .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YkeqXf4w .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s3YkeqXf4w .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YkeqXf4w .inner-container {
    width: 100% !important;
  }
}
.cid-v6XkSIWLzZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6XkSIWLzZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6XkSIWLzZ .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6XkSIWLzZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6XkSIWLzZ .inner-container {
    width: 100% !important;
  }
}
.cid-s3Ykertzv2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Ykertzv2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Ykertzv2 .section-text {
  padding: 2rem 0;
}
.cid-s3Ykertzv2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Ykertzv2 .inner-container {
    width: 100% !important;
  }
}
.cid-uybdtrp3Af {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybdtrp3Af .mbr-section-subtitle {
  color: #767676;
}
.cid-uybdtrp3Af .container-table {
  margin: 0 auto;
}
.cid-uybdtrp3Af .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybdtrp3Af .dataTables_wrapper {
  display: block;
}
.cid-uybdtrp3Af .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybdtrp3Af .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybdtrp3Af table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybdtrp3Af table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybdtrp3Af table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybdtrp3Af table td {
  border-top: 1px solid #232323;
}
.cid-uybdtrp3Af .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybdtrp3Af .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybdtrp3Af .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybdtrp3Af .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybdtrp3Af .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybdtrp3Af .dataTables_filter {
    text-align: center;
  }
  .cid-uybdtrp3Af .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybdtrp3Af .mbr-section-title {
  color: #ff3366;
}
.cid-uybdtrp3Af .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybdtrp3Af .body-item {
  text-align: center;
}
.cid-s3Ykeszmhk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Ykeszmhk .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Ykeszmhk .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s3Ykeszmhk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Ykeszmhk .inner-container {
    width: 100% !important;
  }
}
.cid-siA5IfxVSa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siA5KJOTMh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siA5KJOTMh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siA5KJOTMh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siA5KJOTMh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siA5KJOTMh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siA5KJOTMh .row > .row {
  display: block;
}
.cid-siA5KJOTMh .mbr-gallery-item {
  width: 100%;
}
.cid-siA5KJOTMh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siA5KJOTMh .mbr-gallery-item > div {
  position: relative;
}
.cid-siA5KJOTMh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siA5KJOTMh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siA5KJOTMh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siA5KJOTMh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siA5PjiyjL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siA5QlWlJf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siA5QlWlJf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siA5QlWlJf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siA5QlWlJf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siA5QlWlJf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siA5QlWlJf .row > .row {
  display: block;
}
.cid-siA5QlWlJf .mbr-gallery-item {
  width: 100%;
}
.cid-siA5QlWlJf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siA5QlWlJf .mbr-gallery-item > div {
  position: relative;
}
.cid-siA5QlWlJf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siA5QlWlJf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siA5QlWlJf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siA5QlWlJf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siA5Ultfm6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siA5VCFYg6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siA5VCFYg6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siA5VCFYg6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siA5VCFYg6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siA5VCFYg6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siA5VCFYg6 .row > .row {
  display: block;
}
.cid-siA5VCFYg6 .mbr-gallery-item {
  width: 100%;
}
.cid-siA5VCFYg6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siA5VCFYg6 .mbr-gallery-item > div {
  position: relative;
}
.cid-siA5VCFYg6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siA5VCFYg6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siA5VCFYg6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siA5VCFYg6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siA5XxNlzR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siA5ZGhMYM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siA5ZGhMYM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siA5ZGhMYM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siA5ZGhMYM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siA5ZGhMYM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siA5ZGhMYM .row > .row {
  display: block;
}
.cid-siA5ZGhMYM .mbr-gallery-item {
  width: 100%;
}
.cid-siA5ZGhMYM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siA5ZGhMYM .mbr-gallery-item > div {
  position: relative;
}
.cid-siA5ZGhMYM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siA5ZGhMYM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siA5ZGhMYM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siA5ZGhMYM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siA614tVxy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siA62eKedM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siA62eKedM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siA62eKedM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siA62eKedM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siA62eKedM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siA62eKedM .row > .row {
  display: block;
}
.cid-siA62eKedM .mbr-gallery-item {
  width: 100%;
}
.cid-siA62eKedM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siA62eKedM .mbr-gallery-item > div {
  position: relative;
}
.cid-siA62eKedM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siA62eKedM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siA62eKedM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siA62eKedM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siA64DMMe5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siA65UEogO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siA67yK7JE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siA68klIW0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siA68klIW0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siA68klIW0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siA68klIW0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siA68klIW0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siA68klIW0 .row > .row {
  display: block;
}
.cid-siA68klIW0 .mbr-gallery-item {
  width: 100%;
}
.cid-siA68klIW0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siA68klIW0 .mbr-gallery-item > div {
  position: relative;
}
.cid-siA68klIW0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siA68klIW0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siA68klIW0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siA68klIW0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siA69RDmws {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siA6arZdoi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siA6arZdoi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siA6arZdoi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siA6arZdoi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siA6arZdoi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siA6arZdoi .row > .row {
  display: block;
}
.cid-siA6arZdoi .mbr-gallery-item {
  width: 100%;
}
.cid-siA6arZdoi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siA6arZdoi .mbr-gallery-item > div {
  position: relative;
}
.cid-siA6arZdoi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siA6arZdoi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siA6arZdoi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siA6arZdoi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siA6bUgRVb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siA6cugYuh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siA6cugYuh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siA6cugYuh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siA6cugYuh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siA6cugYuh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siA6cugYuh .row > .row {
  display: block;
}
.cid-siA6cugYuh .mbr-gallery-item {
  width: 100%;
}
.cid-siA6cugYuh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siA6cugYuh .mbr-gallery-item > div {
  position: relative;
}
.cid-siA6cugYuh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siA6cugYuh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siA6cugYuh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siA6cugYuh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siA6dShDND {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siA6ePpgiC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siA6ePpgiC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siA6ePpgiC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siA6ePpgiC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siA6ePpgiC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siA6ePpgiC .row > .row {
  display: block;
}
.cid-siA6ePpgiC .mbr-gallery-item {
  width: 100%;
}
.cid-siA6ePpgiC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siA6ePpgiC .mbr-gallery-item > div {
  position: relative;
}
.cid-siA6ePpgiC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siA6ePpgiC .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siA6ePpgiC .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siA6ePpgiC .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siA6h0HZlU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siA6i7W8yR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siA6i7W8yR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siA6i7W8yR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siA6i7W8yR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siA6i7W8yR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siA6i7W8yR .row > .row {
  display: block;
}
.cid-siA6i7W8yR .mbr-gallery-item {
  width: 100%;
}
.cid-siA6i7W8yR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siA6i7W8yR .mbr-gallery-item > div {
  position: relative;
}
.cid-siA6i7W8yR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siA6i7W8yR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siA6i7W8yR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siA6i7W8yR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3YkezdRxg {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-s3YkezdRxg .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3YkezdRxg div.b {
  padding-top: 2rem;
}
.cid-s3YkezdRxg H5 {
  color: #232323;
}
.cid-s3Yr2DkDdT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Yr2DkDdT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Yr2DkDdT .section-text {
  padding: 2rem 0;
}
.cid-s3Yr2DkDdT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Yr2DkDdT .inner-container {
    width: 100% !important;
  }
}
.cid-v6XleGitUA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6XleGitUA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XleGitUA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XleGitUA .row {
  justify-content: center;
}
.cid-v6XleGitUA .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XleGitUA .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XleGitUA .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XleGitUA .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XleGitUA .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XleGitUA .mbr-text_1,
.cid-v6XleGitUA .mbr-text_2,
.cid-v6XleGitUA .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XleGitUA .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XleGitUA .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XleGitUA .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XleGitUA .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XleGitUA .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XleGitUA .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XleGitUA .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XleGitUA .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XleGitUA .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XleGitUA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XleGitUA .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XleGitUA .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XleGitUA .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XlfQzzd2 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6XlfQzzd2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XlfQzzd2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XlfQzzd2 .row {
  justify-content: center;
}
.cid-v6XlfQzzd2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XlfQzzd2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XlfQzzd2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XlfQzzd2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XlfQzzd2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XlfQzzd2 .mbr-text_1,
.cid-v6XlfQzzd2 .mbr-text_2,
.cid-v6XlfQzzd2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XlfQzzd2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XlfQzzd2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XlfQzzd2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XlfQzzd2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XlfQzzd2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XlfQzzd2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XlfQzzd2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XlfQzzd2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XlfQzzd2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XlfQzzd2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XlfQzzd2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XlfQzzd2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XlfQzzd2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3Yr2E6O2A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Yr2E6O2A .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Yr2E6O2A .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s3Yr2E6O2A .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Yr2E6O2A .inner-container {
    width: 100% !important;
  }
}
.cid-v6Xlhmd3Jg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6Xlhmd3Jg .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6Xlhmd3Jg .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6Xlhmd3Jg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6Xlhmd3Jg .inner-container {
    width: 100% !important;
  }
}
.cid-s3Yr2EEz0p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Yr2EEz0p .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Yr2EEz0p .section-text {
  padding: 2rem 0;
}
.cid-s3Yr2EEz0p .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Yr2EEz0p .inner-container {
    width: 100% !important;
  }
}
.cid-uybdDRBJMz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybdDRBJMz .mbr-section-subtitle {
  color: #767676;
}
.cid-uybdDRBJMz .container-table {
  margin: 0 auto;
}
.cid-uybdDRBJMz .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybdDRBJMz .dataTables_wrapper {
  display: block;
}
.cid-uybdDRBJMz .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybdDRBJMz .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybdDRBJMz table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybdDRBJMz table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybdDRBJMz table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybdDRBJMz table td {
  border-top: 1px solid #232323;
}
.cid-uybdDRBJMz .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybdDRBJMz .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybdDRBJMz .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybdDRBJMz .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybdDRBJMz .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybdDRBJMz .dataTables_filter {
    text-align: center;
  }
  .cid-uybdDRBJMz .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybdDRBJMz .mbr-section-title {
  color: #ff3366;
}
.cid-uybdDRBJMz .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybdDRBJMz .body-item {
  text-align: center;
}
.cid-siR6PDj8WA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siR6RkeR0q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siR6RkeR0q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siR6RkeR0q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siR6RkeR0q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siR6RkeR0q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siR6RkeR0q .row > .row {
  display: block;
}
.cid-siR6RkeR0q .mbr-gallery-item {
  width: 100%;
}
.cid-siR6RkeR0q .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siR6RkeR0q .mbr-gallery-item > div {
  position: relative;
}
.cid-siR6RkeR0q .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siR6RkeR0q .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siR6RkeR0q .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siR6RkeR0q .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siR6VjqL2c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siR6WRtXOn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siR6WRtXOn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siR6WRtXOn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siR6WRtXOn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siR6WRtXOn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siR6WRtXOn .row > .row {
  display: block;
}
.cid-siR6WRtXOn .mbr-gallery-item {
  width: 100%;
}
.cid-siR6WRtXOn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siR6WRtXOn .mbr-gallery-item > div {
  position: relative;
}
.cid-siR6WRtXOn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siR6WRtXOn .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siR6WRtXOn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siR6WRtXOn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siR6YXO7Pi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siR70kHqeh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siR70kHqeh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siR70kHqeh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siR70kHqeh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siR70kHqeh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siR70kHqeh .row > .row {
  display: block;
}
.cid-siR70kHqeh .mbr-gallery-item {
  width: 100%;
}
.cid-siR70kHqeh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siR70kHqeh .mbr-gallery-item > div {
  position: relative;
}
.cid-siR70kHqeh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siR70kHqeh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siR70kHqeh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siR70kHqeh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siR71My0Rs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siR7352Nnh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siR7352Nnh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siR7352Nnh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siR7352Nnh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siR7352Nnh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siR7352Nnh .row > .row {
  display: block;
}
.cid-siR7352Nnh .mbr-gallery-item {
  width: 100%;
}
.cid-siR7352Nnh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siR7352Nnh .mbr-gallery-item > div {
  position: relative;
}
.cid-siR7352Nnh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siR7352Nnh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siR7352Nnh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siR7352Nnh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siR74kS3mK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siR759UzY6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siR759UzY6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siR759UzY6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siR759UzY6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siR759UzY6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siR759UzY6 .row > .row {
  display: block;
}
.cid-siR759UzY6 .mbr-gallery-item {
  width: 100%;
}
.cid-siR759UzY6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siR759UzY6 .mbr-gallery-item > div {
  position: relative;
}
.cid-siR759UzY6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siR759UzY6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siR759UzY6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siR759UzY6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siR77NQ6tt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siR79RsyZc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siR7aR9G1W {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siR7dLAv8W {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siR7eo9vEM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siR7eo9vEM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siR7eo9vEM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siR7eo9vEM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siR7eo9vEM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siR7eo9vEM .row > .row {
  display: block;
}
.cid-siR7eo9vEM .mbr-gallery-item {
  width: 100%;
}
.cid-siR7eo9vEM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siR7eo9vEM .mbr-gallery-item > div {
  position: relative;
}
.cid-siR7eo9vEM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siR7eo9vEM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siR7eo9vEM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siR7eo9vEM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siR7fugQIE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siR7g8Ucok {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siR7g8Ucok .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siR7g8Ucok .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siR7g8Ucok .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siR7g8Ucok .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siR7g8Ucok .row > .row {
  display: block;
}
.cid-siR7g8Ucok .mbr-gallery-item {
  width: 100%;
}
.cid-siR7g8Ucok .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siR7g8Ucok .mbr-gallery-item > div {
  position: relative;
}
.cid-siR7g8Ucok .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siR7g8Ucok .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siR7g8Ucok .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siR7g8Ucok .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siR7hb3uFT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siR7hQstOh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siR7hQstOh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siR7hQstOh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siR7hQstOh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siR7hQstOh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siR7hQstOh .row > .row {
  display: block;
}
.cid-siR7hQstOh .mbr-gallery-item {
  width: 100%;
}
.cid-siR7hQstOh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siR7hQstOh .mbr-gallery-item > div {
  position: relative;
}
.cid-siR7hQstOh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siR7hQstOh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siR7hQstOh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siR7hQstOh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siR7j1kqZT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siR7k7wSLG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siR7k7wSLG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siR7k7wSLG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siR7k7wSLG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siR7k7wSLG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siR7k7wSLG .row > .row {
  display: block;
}
.cid-siR7k7wSLG .mbr-gallery-item {
  width: 100%;
}
.cid-siR7k7wSLG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siR7k7wSLG .mbr-gallery-item > div {
  position: relative;
}
.cid-siR7k7wSLG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siR7k7wSLG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siR7k7wSLG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siR7k7wSLG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3Yr2M6TcU {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-s3Yr2M6TcU .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3Yr2M6TcU div.b {
  padding-top: 2rem;
}
.cid-s3Yr2M6TcU H5 {
  color: #232323;
}
.cid-s3Yra7epQC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Yra7epQC .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Yra7epQC .section-text {
  padding: 2rem 0;
}
.cid-s3Yra7epQC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Yra7epQC .inner-container {
    width: 100% !important;
  }
}
.cid-v6XmDGdHUN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6XmDGdHUN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XmDGdHUN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XmDGdHUN .row {
  justify-content: center;
}
.cid-v6XmDGdHUN .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XmDGdHUN .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XmDGdHUN .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XmDGdHUN .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XmDGdHUN .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XmDGdHUN .mbr-text_1,
.cid-v6XmDGdHUN .mbr-text_2,
.cid-v6XmDGdHUN .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XmDGdHUN .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XmDGdHUN .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XmDGdHUN .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XmDGdHUN .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XmDGdHUN .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XmDGdHUN .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XmDGdHUN .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XmDGdHUN .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XmDGdHUN .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XmDGdHUN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XmDGdHUN .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XmDGdHUN .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XmDGdHUN .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XmELwKxK {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6XmELwKxK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XmELwKxK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XmELwKxK .row {
  justify-content: center;
}
.cid-v6XmELwKxK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XmELwKxK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XmELwKxK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XmELwKxK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XmELwKxK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XmELwKxK .mbr-text_1,
.cid-v6XmELwKxK .mbr-text_2,
.cid-v6XmELwKxK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XmELwKxK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XmELwKxK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XmELwKxK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XmELwKxK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XmELwKxK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XmELwKxK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XmELwKxK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XmELwKxK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XmELwKxK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XmELwKxK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XmELwKxK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XmELwKxK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XmELwKxK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3Yra7YgN6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Yra7YgN6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Yra7YgN6 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s3Yra7YgN6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Yra7YgN6 .inner-container {
    width: 100% !important;
  }
}
.cid-v6XmBK6kuL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6XmBK6kuL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6XmBK6kuL .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6XmBK6kuL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6XmBK6kuL .inner-container {
    width: 100% !important;
  }
}
.cid-s3Yra8vV8r {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Yra8vV8r .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Yra8vV8r .section-text {
  padding: 2rem 0;
}
.cid-s3Yra8vV8r .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Yra8vV8r .inner-container {
    width: 100% !important;
  }
}
.cid-uybdLRFy4Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybdLRFy4Q .mbr-section-subtitle {
  color: #767676;
}
.cid-uybdLRFy4Q .container-table {
  margin: 0 auto;
}
.cid-uybdLRFy4Q .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybdLRFy4Q .dataTables_wrapper {
  display: block;
}
.cid-uybdLRFy4Q .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybdLRFy4Q .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybdLRFy4Q table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybdLRFy4Q table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybdLRFy4Q table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybdLRFy4Q table td {
  border-top: 1px solid #232323;
}
.cid-uybdLRFy4Q .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybdLRFy4Q .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybdLRFy4Q .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybdLRFy4Q .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybdLRFy4Q .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybdLRFy4Q .dataTables_filter {
    text-align: center;
  }
  .cid-uybdLRFy4Q .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybdLRFy4Q .mbr-section-title {
  color: #ff3366;
}
.cid-uybdLRFy4Q .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybdLRFy4Q .body-item {
  text-align: center;
}
.cid-siRI0SCCBU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siRI2Ia9J6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siRI2Ia9J6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siRI2Ia9J6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siRI2Ia9J6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siRI2Ia9J6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siRI2Ia9J6 .row > .row {
  display: block;
}
.cid-siRI2Ia9J6 .mbr-gallery-item {
  width: 100%;
}
.cid-siRI2Ia9J6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siRI2Ia9J6 .mbr-gallery-item > div {
  position: relative;
}
.cid-siRI2Ia9J6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siRI2Ia9J6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siRI2Ia9J6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siRI2Ia9J6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siRI4YWTIA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siRI6dSzyq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siRI6dSzyq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siRI6dSzyq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siRI6dSzyq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siRI6dSzyq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siRI6dSzyq .row > .row {
  display: block;
}
.cid-siRI6dSzyq .mbr-gallery-item {
  width: 100%;
}
.cid-siRI6dSzyq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siRI6dSzyq .mbr-gallery-item > div {
  position: relative;
}
.cid-siRI6dSzyq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siRI6dSzyq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siRI6dSzyq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siRI6dSzyq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siRI7tXYPf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siRI8QOsQL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siRI8QOsQL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siRI8QOsQL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siRI8QOsQL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siRI8QOsQL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siRI8QOsQL .row > .row {
  display: block;
}
.cid-siRI8QOsQL .mbr-gallery-item {
  width: 100%;
}
.cid-siRI8QOsQL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siRI8QOsQL .mbr-gallery-item > div {
  position: relative;
}
.cid-siRI8QOsQL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siRI8QOsQL .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siRI8QOsQL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siRI8QOsQL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siRIb641sW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siRIc9RjYJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siRIc9RjYJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siRIc9RjYJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siRIc9RjYJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siRIc9RjYJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siRIc9RjYJ .row > .row {
  display: block;
}
.cid-siRIc9RjYJ .mbr-gallery-item {
  width: 100%;
}
.cid-siRIc9RjYJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siRIc9RjYJ .mbr-gallery-item > div {
  position: relative;
}
.cid-siRIc9RjYJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siRIc9RjYJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siRIc9RjYJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siRIc9RjYJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siRIdLrz5T {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siRIeUtad2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siRIeUtad2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siRIeUtad2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siRIeUtad2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siRIeUtad2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siRIeUtad2 .row > .row {
  display: block;
}
.cid-siRIeUtad2 .mbr-gallery-item {
  width: 100%;
}
.cid-siRIeUtad2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siRIeUtad2 .mbr-gallery-item > div {
  position: relative;
}
.cid-siRIeUtad2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siRIeUtad2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siRIeUtad2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siRIeUtad2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siRIgm3g1p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siRIhpjz30 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siRIhpjz30 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siRIhpjz30 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siRIhpjz30 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siRIhpjz30 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siRIhpjz30 .row > .row {
  display: block;
}
.cid-siRIhpjz30 .mbr-gallery-item {
  width: 100%;
}
.cid-siRIhpjz30 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siRIhpjz30 .mbr-gallery-item > div {
  position: relative;
}
.cid-siRIhpjz30 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siRIhpjz30 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siRIhpjz30 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siRIhpjz30 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siRIkhP7UT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siRImeHQVW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siRIntBvs6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siRIntBvs6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siRIntBvs6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siRIntBvs6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siRIntBvs6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siRIntBvs6 .row > .row {
  display: block;
}
.cid-siRIntBvs6 .mbr-gallery-item {
  width: 100%;
}
.cid-siRIntBvs6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siRIntBvs6 .mbr-gallery-item > div {
  position: relative;
}
.cid-siRIntBvs6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siRIntBvs6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siRIntBvs6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siRIntBvs6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siRIp5aOI0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siRIpSCvrh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siRIpSCvrh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siRIpSCvrh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siRIpSCvrh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siRIpSCvrh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siRIpSCvrh .row > .row {
  display: block;
}
.cid-siRIpSCvrh .mbr-gallery-item {
  width: 100%;
}
.cid-siRIpSCvrh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siRIpSCvrh .mbr-gallery-item > div {
  position: relative;
}
.cid-siRIpSCvrh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siRIpSCvrh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siRIpSCvrh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siRIpSCvrh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siRIrsV7k1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siRIsjJuL1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siRIsjJuL1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siRIsjJuL1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siRIsjJuL1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siRIsjJuL1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siRIsjJuL1 .row > .row {
  display: block;
}
.cid-siRIsjJuL1 .mbr-gallery-item {
  width: 100%;
}
.cid-siRIsjJuL1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siRIsjJuL1 .mbr-gallery-item > div {
  position: relative;
}
.cid-siRIsjJuL1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siRIsjJuL1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siRIsjJuL1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siRIsjJuL1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siRItJQzAv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siRIuxNoTC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siRIuxNoTC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siRIuxNoTC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siRIuxNoTC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siRIuxNoTC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siRIuxNoTC .row > .row {
  display: block;
}
.cid-siRIuxNoTC .mbr-gallery-item {
  width: 100%;
}
.cid-siRIuxNoTC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siRIuxNoTC .mbr-gallery-item > div {
  position: relative;
}
.cid-siRIuxNoTC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siRIuxNoTC .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siRIuxNoTC .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siRIuxNoTC .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siRJoZ2toW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siRJq1XBPE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siRJq1XBPE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siRJq1XBPE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siRJq1XBPE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siRJq1XBPE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siRJq1XBPE .row > .row {
  display: block;
}
.cid-siRJq1XBPE .mbr-gallery-item {
  width: 100%;
}
.cid-siRJq1XBPE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siRJq1XBPE .mbr-gallery-item > div {
  position: relative;
}
.cid-siRJq1XBPE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siRJq1XBPE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siRJq1XBPE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siRJq1XBPE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3YragveyW {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-s3YragveyW .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3YragveyW div.b {
  padding-top: 2rem;
}
.cid-s3YragveyW H5 {
  color: #232323;
}
.cid-s3YrfxcNdn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrfxcNdn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YrfxcNdn .section-text {
  padding: 2rem 0;
}
.cid-s3YrfxcNdn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YrfxcNdn .inner-container {
    width: 100% !important;
  }
}
.cid-v6Xn4LNbC4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6Xn4LNbC4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Xn4LNbC4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Xn4LNbC4 .row {
  justify-content: center;
}
.cid-v6Xn4LNbC4 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Xn4LNbC4 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Xn4LNbC4 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Xn4LNbC4 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Xn4LNbC4 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Xn4LNbC4 .mbr-text_1,
.cid-v6Xn4LNbC4 .mbr-text_2,
.cid-v6Xn4LNbC4 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Xn4LNbC4 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xn4LNbC4 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xn4LNbC4 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xn4LNbC4 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xn4LNbC4 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xn4LNbC4 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xn4LNbC4 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Xn4LNbC4 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xn4LNbC4 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xn4LNbC4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Xn4LNbC4 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Xn4LNbC4 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Xn4LNbC4 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6Xn5Llw3G {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6Xn5Llw3G .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Xn5Llw3G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Xn5Llw3G .row {
  justify-content: center;
}
.cid-v6Xn5Llw3G .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Xn5Llw3G .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Xn5Llw3G .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Xn5Llw3G .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Xn5Llw3G .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Xn5Llw3G .mbr-text_1,
.cid-v6Xn5Llw3G .mbr-text_2,
.cid-v6Xn5Llw3G .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Xn5Llw3G .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xn5Llw3G .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xn5Llw3G .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xn5Llw3G .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xn5Llw3G .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xn5Llw3G .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xn5Llw3G .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Xn5Llw3G .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xn5Llw3G .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xn5Llw3G .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Xn5Llw3G .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Xn5Llw3G .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Xn5Llw3G .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3YrfxWtgE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrfxWtgE .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YrfxWtgE .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s3YrfxWtgE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YrfxWtgE .inner-container {
    width: 100% !important;
  }
}
.cid-v6Xn6OMKGK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6Xn6OMKGK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6Xn6OMKGK .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6Xn6OMKGK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6Xn6OMKGK .inner-container {
    width: 100% !important;
  }
}
.cid-s3YrfyGE9B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrfyGE9B .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YrfyGE9B .section-text {
  padding: 2rem 0;
}
.cid-s3YrfyGE9B .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YrfyGE9B .inner-container {
    width: 100% !important;
  }
}
.cid-uybdTOWjwW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybdTOWjwW .mbr-section-subtitle {
  color: #767676;
}
.cid-uybdTOWjwW .container-table {
  margin: 0 auto;
}
.cid-uybdTOWjwW .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybdTOWjwW .dataTables_wrapper {
  display: block;
}
.cid-uybdTOWjwW .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybdTOWjwW .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybdTOWjwW table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybdTOWjwW table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybdTOWjwW table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybdTOWjwW table td {
  border-top: 1px solid #232323;
}
.cid-uybdTOWjwW .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybdTOWjwW .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybdTOWjwW .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybdTOWjwW .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybdTOWjwW .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybdTOWjwW .dataTables_filter {
    text-align: center;
  }
  .cid-uybdTOWjwW .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybdTOWjwW .mbr-section-title {
  color: #ff3366;
}
.cid-uybdTOWjwW .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybdTOWjwW .body-item {
  text-align: center;
}
.cid-siS6irgkKY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siS6JILGds {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siS6JILGds .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siS6JILGds .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siS6JILGds .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siS6JILGds .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siS6JILGds .row > .row {
  display: block;
}
.cid-siS6JILGds .mbr-gallery-item {
  width: 100%;
}
.cid-siS6JILGds .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siS6JILGds .mbr-gallery-item > div {
  position: relative;
}
.cid-siS6JILGds .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siS6JILGds .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siS6JILGds .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siS6JILGds .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siS6kbTEqD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siS6KBSrOe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siS6KBSrOe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siS6KBSrOe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siS6KBSrOe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siS6KBSrOe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siS6KBSrOe .row > .row {
  display: block;
}
.cid-siS6KBSrOe .mbr-gallery-item {
  width: 100%;
}
.cid-siS6KBSrOe .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siS6KBSrOe .mbr-gallery-item > div {
  position: relative;
}
.cid-siS6KBSrOe .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siS6KBSrOe .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siS6KBSrOe .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siS6KBSrOe .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siS6nPahJd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siS6LBp9oe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siS6LBp9oe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siS6LBp9oe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siS6LBp9oe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siS6LBp9oe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siS6LBp9oe .row > .row {
  display: block;
}
.cid-siS6LBp9oe .mbr-gallery-item {
  width: 100%;
}
.cid-siS6LBp9oe .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siS6LBp9oe .mbr-gallery-item > div {
  position: relative;
}
.cid-siS6LBp9oe .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siS6LBp9oe .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siS6LBp9oe .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siS6LBp9oe .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siS6oWUsgs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siS6MoeA47 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siS6MoeA47 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siS6MoeA47 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siS6MoeA47 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siS6MoeA47 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siS6MoeA47 .row > .row {
  display: block;
}
.cid-siS6MoeA47 .mbr-gallery-item {
  width: 100%;
}
.cid-siS6MoeA47 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siS6MoeA47 .mbr-gallery-item > div {
  position: relative;
}
.cid-siS6MoeA47 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siS6MoeA47 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siS6MoeA47 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siS6MoeA47 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siS6pZgrTn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siS6NglPhO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siS6NglPhO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siS6NglPhO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siS6NglPhO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siS6NglPhO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siS6NglPhO .row > .row {
  display: block;
}
.cid-siS6NglPhO .mbr-gallery-item {
  width: 100%;
}
.cid-siS6NglPhO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siS6NglPhO .mbr-gallery-item > div {
  position: relative;
}
.cid-siS6NglPhO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siS6NglPhO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siS6NglPhO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siS6NglPhO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siS6qX481S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siS6s6UseF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siS6sUlOQ5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siSbWBsFOi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siSbWBsFOi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siSbWBsFOi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siSbWBsFOi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siSbWBsFOi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siSbWBsFOi .row > .row {
  display: block;
}
.cid-siSbWBsFOi .mbr-gallery-item {
  width: 100%;
}
.cid-siSbWBsFOi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siSbWBsFOi .mbr-gallery-item > div {
  position: relative;
}
.cid-siSbWBsFOi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siSbWBsFOi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siSbWBsFOi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siSbWBsFOi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siS6tN2udy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siSd82HNBq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siSd82HNBq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siSd82HNBq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siSd82HNBq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siSd82HNBq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siSd82HNBq .row > .row {
  display: block;
}
.cid-siSd82HNBq .mbr-gallery-item {
  width: 100%;
}
.cid-siSd82HNBq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siSd82HNBq .mbr-gallery-item > div {
  position: relative;
}
.cid-siSd82HNBq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siSd82HNBq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siSd82HNBq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siSd82HNBq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siS6voZQlG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siSer285h9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siSer285h9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siSer285h9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siSer285h9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siSer285h9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siSer285h9 .row > .row {
  display: block;
}
.cid-siSer285h9 .mbr-gallery-item {
  width: 100%;
}
.cid-siSer285h9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siSer285h9 .mbr-gallery-item > div {
  position: relative;
}
.cid-siSer285h9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siSer285h9 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siSer285h9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siSer285h9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siS6wmZ1tC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siSerIYA7q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siSerIYA7q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siSerIYA7q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siSerIYA7q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siSerIYA7q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siSerIYA7q .row > .row {
  display: block;
}
.cid-siSerIYA7q .mbr-gallery-item {
  width: 100%;
}
.cid-siSerIYA7q .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siSerIYA7q .mbr-gallery-item > div {
  position: relative;
}
.cid-siSerIYA7q .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siSerIYA7q .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siSerIYA7q .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siSerIYA7q .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siSf5lboBV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siSfJHGl9O {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siSfJHGl9O .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siSfJHGl9O .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siSfJHGl9O .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siSfJHGl9O .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siSfJHGl9O .row > .row {
  display: block;
}
.cid-siSfJHGl9O .mbr-gallery-item {
  width: 100%;
}
.cid-siSfJHGl9O .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siSfJHGl9O .mbr-gallery-item > div {
  position: relative;
}
.cid-siSfJHGl9O .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siSfJHGl9O .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siSfJHGl9O .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siSfJHGl9O .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3YrfGzOAQ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-s3YrfGzOAQ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3YrfGzOAQ div.b {
  padding-top: 2rem;
}
.cid-s3YrfGzOAQ H5 {
  color: #232323;
}
.cid-s3YrlgBvGD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrlgBvGD .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YrlgBvGD .section-text {
  padding: 2rem 0;
}
.cid-s3YrlgBvGD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YrlgBvGD .inner-container {
    width: 100% !important;
  }
}
.cid-v6Xo4TaFrq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6Xo4TaFrq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Xo4TaFrq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Xo4TaFrq .row {
  justify-content: center;
}
.cid-v6Xo4TaFrq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Xo4TaFrq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Xo4TaFrq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Xo4TaFrq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Xo4TaFrq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Xo4TaFrq .mbr-text_1,
.cid-v6Xo4TaFrq .mbr-text_2,
.cid-v6Xo4TaFrq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Xo4TaFrq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xo4TaFrq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xo4TaFrq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xo4TaFrq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xo4TaFrq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xo4TaFrq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xo4TaFrq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Xo4TaFrq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xo4TaFrq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xo4TaFrq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Xo4TaFrq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Xo4TaFrq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Xo4TaFrq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6Xo5W1Oef {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6Xo5W1Oef .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Xo5W1Oef .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Xo5W1Oef .row {
  justify-content: center;
}
.cid-v6Xo5W1Oef .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Xo5W1Oef .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Xo5W1Oef .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Xo5W1Oef .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Xo5W1Oef .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Xo5W1Oef .mbr-text_1,
.cid-v6Xo5W1Oef .mbr-text_2,
.cid-v6Xo5W1Oef .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Xo5W1Oef .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xo5W1Oef .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xo5W1Oef .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xo5W1Oef .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xo5W1Oef .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xo5W1Oef .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xo5W1Oef .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Xo5W1Oef .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xo5W1Oef .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xo5W1Oef .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Xo5W1Oef .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Xo5W1Oef .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Xo5W1Oef .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3Yrlhj4lb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Yrlhj4lb .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Yrlhj4lb .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s3Yrlhj4lb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Yrlhj4lb .inner-container {
    width: 100% !important;
  }
}
.cid-v6Xo707qoX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6Xo707qoX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6Xo707qoX .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6Xo707qoX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6Xo707qoX .inner-container {
    width: 100% !important;
  }
}
.cid-s3YrlhR7VK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrlhR7VK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YrlhR7VK .section-text {
  padding: 2rem 0;
}
.cid-s3YrlhR7VK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YrlhR7VK .inner-container {
    width: 100% !important;
  }
}
.cid-uybe1Hyqbb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybe1Hyqbb .mbr-section-subtitle {
  color: #767676;
}
.cid-uybe1Hyqbb .container-table {
  margin: 0 auto;
}
.cid-uybe1Hyqbb .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybe1Hyqbb .dataTables_wrapper {
  display: block;
}
.cid-uybe1Hyqbb .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybe1Hyqbb .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybe1Hyqbb table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybe1Hyqbb table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybe1Hyqbb table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybe1Hyqbb table td {
  border-top: 1px solid #232323;
}
.cid-uybe1Hyqbb .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybe1Hyqbb .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybe1Hyqbb .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybe1Hyqbb .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybe1Hyqbb .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybe1Hyqbb .dataTables_filter {
    text-align: center;
  }
  .cid-uybe1Hyqbb .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybe1Hyqbb .mbr-section-title {
  color: #ff3366;
}
.cid-uybe1Hyqbb .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybe1Hyqbb .body-item {
  text-align: center;
}
.cid-siWs745QWu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWu5ujwnh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWu5ujwnh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWu5ujwnh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWu5ujwnh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWu5ujwnh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWu5ujwnh .row > .row {
  display: block;
}
.cid-siWu5ujwnh .mbr-gallery-item {
  width: 100%;
}
.cid-siWu5ujwnh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWu5ujwnh .mbr-gallery-item > div {
  position: relative;
}
.cid-siWu5ujwnh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWu5ujwnh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWu5ujwnh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWu5ujwnh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWs9yTqd8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWuLvtbVP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWuLvtbVP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWuLvtbVP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWuLvtbVP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWuLvtbVP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWuLvtbVP .row > .row {
  display: block;
}
.cid-siWuLvtbVP .mbr-gallery-item {
  width: 100%;
}
.cid-siWuLvtbVP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWuLvtbVP .mbr-gallery-item > div {
  position: relative;
}
.cid-siWuLvtbVP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWuLvtbVP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWuLvtbVP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWuLvtbVP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWsbuG2nt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWuRQierA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWuRQierA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWuRQierA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWuRQierA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWuRQierA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWuRQierA .row > .row {
  display: block;
}
.cid-siWuRQierA .mbr-gallery-item {
  width: 100%;
}
.cid-siWuRQierA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWuRQierA .mbr-gallery-item > div {
  position: relative;
}
.cid-siWuRQierA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWuRQierA .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWuRQierA .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWuRQierA .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWsdbbWiU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWuSTeVjy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWuSTeVjy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWuSTeVjy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWuSTeVjy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWuSTeVjy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWuSTeVjy .row > .row {
  display: block;
}
.cid-siWuSTeVjy .mbr-gallery-item {
  width: 100%;
}
.cid-siWuSTeVjy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWuSTeVjy .mbr-gallery-item > div {
  position: relative;
}
.cid-siWuSTeVjy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWuSTeVjy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWuSTeVjy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWuSTeVjy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWscjJLZr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWuXFT75C {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWuXFT75C .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWuXFT75C .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWuXFT75C .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWuXFT75C .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWuXFT75C .row > .row {
  display: block;
}
.cid-siWuXFT75C .mbr-gallery-item {
  width: 100%;
}
.cid-siWuXFT75C .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWuXFT75C .mbr-gallery-item > div {
  position: relative;
}
.cid-siWuXFT75C .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWuXFT75C .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWuXFT75C .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWuXFT75C .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWsh43u0T {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWseB9OIW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWsfrzg6F {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWuYJduYO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWuYJduYO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWuYJduYO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWuYJduYO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWuYJduYO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWuYJduYO .row > .row {
  display: block;
}
.cid-siWuYJduYO .mbr-gallery-item {
  width: 100%;
}
.cid-siWuYJduYO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWuYJduYO .mbr-gallery-item > div {
  position: relative;
}
.cid-siWuYJduYO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWuYJduYO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWuYJduYO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWuYJduYO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWsdNEKXA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWv3GhGum {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWv3GhGum .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWv3GhGum .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWv3GhGum .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWv3GhGum .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWv3GhGum .row > .row {
  display: block;
}
.cid-siWv3GhGum .mbr-gallery-item {
  width: 100%;
}
.cid-siWv3GhGum .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWv3GhGum .mbr-gallery-item > div {
  position: relative;
}
.cid-siWv3GhGum .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWv3GhGum .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWv3GhGum .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWv3GhGum .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWsgfoPYR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWv1XiJUF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWv1XiJUF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWv1XiJUF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWv1XiJUF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWv1XiJUF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWv1XiJUF .row > .row {
  display: block;
}
.cid-siWv1XiJUF .mbr-gallery-item {
  width: 100%;
}
.cid-siWv1XiJUF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWv1XiJUF .mbr-gallery-item > div {
  position: relative;
}
.cid-siWv1XiJUF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWv1XiJUF .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWv1XiJUF .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWv1XiJUF .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWsaFmXAo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWv53LkSj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWv53LkSj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWv53LkSj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWv53LkSj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWv53LkSj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWv53LkSj .row > .row {
  display: block;
}
.cid-siWv53LkSj .mbr-gallery-item {
  width: 100%;
}
.cid-siWv53LkSj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWv53LkSj .mbr-gallery-item > div {
  position: relative;
}
.cid-siWv53LkSj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWv53LkSj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWv53LkSj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWv53LkSj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWs8t90T9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWv6biNHX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWv6biNHX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWv6biNHX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWv6biNHX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWv6biNHX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWv6biNHX .row > .row {
  display: block;
}
.cid-siWv6biNHX .mbr-gallery-item {
  width: 100%;
}
.cid-siWv6biNHX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWv6biNHX .mbr-gallery-item > div {
  position: relative;
}
.cid-siWv6biNHX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWv6biNHX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWv6biNHX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWv6biNHX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3YrlpEkrv {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-s3YrlpEkrv .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3YrlpEkrv div.b {
  padding-top: 2rem;
}
.cid-s3YrlpEkrv H5 {
  color: #232323;
}
.cid-s3Yrrliaho {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Yrrliaho .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Yrrliaho .section-text {
  padding: 2rem 0;
}
.cid-s3Yrrliaho .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Yrrliaho .inner-container {
    width: 100% !important;
  }
}
.cid-v6Xoy5OPc4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6Xoy5OPc4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Xoy5OPc4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Xoy5OPc4 .row {
  justify-content: center;
}
.cid-v6Xoy5OPc4 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Xoy5OPc4 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Xoy5OPc4 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Xoy5OPc4 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Xoy5OPc4 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Xoy5OPc4 .mbr-text_1,
.cid-v6Xoy5OPc4 .mbr-text_2,
.cid-v6Xoy5OPc4 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Xoy5OPc4 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xoy5OPc4 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xoy5OPc4 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xoy5OPc4 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xoy5OPc4 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xoy5OPc4 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xoy5OPc4 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Xoy5OPc4 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xoy5OPc4 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xoy5OPc4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Xoy5OPc4 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Xoy5OPc4 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Xoy5OPc4 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6Xoz54oXH {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6Xoz54oXH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Xoz54oXH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Xoz54oXH .row {
  justify-content: center;
}
.cid-v6Xoz54oXH .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Xoz54oXH .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Xoz54oXH .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Xoz54oXH .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Xoz54oXH .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Xoz54oXH .mbr-text_1,
.cid-v6Xoz54oXH .mbr-text_2,
.cid-v6Xoz54oXH .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Xoz54oXH .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xoz54oXH .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xoz54oXH .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xoz54oXH .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xoz54oXH .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xoz54oXH .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xoz54oXH .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Xoz54oXH .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xoz54oXH .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xoz54oXH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Xoz54oXH .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Xoz54oXH .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Xoz54oXH .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3Yrrm1CzK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Yrrm1CzK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Yrrm1CzK .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s3Yrrm1CzK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Yrrm1CzK .inner-container {
    width: 100% !important;
  }
}
.cid-v6XoAfnefC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6XoAfnefC .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6XoAfnefC .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6XoAfnefC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6XoAfnefC .inner-container {
    width: 100% !important;
  }
}
.cid-s3Yrrmybu0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Yrrmybu0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Yrrmybu0 .section-text {
  padding: 2rem 0;
}
.cid-s3Yrrmybu0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Yrrmybu0 .inner-container {
    width: 100% !important;
  }
}
.cid-uybeqeIXJ1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybeqeIXJ1 .mbr-section-subtitle {
  color: #767676;
}
.cid-uybeqeIXJ1 .container-table {
  margin: 0 auto;
}
.cid-uybeqeIXJ1 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybeqeIXJ1 .dataTables_wrapper {
  display: block;
}
.cid-uybeqeIXJ1 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybeqeIXJ1 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybeqeIXJ1 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybeqeIXJ1 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybeqeIXJ1 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybeqeIXJ1 table td {
  border-top: 1px solid #232323;
}
.cid-uybeqeIXJ1 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybeqeIXJ1 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybeqeIXJ1 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybeqeIXJ1 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybeqeIXJ1 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybeqeIXJ1 .dataTables_filter {
    text-align: center;
  }
  .cid-uybeqeIXJ1 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybeqeIXJ1 .mbr-section-title {
  color: #ff3366;
}
.cid-uybeqeIXJ1 .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybeqeIXJ1 .body-item {
  text-align: center;
}
.cid-siWAu1Sero {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWCaLnLKi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWCaLnLKi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWCaLnLKi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWCaLnLKi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWCaLnLKi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWCaLnLKi .row > .row {
  display: block;
}
.cid-siWCaLnLKi .mbr-gallery-item {
  width: 100%;
}
.cid-siWCaLnLKi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWCaLnLKi .mbr-gallery-item > div {
  position: relative;
}
.cid-siWCaLnLKi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWCaLnLKi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWCaLnLKi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWCaLnLKi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWABPDsJd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWCcA3g1S {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWCcA3g1S .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWCcA3g1S .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWCcA3g1S .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWCcA3g1S .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWCcA3g1S .row > .row {
  display: block;
}
.cid-siWCcA3g1S .mbr-gallery-item {
  width: 100%;
}
.cid-siWCcA3g1S .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWCcA3g1S .mbr-gallery-item > div {
  position: relative;
}
.cid-siWCcA3g1S .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWCcA3g1S .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWCcA3g1S .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWCcA3g1S .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWACGH9Zs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWCe7P77W {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWCe7P77W .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWCe7P77W .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWCe7P77W .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWCe7P77W .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWCe7P77W .row > .row {
  display: block;
}
.cid-siWCe7P77W .mbr-gallery-item {
  width: 100%;
}
.cid-siWCe7P77W .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWCe7P77W .mbr-gallery-item > div {
  position: relative;
}
.cid-siWCe7P77W .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWCe7P77W .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWCe7P77W .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWCe7P77W .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWAw1oyZF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWCf0TeBO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWCf0TeBO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWCf0TeBO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWCf0TeBO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWCf0TeBO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWCf0TeBO .row > .row {
  display: block;
}
.cid-siWCf0TeBO .mbr-gallery-item {
  width: 100%;
}
.cid-siWCf0TeBO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWCf0TeBO .mbr-gallery-item > div {
  position: relative;
}
.cid-siWCf0TeBO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWCf0TeBO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWCf0TeBO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWCf0TeBO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWAxps4YD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWCgho8Jh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWCgho8Jh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWCgho8Jh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWCgho8Jh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWCgho8Jh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWCgho8Jh .row > .row {
  display: block;
}
.cid-siWCgho8Jh .mbr-gallery-item {
  width: 100%;
}
.cid-siWCgho8Jh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWCgho8Jh .mbr-gallery-item > div {
  position: relative;
}
.cid-siWCgho8Jh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWCgho8Jh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWCgho8Jh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWCgho8Jh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWADxRfFV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWChukgTs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWChukgTs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWChukgTs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWChukgTs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWChukgTs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWChukgTs .row > .row {
  display: block;
}
.cid-siWChukgTs .mbr-gallery-item {
  width: 100%;
}
.cid-siWChukgTs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWChukgTs .mbr-gallery-item > div {
  position: relative;
}
.cid-siWChukgTs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWChukgTs .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWChukgTs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWChukgTs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWAAY7l84 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWAGVvztR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWCixokVL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWCixokVL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWCixokVL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWCixokVL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWCixokVL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWCixokVL .row > .row {
  display: block;
}
.cid-siWCixokVL .mbr-gallery-item {
  width: 100%;
}
.cid-siWCixokVL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWCixokVL .mbr-gallery-item > div {
  position: relative;
}
.cid-siWCixokVL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWCixokVL .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWCixokVL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWCixokVL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWAHKILsw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWCjwkEcs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWCjwkEcs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWCjwkEcs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWCjwkEcs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWCjwkEcs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWCjwkEcs .row > .row {
  display: block;
}
.cid-siWCjwkEcs .mbr-gallery-item {
  width: 100%;
}
.cid-siWCjwkEcs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWCjwkEcs .mbr-gallery-item > div {
  position: relative;
}
.cid-siWCjwkEcs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWCjwkEcs .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWCjwkEcs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWCjwkEcs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWAyFUB3w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWCku4vzX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWCku4vzX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWCku4vzX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWCku4vzX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWCku4vzX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWCku4vzX .row > .row {
  display: block;
}
.cid-siWCku4vzX .mbr-gallery-item {
  width: 100%;
}
.cid-siWCku4vzX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWCku4vzX .mbr-gallery-item > div {
  position: relative;
}
.cid-siWCku4vzX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWCku4vzX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWCku4vzX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWCku4vzX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWAEKJ5C4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWCoPOawe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWCoPOawe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWCoPOawe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWCoPOawe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWCoPOawe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWCoPOawe .row > .row {
  display: block;
}
.cid-siWCoPOawe .mbr-gallery-item {
  width: 100%;
}
.cid-siWCoPOawe .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWCoPOawe .mbr-gallery-item > div {
  position: relative;
}
.cid-siWCoPOawe .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWCoPOawe .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWCoPOawe .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWCoPOawe .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-siWAzT97z2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-siWClsDcbd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-siWClsDcbd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siWClsDcbd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siWClsDcbd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siWClsDcbd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siWClsDcbd .row > .row {
  display: block;
}
.cid-siWClsDcbd .mbr-gallery-item {
  width: 100%;
}
.cid-siWClsDcbd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siWClsDcbd .mbr-gallery-item > div {
  position: relative;
}
.cid-siWClsDcbd .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siWClsDcbd .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siWClsDcbd .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siWClsDcbd .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3Yrruurzp {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-s3Yrruurzp .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3Yrruurzp div.b {
  padding-top: 2rem;
}
.cid-s3Yrruurzp H5 {
  color: #232323;
}
.cid-uybenF7osg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybenF7osg .mbr-section-subtitle {
  color: #767676;
}
.cid-uybenF7osg .container-table {
  margin: 0 auto;
}
.cid-uybenF7osg .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybenF7osg .dataTables_wrapper {
  display: block;
}
.cid-uybenF7osg .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybenF7osg .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybenF7osg table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybenF7osg table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybenF7osg table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybenF7osg table td {
  border-top: 1px solid #232323;
}
.cid-uybenF7osg .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybenF7osg .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybenF7osg .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybenF7osg .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybenF7osg .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybenF7osg .dataTables_filter {
    text-align: center;
  }
  .cid-uybenF7osg .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybenF7osg .mbr-section-title {
  color: #ff3366;
}
.cid-uybenF7osg .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybenF7osg .body-item {
  text-align: center;
}
.cid-s3Yrx8fOXL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Yrx8fOXL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Yrx8fOXL .section-text {
  padding: 2rem 0;
}
.cid-s3Yrx8fOXL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Yrx8fOXL .inner-container {
    width: 100% !important;
  }
}
.cid-v6XpAHnd9b {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6XpAHnd9b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XpAHnd9b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XpAHnd9b .row {
  justify-content: center;
}
.cid-v6XpAHnd9b .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XpAHnd9b .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XpAHnd9b .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XpAHnd9b .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XpAHnd9b .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XpAHnd9b .mbr-text_1,
.cid-v6XpAHnd9b .mbr-text_2,
.cid-v6XpAHnd9b .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XpAHnd9b .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XpAHnd9b .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XpAHnd9b .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XpAHnd9b .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XpAHnd9b .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XpAHnd9b .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XpAHnd9b .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XpAHnd9b .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XpAHnd9b .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XpAHnd9b .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XpAHnd9b .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XpAHnd9b .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XpAHnd9b .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XpBx95nW {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6XpBx95nW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XpBx95nW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XpBx95nW .row {
  justify-content: center;
}
.cid-v6XpBx95nW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XpBx95nW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XpBx95nW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XpBx95nW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XpBx95nW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XpBx95nW .mbr-text_1,
.cid-v6XpBx95nW .mbr-text_2,
.cid-v6XpBx95nW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XpBx95nW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XpBx95nW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XpBx95nW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XpBx95nW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XpBx95nW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XpBx95nW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XpBx95nW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XpBx95nW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XpBx95nW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XpBx95nW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XpBx95nW .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XpBx95nW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XpBx95nW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3Yrx918iq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Yrx918iq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Yrx918iq .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s3Yrx918iq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Yrx918iq .inner-container {
    width: 100% !important;
  }
}
.cid-v6XpCq963X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6XpCq963X .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6XpCq963X .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6XpCq963X .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6XpCq963X .inner-container {
    width: 100% !important;
  }
}
.cid-s3Yrx9zRxV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3Yrx9zRxV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3Yrx9zRxV .section-text {
  padding: 2rem 0;
}
.cid-s3Yrx9zRxV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3Yrx9zRxV .inner-container {
    width: 100% !important;
  }
}
.cid-uybey4Z6hA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybey4Z6hA .mbr-section-subtitle {
  color: #767676;
}
.cid-uybey4Z6hA .container-table {
  margin: 0 auto;
}
.cid-uybey4Z6hA .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybey4Z6hA .dataTables_wrapper {
  display: block;
}
.cid-uybey4Z6hA .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybey4Z6hA .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybey4Z6hA table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybey4Z6hA table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybey4Z6hA table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybey4Z6hA table td {
  border-top: 1px solid #232323;
}
.cid-uybey4Z6hA .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybey4Z6hA .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybey4Z6hA .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybey4Z6hA .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybey4Z6hA .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybey4Z6hA .dataTables_filter {
    text-align: center;
  }
  .cid-uybey4Z6hA .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybey4Z6hA .mbr-section-title {
  color: #ff3366;
}
.cid-uybey4Z6hA .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybey4Z6hA .body-item {
  text-align: center;
}
.cid-sjBbZyPhHE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBcc1VIfu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBcc1VIfu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBcc1VIfu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBcc1VIfu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBcc1VIfu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBcc1VIfu .row > .row {
  display: block;
}
.cid-sjBcc1VIfu .mbr-gallery-item {
  width: 100%;
}
.cid-sjBcc1VIfu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBcc1VIfu .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBcc1VIfu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBcc1VIfu .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBcc1VIfu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBcc1VIfu .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBc0Wp1IV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBcfkXXh2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBcfkXXh2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBcfkXXh2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBcfkXXh2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBcfkXXh2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBcfkXXh2 .row > .row {
  display: block;
}
.cid-sjBcfkXXh2 .mbr-gallery-item {
  width: 100%;
}
.cid-sjBcfkXXh2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBcfkXXh2 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBcfkXXh2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBcfkXXh2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBcfkXXh2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBcfkXXh2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBc5Bo4Ow {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBcgCkwDE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBcgCkwDE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBcgCkwDE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBcgCkwDE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBcgCkwDE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBcgCkwDE .row > .row {
  display: block;
}
.cid-sjBcgCkwDE .mbr-gallery-item {
  width: 100%;
}
.cid-sjBcgCkwDE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBcgCkwDE .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBcgCkwDE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBcgCkwDE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBcgCkwDE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBcgCkwDE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBc3aYxV4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBchCjoqX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBchCjoqX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBchCjoqX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBchCjoqX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBchCjoqX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBchCjoqX .row > .row {
  display: block;
}
.cid-sjBchCjoqX .mbr-gallery-item {
  width: 100%;
}
.cid-sjBchCjoqX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBchCjoqX .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBchCjoqX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBchCjoqX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBchCjoqX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBchCjoqX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBc3ZVJ4t {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBciDNzPx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBciDNzPx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBciDNzPx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBciDNzPx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBciDNzPx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBciDNzPx .row > .row {
  display: block;
}
.cid-sjBciDNzPx .mbr-gallery-item {
  width: 100%;
}
.cid-sjBciDNzPx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBciDNzPx .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBciDNzPx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBciDNzPx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBciDNzPx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBciDNzPx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBc7RiT4K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBcjziozZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBcjziozZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBcjziozZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBcjziozZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBcjziozZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBcjziozZ .row > .row {
  display: block;
}
.cid-sjBcjziozZ .mbr-gallery-item {
  width: 100%;
}
.cid-sjBcjziozZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBcjziozZ .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBcjziozZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBcjziozZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBcjziozZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBcjziozZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBc73dNcE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBc4Nj0FR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBclzh1um {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBclzh1um .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBclzh1um .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBclzh1um .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBclzh1um .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBclzh1um .row > .row {
  display: block;
}
.cid-sjBclzh1um .mbr-gallery-item {
  width: 100%;
}
.cid-sjBclzh1um .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBclzh1um .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBclzh1um .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBclzh1um .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBclzh1um .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBclzh1um .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBc8xVkSx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBcmH664m {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBcmH664m .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBcmH664m .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBcmH664m .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBcmH664m .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBcmH664m .row > .row {
  display: block;
}
.cid-sjBcmH664m .mbr-gallery-item {
  width: 100%;
}
.cid-sjBcmH664m .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBcmH664m .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBcmH664m .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBcmH664m .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBcmH664m .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBcmH664m .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBc9p1yXd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBcnsgZkZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBcnsgZkZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBcnsgZkZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBcnsgZkZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBcnsgZkZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBcnsgZkZ .row > .row {
  display: block;
}
.cid-sjBcnsgZkZ .mbr-gallery-item {
  width: 100%;
}
.cid-sjBcnsgZkZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBcnsgZkZ .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBcnsgZkZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBcnsgZkZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBcnsgZkZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBcnsgZkZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBc6llLC3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBcopb6VD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBcopb6VD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBcopb6VD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBcopb6VD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBcopb6VD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBcopb6VD .row > .row {
  display: block;
}
.cid-sjBcopb6VD .mbr-gallery-item {
  width: 100%;
}
.cid-sjBcopb6VD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBcopb6VD .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBcopb6VD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBcopb6VD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBcopb6VD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBcopb6VD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBc27mssM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBcprVens {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBcprVens .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBcprVens .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBcprVens .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBcprVens .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBcprVens .row > .row {
  display: block;
}
.cid-sjBcprVens .mbr-gallery-item {
  width: 100%;
}
.cid-sjBcprVens .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBcprVens .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBcprVens .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBcprVens .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBcprVens .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBcprVens .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3YrxhEulJ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-s3YrxhEulJ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3YrxhEulJ div.b {
  padding-top: 2rem;
}
.cid-s3YrxhEulJ H5 {
  color: #232323;
}
.cid-s3YrDkQ68B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrDkQ68B .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YrDkQ68B .section-text {
  padding: 2rem 0;
}
.cid-s3YrDkQ68B .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YrDkQ68B .inner-container {
    width: 100% !important;
  }
}
.cid-v6XqkAutvS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6XqkAutvS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XqkAutvS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XqkAutvS .row {
  justify-content: center;
}
.cid-v6XqkAutvS .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XqkAutvS .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XqkAutvS .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XqkAutvS .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XqkAutvS .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XqkAutvS .mbr-text_1,
.cid-v6XqkAutvS .mbr-text_2,
.cid-v6XqkAutvS .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XqkAutvS .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XqkAutvS .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XqkAutvS .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XqkAutvS .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XqkAutvS .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XqkAutvS .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XqkAutvS .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XqkAutvS .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XqkAutvS .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XqkAutvS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XqkAutvS .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XqkAutvS .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XqkAutvS .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XqlQoozN {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6XqlQoozN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XqlQoozN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XqlQoozN .row {
  justify-content: center;
}
.cid-v6XqlQoozN .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XqlQoozN .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XqlQoozN .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XqlQoozN .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XqlQoozN .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XqlQoozN .mbr-text_1,
.cid-v6XqlQoozN .mbr-text_2,
.cid-v6XqlQoozN .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XqlQoozN .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XqlQoozN .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XqlQoozN .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XqlQoozN .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XqlQoozN .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XqlQoozN .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XqlQoozN .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XqlQoozN .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XqlQoozN .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XqlQoozN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XqlQoozN .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XqlQoozN .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XqlQoozN .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3YrDlBaRf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrDlBaRf .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YrDlBaRf .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s3YrDlBaRf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YrDlBaRf .inner-container {
    width: 100% !important;
  }
}
.cid-v6Xqj2mOvk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6Xqj2mOvk .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6Xqj2mOvk .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6Xqj2mOvk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6Xqj2mOvk .inner-container {
    width: 100% !important;
  }
}
.cid-s3YrDm9h7K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrDm9h7K .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YrDm9h7K .section-text {
  padding: 2rem 0;
}
.cid-s3YrDm9h7K .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YrDm9h7K .inner-container {
    width: 100% !important;
  }
}
.cid-uybeFxLgQb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybeFxLgQb .mbr-section-subtitle {
  color: #767676;
}
.cid-uybeFxLgQb .container-table {
  margin: 0 auto;
}
.cid-uybeFxLgQb .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybeFxLgQb .dataTables_wrapper {
  display: block;
}
.cid-uybeFxLgQb .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybeFxLgQb .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybeFxLgQb table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybeFxLgQb table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybeFxLgQb table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybeFxLgQb table td {
  border-top: 1px solid #232323;
}
.cid-uybeFxLgQb .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybeFxLgQb .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybeFxLgQb .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybeFxLgQb .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybeFxLgQb .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybeFxLgQb .dataTables_filter {
    text-align: center;
  }
  .cid-uybeFxLgQb .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybeFxLgQb .mbr-section-title {
  color: #ff3366;
}
.cid-uybeFxLgQb .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybeFxLgQb .body-item {
  text-align: center;
}
.cid-sjBhiPbrmg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBiaKmiwB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBiaKmiwB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBiaKmiwB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBiaKmiwB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBiaKmiwB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBiaKmiwB .row > .row {
  display: block;
}
.cid-sjBiaKmiwB .mbr-gallery-item {
  width: 100%;
}
.cid-sjBiaKmiwB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBiaKmiwB .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBiaKmiwB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBiaKmiwB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBiaKmiwB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBiaKmiwB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBhfTP08t {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBibAjqR2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBibAjqR2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBibAjqR2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBibAjqR2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBibAjqR2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBibAjqR2 .row > .row {
  display: block;
}
.cid-sjBibAjqR2 .mbr-gallery-item {
  width: 100%;
}
.cid-sjBibAjqR2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBibAjqR2 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBibAjqR2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBibAjqR2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBibAjqR2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBibAjqR2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBhjuVXpx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBicm88eI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBicm88eI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBicm88eI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBicm88eI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBicm88eI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBicm88eI .row > .row {
  display: block;
}
.cid-sjBicm88eI .mbr-gallery-item {
  width: 100%;
}
.cid-sjBicm88eI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBicm88eI .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBicm88eI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBicm88eI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBicm88eI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBicm88eI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBhmjIwHG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBidbaIXG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBidbaIXG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBidbaIXG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBidbaIXG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBidbaIXG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBidbaIXG .row > .row {
  display: block;
}
.cid-sjBidbaIXG .mbr-gallery-item {
  width: 100%;
}
.cid-sjBidbaIXG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBidbaIXG .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBidbaIXG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBidbaIXG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBidbaIXG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBidbaIXG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBhkedU0I {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBie16QUg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBie16QUg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBie16QUg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBie16QUg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBie16QUg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBie16QUg .row > .row {
  display: block;
}
.cid-sjBie16QUg .mbr-gallery-item {
  width: 100%;
}
.cid-sjBie16QUg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBie16QUg .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBie16QUg .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBie16QUg .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBie16QUg .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBie16QUg .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBhlGNlCG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBhi4vHMR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBhnAVKEY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBifyaebQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBifyaebQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBifyaebQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBifyaebQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBifyaebQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBifyaebQ .row > .row {
  display: block;
}
.cid-sjBifyaebQ .mbr-gallery-item {
  width: 100%;
}
.cid-sjBifyaebQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBifyaebQ .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBifyaebQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBifyaebQ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBifyaebQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBifyaebQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBhmVPtHx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBihJQM3J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBihJQM3J .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBihJQM3J .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBihJQM3J .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBihJQM3J .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBihJQM3J .row > .row {
  display: block;
}
.cid-sjBihJQM3J .mbr-gallery-item {
  width: 100%;
}
.cid-sjBihJQM3J .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBihJQM3J .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBihJQM3J .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBihJQM3J .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBihJQM3J .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBihJQM3J .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBhoodjGt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBiixF906 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBiixF906 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBiixF906 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBiixF906 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBiixF906 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBiixF906 .row > .row {
  display: block;
}
.cid-sjBiixF906 .mbr-gallery-item {
  width: 100%;
}
.cid-sjBiixF906 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBiixF906 .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBiixF906 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBiixF906 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBiixF906 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBiixF906 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBhl3BkkV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBijfKSvS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBijfKSvS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBijfKSvS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBijfKSvS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBijfKSvS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBijfKSvS .row > .row {
  display: block;
}
.cid-sjBijfKSvS .mbr-gallery-item {
  width: 100%;
}
.cid-sjBijfKSvS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBijfKSvS .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBijfKSvS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBijfKSvS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBijfKSvS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBijfKSvS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sjBhgUt77Z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sjBikm5uYt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sjBikm5uYt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sjBikm5uYt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sjBikm5uYt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sjBikm5uYt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sjBikm5uYt .row > .row {
  display: block;
}
.cid-sjBikm5uYt .mbr-gallery-item {
  width: 100%;
}
.cid-sjBikm5uYt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sjBikm5uYt .mbr-gallery-item > div {
  position: relative;
}
.cid-sjBikm5uYt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sjBikm5uYt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sjBikm5uYt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sjBikm5uYt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s3YrDuvqd7 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-s3YrDuvqd7 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3YrDuvqd7 div.b {
  padding-top: 2rem;
}
.cid-s3YrDuvqd7 H5 {
  color: #232323;
}
.cid-s3YrLg0dAp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLg0dAp .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YrLg0dAp .section-text {
  padding: 2rem 0;
}
.cid-s3YrLg0dAp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YrLg0dAp .inner-container {
    width: 100% !important;
  }
}
.cid-v6Xr2iQH2b {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6Xr2iQH2b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Xr2iQH2b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Xr2iQH2b .row {
  justify-content: center;
}
.cid-v6Xr2iQH2b .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Xr2iQH2b .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Xr2iQH2b .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Xr2iQH2b .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Xr2iQH2b .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Xr2iQH2b .mbr-text_1,
.cid-v6Xr2iQH2b .mbr-text_2,
.cid-v6Xr2iQH2b .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Xr2iQH2b .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xr2iQH2b .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xr2iQH2b .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xr2iQH2b .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xr2iQH2b .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xr2iQH2b .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xr2iQH2b .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Xr2iQH2b .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xr2iQH2b .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xr2iQH2b .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Xr2iQH2b .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Xr2iQH2b .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Xr2iQH2b .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6Xr3gVD0W {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6Xr3gVD0W .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Xr3gVD0W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Xr3gVD0W .row {
  justify-content: center;
}
.cid-v6Xr3gVD0W .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Xr3gVD0W .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Xr3gVD0W .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Xr3gVD0W .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Xr3gVD0W .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Xr3gVD0W .mbr-text_1,
.cid-v6Xr3gVD0W .mbr-text_2,
.cid-v6Xr3gVD0W .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Xr3gVD0W .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xr3gVD0W .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xr3gVD0W .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xr3gVD0W .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xr3gVD0W .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xr3gVD0W .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xr3gVD0W .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Xr3gVD0W .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xr3gVD0W .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xr3gVD0W .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Xr3gVD0W .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Xr3gVD0W .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Xr3gVD0W .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3YrLgKD1U {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLgKD1U .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YrLgKD1U .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s3YrLgKD1U .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YrLgKD1U .inner-container {
    width: 100% !important;
  }
}
.cid-v6XqWl6Lid {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6XqWl6Lid .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6XqWl6Lid .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6XqWl6Lid .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6XqWl6Lid .inner-container {
    width: 100% !important;
  }
}
.cid-s3YrLhiK8p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLhiK8p .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YrLhiK8p .section-text {
  padding: 2rem 0;
}
.cid-s3YrLhiK8p .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YrLhiK8p .inner-container {
    width: 100% !important;
  }
}
.cid-uybeODeC1h {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybeODeC1h .mbr-section-subtitle {
  color: #767676;
}
.cid-uybeODeC1h .container-table {
  margin: 0 auto;
}
.cid-uybeODeC1h .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybeODeC1h .dataTables_wrapper {
  display: block;
}
.cid-uybeODeC1h .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybeODeC1h .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybeODeC1h table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybeODeC1h table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybeODeC1h table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybeODeC1h table td {
  border-top: 1px solid #232323;
}
.cid-uybeODeC1h .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybeODeC1h .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybeODeC1h .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybeODeC1h .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybeODeC1h .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybeODeC1h .dataTables_filter {
    text-align: center;
  }
  .cid-uybeODeC1h .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybeODeC1h .mbr-section-title {
  color: #ff3366;
}
.cid-uybeODeC1h .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybeODeC1h .body-item {
  text-align: center;
}
.cid-s3YrLiR3sU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLiR3sU .item {
  padding-bottom: 2rem;
}
.cid-s3YrLiR3sU .item-wrapper {
  height: 100%;
}
.cid-s3YrLiR3sU .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrLiR3sU .carousel-control,
.cid-s3YrLiR3sU .close {
  background: #1b1b1b;
}
.cid-s3YrLiR3sU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrLiR3sU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrLiR3sU .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrLiR3sU .close::before {
  content: '\e91a';
}
.cid-s3YrLiR3sU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrLiR3sU .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrLiR3sU .carousel-inner > .active {
  display: block;
}
.cid-s3YrLiR3sU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrLiR3sU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrLiR3sU .carousel-control .icon-next,
.cid-s3YrLiR3sU .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrLiR3sU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrLiR3sU .carousel-control,
  .cid-s3YrLiR3sU .carousel-indicators,
  .cid-s3YrLiR3sU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLiR3sU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrLiR3sU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrLiR3sU .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrLiR3sU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLiR3sU .carousel-indicators {
    display: none;
  }
}
.cid-s3YrLiR3sU .carousel-indicators .active,
.cid-s3YrLiR3sU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrLiR3sU .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrLiR3sU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrLiR3sU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrLiR3sU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrLiR3sU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrLiR3sU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrLiR3sU .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrLiR3sU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrLiR3sU .carousel {
  width: 100%;
}
.cid-s3YrLiR3sU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrLiR3sU .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrLiR3sU .modal.fade .modal-dialog,
.cid-s3YrLiR3sU .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrLiR3sU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrLiR3sU a {
  display: block;
}
.cid-s3YrLiR3sU a.img {
  pointer-events: none;
}
.cid-s3YrLiR3sU H3 {
  color: #232323;
}
.cid-s3YrLjmtNN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLjmtNN .item {
  padding-bottom: 2rem;
}
.cid-s3YrLjmtNN .item-wrapper {
  height: 100%;
}
.cid-s3YrLjmtNN .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrLjmtNN .carousel-control,
.cid-s3YrLjmtNN .close {
  background: #1b1b1b;
}
.cid-s3YrLjmtNN .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrLjmtNN .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrLjmtNN .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrLjmtNN .close::before {
  content: '\e91a';
}
.cid-s3YrLjmtNN .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrLjmtNN .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrLjmtNN .carousel-inner > .active {
  display: block;
}
.cid-s3YrLjmtNN .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrLjmtNN .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrLjmtNN .carousel-control .icon-next,
.cid-s3YrLjmtNN .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrLjmtNN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrLjmtNN .carousel-control,
  .cid-s3YrLjmtNN .carousel-indicators,
  .cid-s3YrLjmtNN .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLjmtNN .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrLjmtNN .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrLjmtNN .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrLjmtNN .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLjmtNN .carousel-indicators {
    display: none;
  }
}
.cid-s3YrLjmtNN .carousel-indicators .active,
.cid-s3YrLjmtNN .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrLjmtNN .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrLjmtNN .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrLjmtNN .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrLjmtNN .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrLjmtNN .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrLjmtNN .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrLjmtNN .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrLjmtNN .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrLjmtNN .carousel {
  width: 100%;
}
.cid-s3YrLjmtNN .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrLjmtNN .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrLjmtNN .modal.fade .modal-dialog,
.cid-s3YrLjmtNN .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrLjmtNN .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrLjmtNN a {
  display: block;
}
.cid-s3YrLjmtNN a.img {
  pointer-events: none;
}
.cid-s3YrLjmtNN H3 {
  color: #232323;
}
.cid-s3YrLjPQ1N {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLjPQ1N .item {
  padding-bottom: 2rem;
}
.cid-s3YrLjPQ1N .item-wrapper {
  height: 100%;
}
.cid-s3YrLjPQ1N .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrLjPQ1N .carousel-control,
.cid-s3YrLjPQ1N .close {
  background: #1b1b1b;
}
.cid-s3YrLjPQ1N .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrLjPQ1N .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrLjPQ1N .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrLjPQ1N .close::before {
  content: '\e91a';
}
.cid-s3YrLjPQ1N .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrLjPQ1N .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrLjPQ1N .carousel-inner > .active {
  display: block;
}
.cid-s3YrLjPQ1N .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrLjPQ1N .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrLjPQ1N .carousel-control .icon-next,
.cid-s3YrLjPQ1N .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrLjPQ1N .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrLjPQ1N .carousel-control,
  .cid-s3YrLjPQ1N .carousel-indicators,
  .cid-s3YrLjPQ1N .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLjPQ1N .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrLjPQ1N .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrLjPQ1N .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrLjPQ1N .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLjPQ1N .carousel-indicators {
    display: none;
  }
}
.cid-s3YrLjPQ1N .carousel-indicators .active,
.cid-s3YrLjPQ1N .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrLjPQ1N .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrLjPQ1N .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrLjPQ1N .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrLjPQ1N .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrLjPQ1N .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrLjPQ1N .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrLjPQ1N .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrLjPQ1N .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrLjPQ1N .carousel {
  width: 100%;
}
.cid-s3YrLjPQ1N .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrLjPQ1N .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrLjPQ1N .modal.fade .modal-dialog,
.cid-s3YrLjPQ1N .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrLjPQ1N .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrLjPQ1N a {
  display: block;
}
.cid-s3YrLjPQ1N a.img {
  pointer-events: none;
}
.cid-s3YrLjPQ1N H3 {
  color: #232323;
}
.cid-s3YrLkjfTa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLkjfTa .item {
  padding-bottom: 2rem;
}
.cid-s3YrLkjfTa .item-wrapper {
  height: 100%;
}
.cid-s3YrLkjfTa .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrLkjfTa .carousel-control,
.cid-s3YrLkjfTa .close {
  background: #1b1b1b;
}
.cid-s3YrLkjfTa .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrLkjfTa .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrLkjfTa .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrLkjfTa .close::before {
  content: '\e91a';
}
.cid-s3YrLkjfTa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrLkjfTa .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrLkjfTa .carousel-inner > .active {
  display: block;
}
.cid-s3YrLkjfTa .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrLkjfTa .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrLkjfTa .carousel-control .icon-next,
.cid-s3YrLkjfTa .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrLkjfTa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrLkjfTa .carousel-control,
  .cid-s3YrLkjfTa .carousel-indicators,
  .cid-s3YrLkjfTa .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLkjfTa .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrLkjfTa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrLkjfTa .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrLkjfTa .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLkjfTa .carousel-indicators {
    display: none;
  }
}
.cid-s3YrLkjfTa .carousel-indicators .active,
.cid-s3YrLkjfTa .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrLkjfTa .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrLkjfTa .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrLkjfTa .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrLkjfTa .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrLkjfTa .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrLkjfTa .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrLkjfTa .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrLkjfTa .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrLkjfTa .carousel {
  width: 100%;
}
.cid-s3YrLkjfTa .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrLkjfTa .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrLkjfTa .modal.fade .modal-dialog,
.cid-s3YrLkjfTa .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrLkjfTa .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrLkjfTa a {
  display: block;
}
.cid-s3YrLkjfTa a.img {
  pointer-events: none;
}
.cid-s3YrLkjfTa H3 {
  color: #232323;
}
.cid-s3YrLkQOAt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLkQOAt .item {
  padding-bottom: 2rem;
}
.cid-s3YrLkQOAt .item-wrapper {
  height: 100%;
}
.cid-s3YrLkQOAt .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrLkQOAt .carousel-control,
.cid-s3YrLkQOAt .close {
  background: #1b1b1b;
}
.cid-s3YrLkQOAt .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrLkQOAt .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrLkQOAt .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrLkQOAt .close::before {
  content: '\e91a';
}
.cid-s3YrLkQOAt .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrLkQOAt .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrLkQOAt .carousel-inner > .active {
  display: block;
}
.cid-s3YrLkQOAt .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrLkQOAt .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrLkQOAt .carousel-control .icon-next,
.cid-s3YrLkQOAt .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrLkQOAt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrLkQOAt .carousel-control,
  .cid-s3YrLkQOAt .carousel-indicators,
  .cid-s3YrLkQOAt .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLkQOAt .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrLkQOAt .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrLkQOAt .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrLkQOAt .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLkQOAt .carousel-indicators {
    display: none;
  }
}
.cid-s3YrLkQOAt .carousel-indicators .active,
.cid-s3YrLkQOAt .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrLkQOAt .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrLkQOAt .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrLkQOAt .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrLkQOAt .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrLkQOAt .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrLkQOAt .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrLkQOAt .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrLkQOAt .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrLkQOAt .carousel {
  width: 100%;
}
.cid-s3YrLkQOAt .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrLkQOAt .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrLkQOAt .modal.fade .modal-dialog,
.cid-s3YrLkQOAt .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrLkQOAt .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrLkQOAt a {
  display: block;
}
.cid-s3YrLkQOAt a.img {
  pointer-events: none;
}
.cid-s3YrLkQOAt H3 {
  color: #232323;
}
.cid-s3YrLlzz4R {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLlzz4R .item {
  padding-bottom: 2rem;
}
.cid-s3YrLlzz4R .item-wrapper {
  height: 100%;
}
.cid-s3YrLlzz4R .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrLlzz4R .carousel-control,
.cid-s3YrLlzz4R .close {
  background: #1b1b1b;
}
.cid-s3YrLlzz4R .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrLlzz4R .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrLlzz4R .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrLlzz4R .close::before {
  content: '\e91a';
}
.cid-s3YrLlzz4R .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrLlzz4R .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrLlzz4R .carousel-inner > .active {
  display: block;
}
.cid-s3YrLlzz4R .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrLlzz4R .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrLlzz4R .carousel-control .icon-next,
.cid-s3YrLlzz4R .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrLlzz4R .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrLlzz4R .carousel-control,
  .cid-s3YrLlzz4R .carousel-indicators,
  .cid-s3YrLlzz4R .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLlzz4R .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrLlzz4R .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrLlzz4R .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrLlzz4R .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLlzz4R .carousel-indicators {
    display: none;
  }
}
.cid-s3YrLlzz4R .carousel-indicators .active,
.cid-s3YrLlzz4R .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrLlzz4R .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrLlzz4R .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrLlzz4R .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrLlzz4R .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrLlzz4R .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrLlzz4R .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrLlzz4R .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrLlzz4R .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrLlzz4R .carousel {
  width: 100%;
}
.cid-s3YrLlzz4R .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrLlzz4R .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrLlzz4R .modal.fade .modal-dialog,
.cid-s3YrLlzz4R .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrLlzz4R .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrLlzz4R a {
  display: block;
}
.cid-s3YrLlzz4R a.img {
  pointer-events: none;
}
.cid-s3YrLlzz4R H3 {
  color: #232323;
}
.cid-s3YrLm4YHn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLm4YHn .item {
  padding-bottom: 2rem;
}
.cid-s3YrLm4YHn .item-wrapper {
  height: 100%;
}
.cid-s3YrLm4YHn .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrLm4YHn .carousel-control,
.cid-s3YrLm4YHn .close {
  background: #1b1b1b;
}
.cid-s3YrLm4YHn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrLm4YHn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrLm4YHn .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrLm4YHn .close::before {
  content: '\e91a';
}
.cid-s3YrLm4YHn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrLm4YHn .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrLm4YHn .carousel-inner > .active {
  display: block;
}
.cid-s3YrLm4YHn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrLm4YHn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrLm4YHn .carousel-control .icon-next,
.cid-s3YrLm4YHn .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrLm4YHn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrLm4YHn .carousel-control,
  .cid-s3YrLm4YHn .carousel-indicators,
  .cid-s3YrLm4YHn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLm4YHn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrLm4YHn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrLm4YHn .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrLm4YHn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLm4YHn .carousel-indicators {
    display: none;
  }
}
.cid-s3YrLm4YHn .carousel-indicators .active,
.cid-s3YrLm4YHn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrLm4YHn .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrLm4YHn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrLm4YHn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrLm4YHn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrLm4YHn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrLm4YHn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrLm4YHn .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrLm4YHn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrLm4YHn .carousel {
  width: 100%;
}
.cid-s3YrLm4YHn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrLm4YHn .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrLm4YHn .modal.fade .modal-dialog,
.cid-s3YrLm4YHn .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrLm4YHn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrLm4YHn a {
  display: block;
}
.cid-s3YrLm4YHn a.img {
  pointer-events: none;
}
.cid-s3YrLm4YHn H3 {
  color: #232323;
}
.cid-s3YrLmyyF5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLmyyF5 .item {
  padding-bottom: 2rem;
}
.cid-s3YrLmyyF5 .item-wrapper {
  height: 100%;
}
.cid-s3YrLmyyF5 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrLmyyF5 .carousel-control,
.cid-s3YrLmyyF5 .close {
  background: #1b1b1b;
}
.cid-s3YrLmyyF5 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrLmyyF5 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrLmyyF5 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrLmyyF5 .close::before {
  content: '\e91a';
}
.cid-s3YrLmyyF5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrLmyyF5 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrLmyyF5 .carousel-inner > .active {
  display: block;
}
.cid-s3YrLmyyF5 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrLmyyF5 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrLmyyF5 .carousel-control .icon-next,
.cid-s3YrLmyyF5 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrLmyyF5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrLmyyF5 .carousel-control,
  .cid-s3YrLmyyF5 .carousel-indicators,
  .cid-s3YrLmyyF5 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLmyyF5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrLmyyF5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrLmyyF5 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrLmyyF5 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLmyyF5 .carousel-indicators {
    display: none;
  }
}
.cid-s3YrLmyyF5 .carousel-indicators .active,
.cid-s3YrLmyyF5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrLmyyF5 .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrLmyyF5 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrLmyyF5 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrLmyyF5 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrLmyyF5 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrLmyyF5 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrLmyyF5 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrLmyyF5 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrLmyyF5 .carousel {
  width: 100%;
}
.cid-s3YrLmyyF5 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrLmyyF5 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrLmyyF5 .modal.fade .modal-dialog,
.cid-s3YrLmyyF5 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrLmyyF5 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrLmyyF5 a {
  display: block;
}
.cid-s3YrLmyyF5 a.img {
  pointer-events: none;
}
.cid-s3YrLmyyF5 H3 {
  color: #232323;
}
.cid-s3YrLn2b1T {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLn2b1T .item {
  padding-bottom: 2rem;
}
.cid-s3YrLn2b1T .item-wrapper {
  height: 100%;
}
.cid-s3YrLn2b1T .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrLn2b1T .carousel-control,
.cid-s3YrLn2b1T .close {
  background: #1b1b1b;
}
.cid-s3YrLn2b1T .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrLn2b1T .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrLn2b1T .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrLn2b1T .close::before {
  content: '\e91a';
}
.cid-s3YrLn2b1T .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrLn2b1T .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrLn2b1T .carousel-inner > .active {
  display: block;
}
.cid-s3YrLn2b1T .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrLn2b1T .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrLn2b1T .carousel-control .icon-next,
.cid-s3YrLn2b1T .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrLn2b1T .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrLn2b1T .carousel-control,
  .cid-s3YrLn2b1T .carousel-indicators,
  .cid-s3YrLn2b1T .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLn2b1T .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrLn2b1T .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrLn2b1T .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrLn2b1T .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLn2b1T .carousel-indicators {
    display: none;
  }
}
.cid-s3YrLn2b1T .carousel-indicators .active,
.cid-s3YrLn2b1T .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrLn2b1T .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrLn2b1T .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrLn2b1T .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrLn2b1T .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrLn2b1T .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrLn2b1T .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrLn2b1T .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrLn2b1T .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrLn2b1T .carousel {
  width: 100%;
}
.cid-s3YrLn2b1T .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrLn2b1T .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrLn2b1T .modal.fade .modal-dialog,
.cid-s3YrLn2b1T .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrLn2b1T .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrLn2b1T a {
  display: block;
}
.cid-s3YrLn2b1T a.img {
  pointer-events: none;
}
.cid-s3YrLn2b1T H3 {
  color: #232323;
}
.cid-s3YrLnxyjf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLnxyjf .item {
  padding-bottom: 2rem;
}
.cid-s3YrLnxyjf .item-wrapper {
  height: 100%;
}
.cid-s3YrLnxyjf .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrLnxyjf .carousel-control,
.cid-s3YrLnxyjf .close {
  background: #1b1b1b;
}
.cid-s3YrLnxyjf .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrLnxyjf .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrLnxyjf .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrLnxyjf .close::before {
  content: '\e91a';
}
.cid-s3YrLnxyjf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrLnxyjf .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrLnxyjf .carousel-inner > .active {
  display: block;
}
.cid-s3YrLnxyjf .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrLnxyjf .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrLnxyjf .carousel-control .icon-next,
.cid-s3YrLnxyjf .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrLnxyjf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrLnxyjf .carousel-control,
  .cid-s3YrLnxyjf .carousel-indicators,
  .cid-s3YrLnxyjf .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLnxyjf .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrLnxyjf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrLnxyjf .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrLnxyjf .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLnxyjf .carousel-indicators {
    display: none;
  }
}
.cid-s3YrLnxyjf .carousel-indicators .active,
.cid-s3YrLnxyjf .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrLnxyjf .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrLnxyjf .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrLnxyjf .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrLnxyjf .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrLnxyjf .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrLnxyjf .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrLnxyjf .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrLnxyjf .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrLnxyjf .carousel {
  width: 100%;
}
.cid-s3YrLnxyjf .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrLnxyjf .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrLnxyjf .modal.fade .modal-dialog,
.cid-s3YrLnxyjf .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrLnxyjf .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrLnxyjf a {
  display: block;
}
.cid-s3YrLnxyjf a.img {
  pointer-events: none;
}
.cid-s3YrLnxyjf H3 {
  color: #232323;
}
.cid-s3YrLo2kr1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLo2kr1 .item {
  padding-bottom: 2rem;
}
.cid-s3YrLo2kr1 .item-wrapper {
  height: 100%;
}
.cid-s3YrLo2kr1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrLo2kr1 .carousel-control,
.cid-s3YrLo2kr1 .close {
  background: #1b1b1b;
}
.cid-s3YrLo2kr1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrLo2kr1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrLo2kr1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrLo2kr1 .close::before {
  content: '\e91a';
}
.cid-s3YrLo2kr1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrLo2kr1 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrLo2kr1 .carousel-inner > .active {
  display: block;
}
.cid-s3YrLo2kr1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrLo2kr1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrLo2kr1 .carousel-control .icon-next,
.cid-s3YrLo2kr1 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrLo2kr1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrLo2kr1 .carousel-control,
  .cid-s3YrLo2kr1 .carousel-indicators,
  .cid-s3YrLo2kr1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLo2kr1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrLo2kr1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrLo2kr1 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrLo2kr1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLo2kr1 .carousel-indicators {
    display: none;
  }
}
.cid-s3YrLo2kr1 .carousel-indicators .active,
.cid-s3YrLo2kr1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrLo2kr1 .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrLo2kr1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrLo2kr1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrLo2kr1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrLo2kr1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrLo2kr1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrLo2kr1 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrLo2kr1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrLo2kr1 .carousel {
  width: 100%;
}
.cid-s3YrLo2kr1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrLo2kr1 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrLo2kr1 .modal.fade .modal-dialog,
.cid-s3YrLo2kr1 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrLo2kr1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrLo2kr1 a {
  display: block;
}
.cid-s3YrLo2kr1 a.img {
  pointer-events: none;
}
.cid-s3YrLo2kr1 H3 {
  color: #232323;
}
.cid-s3YrLoMrU4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrLoMrU4 .item {
  padding-bottom: 2rem;
}
.cid-s3YrLoMrU4 .item-wrapper {
  height: 100%;
}
.cid-s3YrLoMrU4 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrLoMrU4 .carousel-control,
.cid-s3YrLoMrU4 .close {
  background: #1b1b1b;
}
.cid-s3YrLoMrU4 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrLoMrU4 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrLoMrU4 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrLoMrU4 .close::before {
  content: '\e91a';
}
.cid-s3YrLoMrU4 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrLoMrU4 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrLoMrU4 .carousel-inner > .active {
  display: block;
}
.cid-s3YrLoMrU4 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrLoMrU4 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrLoMrU4 .carousel-control .icon-next,
.cid-s3YrLoMrU4 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrLoMrU4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrLoMrU4 .carousel-control,
  .cid-s3YrLoMrU4 .carousel-indicators,
  .cid-s3YrLoMrU4 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLoMrU4 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrLoMrU4 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrLoMrU4 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrLoMrU4 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrLoMrU4 .carousel-indicators {
    display: none;
  }
}
.cid-s3YrLoMrU4 .carousel-indicators .active,
.cid-s3YrLoMrU4 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrLoMrU4 .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrLoMrU4 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrLoMrU4 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrLoMrU4 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrLoMrU4 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrLoMrU4 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrLoMrU4 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrLoMrU4 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrLoMrU4 .carousel {
  width: 100%;
}
.cid-s3YrLoMrU4 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrLoMrU4 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrLoMrU4 .modal.fade .modal-dialog,
.cid-s3YrLoMrU4 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrLoMrU4 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrLoMrU4 a {
  display: block;
}
.cid-s3YrLoMrU4 a.img {
  pointer-events: none;
}
.cid-s3YrLoMrU4 H3 {
  color: #232323;
}
.cid-s3YrLpiYat {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-s3YrLpiYat .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3YrLpiYat div.b {
  padding-top: 2rem;
}
.cid-s3YrLpiYat H5 {
  color: #232323;
}
.cid-s3YrRNtdPg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrRNtdPg .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YrRNtdPg .section-text {
  padding: 2rem 0;
}
.cid-s3YrRNtdPg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YrRNtdPg .inner-container {
    width: 100% !important;
  }
}
.cid-v6XrsoYENw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6XrsoYENw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XrsoYENw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XrsoYENw .row {
  justify-content: center;
}
.cid-v6XrsoYENw .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XrsoYENw .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XrsoYENw .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XrsoYENw .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XrsoYENw .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XrsoYENw .mbr-text_1,
.cid-v6XrsoYENw .mbr-text_2,
.cid-v6XrsoYENw .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XrsoYENw .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XrsoYENw .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XrsoYENw .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XrsoYENw .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XrsoYENw .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XrsoYENw .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XrsoYENw .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XrsoYENw .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XrsoYENw .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XrsoYENw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XrsoYENw .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XrsoYENw .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XrsoYENw .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XrtdrPQO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6XrtdrPQO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XrtdrPQO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XrtdrPQO .row {
  justify-content: center;
}
.cid-v6XrtdrPQO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XrtdrPQO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XrtdrPQO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XrtdrPQO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XrtdrPQO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XrtdrPQO .mbr-text_1,
.cid-v6XrtdrPQO .mbr-text_2,
.cid-v6XrtdrPQO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XrtdrPQO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XrtdrPQO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XrtdrPQO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XrtdrPQO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XrtdrPQO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XrtdrPQO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XrtdrPQO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XrtdrPQO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XrtdrPQO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XrtdrPQO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XrtdrPQO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XrtdrPQO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XrtdrPQO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s3YrROcGE2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrROcGE2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YrROcGE2 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s3YrROcGE2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YrROcGE2 .inner-container {
    width: 100% !important;
  }
}
.cid-v6XrqVXQdf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6XrqVXQdf .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6XrqVXQdf .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6XrqVXQdf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6XrqVXQdf .inner-container {
    width: 100% !important;
  }
}
.cid-s3YrROYvje {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrROYvje .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s3YrROYvje .section-text {
  padding: 2rem 0;
}
.cid-s3YrROYvje .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s3YrROYvje .inner-container {
    width: 100% !important;
  }
}
.cid-uybeXK5FDf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybeXK5FDf .mbr-section-subtitle {
  color: #767676;
}
.cid-uybeXK5FDf .container-table {
  margin: 0 auto;
}
.cid-uybeXK5FDf .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybeXK5FDf .dataTables_wrapper {
  display: block;
}
.cid-uybeXK5FDf .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybeXK5FDf .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybeXK5FDf table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybeXK5FDf table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybeXK5FDf table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybeXK5FDf table td {
  border-top: 1px solid #232323;
}
.cid-uybeXK5FDf .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybeXK5FDf .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybeXK5FDf .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybeXK5FDf .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybeXK5FDf .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybeXK5FDf .dataTables_filter {
    text-align: center;
  }
  .cid-uybeXK5FDf .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybeXK5FDf .mbr-section-title {
  color: #ff3366;
}
.cid-uybeXK5FDf .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybeXK5FDf .body-item {
  text-align: center;
}
.cid-s3YrRQjIig {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrRQjIig .item {
  padding-bottom: 2rem;
}
.cid-s3YrRQjIig .item-wrapper {
  height: 100%;
}
.cid-s3YrRQjIig .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrRQjIig .carousel-control,
.cid-s3YrRQjIig .close {
  background: #1b1b1b;
}
.cid-s3YrRQjIig .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrRQjIig .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrRQjIig .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrRQjIig .close::before {
  content: '\e91a';
}
.cid-s3YrRQjIig .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrRQjIig .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrRQjIig .carousel-inner > .active {
  display: block;
}
.cid-s3YrRQjIig .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrRQjIig .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrRQjIig .carousel-control .icon-next,
.cid-s3YrRQjIig .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrRQjIig .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrRQjIig .carousel-control,
  .cid-s3YrRQjIig .carousel-indicators,
  .cid-s3YrRQjIig .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRQjIig .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrRQjIig .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrRQjIig .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrRQjIig .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRQjIig .carousel-indicators {
    display: none;
  }
}
.cid-s3YrRQjIig .carousel-indicators .active,
.cid-s3YrRQjIig .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrRQjIig .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrRQjIig .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrRQjIig .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrRQjIig .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrRQjIig .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrRQjIig .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrRQjIig .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrRQjIig .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrRQjIig .carousel {
  width: 100%;
}
.cid-s3YrRQjIig .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrRQjIig .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrRQjIig .modal.fade .modal-dialog,
.cid-s3YrRQjIig .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrRQjIig .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrRQjIig a {
  display: block;
}
.cid-s3YrRQjIig a.img {
  pointer-events: none;
}
.cid-s3YrRQjIig H3 {
  color: #232323;
}
.cid-s3YrRQNNS7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrRQNNS7 .item {
  padding-bottom: 2rem;
}
.cid-s3YrRQNNS7 .item-wrapper {
  height: 100%;
}
.cid-s3YrRQNNS7 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrRQNNS7 .carousel-control,
.cid-s3YrRQNNS7 .close {
  background: #1b1b1b;
}
.cid-s3YrRQNNS7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrRQNNS7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrRQNNS7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrRQNNS7 .close::before {
  content: '\e91a';
}
.cid-s3YrRQNNS7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrRQNNS7 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrRQNNS7 .carousel-inner > .active {
  display: block;
}
.cid-s3YrRQNNS7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrRQNNS7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrRQNNS7 .carousel-control .icon-next,
.cid-s3YrRQNNS7 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrRQNNS7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrRQNNS7 .carousel-control,
  .cid-s3YrRQNNS7 .carousel-indicators,
  .cid-s3YrRQNNS7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRQNNS7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrRQNNS7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrRQNNS7 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrRQNNS7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRQNNS7 .carousel-indicators {
    display: none;
  }
}
.cid-s3YrRQNNS7 .carousel-indicators .active,
.cid-s3YrRQNNS7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrRQNNS7 .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrRQNNS7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrRQNNS7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrRQNNS7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrRQNNS7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrRQNNS7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrRQNNS7 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrRQNNS7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrRQNNS7 .carousel {
  width: 100%;
}
.cid-s3YrRQNNS7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrRQNNS7 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrRQNNS7 .modal.fade .modal-dialog,
.cid-s3YrRQNNS7 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrRQNNS7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrRQNNS7 a {
  display: block;
}
.cid-s3YrRQNNS7 a.img {
  pointer-events: none;
}
.cid-s3YrRQNNS7 H3 {
  color: #232323;
}
.cid-s3YrRRgza1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrRRgza1 .item {
  padding-bottom: 2rem;
}
.cid-s3YrRRgza1 .item-wrapper {
  height: 100%;
}
.cid-s3YrRRgza1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrRRgza1 .carousel-control,
.cid-s3YrRRgza1 .close {
  background: #1b1b1b;
}
.cid-s3YrRRgza1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrRRgza1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrRRgza1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrRRgza1 .close::before {
  content: '\e91a';
}
.cid-s3YrRRgza1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrRRgza1 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrRRgza1 .carousel-inner > .active {
  display: block;
}
.cid-s3YrRRgza1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrRRgza1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrRRgza1 .carousel-control .icon-next,
.cid-s3YrRRgza1 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrRRgza1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrRRgza1 .carousel-control,
  .cid-s3YrRRgza1 .carousel-indicators,
  .cid-s3YrRRgza1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRRgza1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrRRgza1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrRRgza1 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrRRgza1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRRgza1 .carousel-indicators {
    display: none;
  }
}
.cid-s3YrRRgza1 .carousel-indicators .active,
.cid-s3YrRRgza1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrRRgza1 .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrRRgza1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrRRgza1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrRRgza1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrRRgza1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrRRgza1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrRRgza1 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrRRgza1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrRRgza1 .carousel {
  width: 100%;
}
.cid-s3YrRRgza1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrRRgza1 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrRRgza1 .modal.fade .modal-dialog,
.cid-s3YrRRgza1 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrRRgza1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrRRgza1 a {
  display: block;
}
.cid-s3YrRRgza1 a.img {
  pointer-events: none;
}
.cid-s3YrRRgza1 H3 {
  color: #232323;
}
.cid-s3YrRRZrdn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrRRZrdn .item {
  padding-bottom: 2rem;
}
.cid-s3YrRRZrdn .item-wrapper {
  height: 100%;
}
.cid-s3YrRRZrdn .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrRRZrdn .carousel-control,
.cid-s3YrRRZrdn .close {
  background: #1b1b1b;
}
.cid-s3YrRRZrdn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrRRZrdn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrRRZrdn .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrRRZrdn .close::before {
  content: '\e91a';
}
.cid-s3YrRRZrdn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrRRZrdn .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrRRZrdn .carousel-inner > .active {
  display: block;
}
.cid-s3YrRRZrdn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrRRZrdn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrRRZrdn .carousel-control .icon-next,
.cid-s3YrRRZrdn .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrRRZrdn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrRRZrdn .carousel-control,
  .cid-s3YrRRZrdn .carousel-indicators,
  .cid-s3YrRRZrdn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRRZrdn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrRRZrdn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrRRZrdn .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrRRZrdn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRRZrdn .carousel-indicators {
    display: none;
  }
}
.cid-s3YrRRZrdn .carousel-indicators .active,
.cid-s3YrRRZrdn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrRRZrdn .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrRRZrdn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrRRZrdn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrRRZrdn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrRRZrdn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrRRZrdn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrRRZrdn .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrRRZrdn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrRRZrdn .carousel {
  width: 100%;
}
.cid-s3YrRRZrdn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrRRZrdn .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrRRZrdn .modal.fade .modal-dialog,
.cid-s3YrRRZrdn .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrRRZrdn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrRRZrdn a {
  display: block;
}
.cid-s3YrRRZrdn a.img {
  pointer-events: none;
}
.cid-s3YrRRZrdn H3 {
  color: #232323;
}
.cid-s3YrRSvONI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrRSvONI .item {
  padding-bottom: 2rem;
}
.cid-s3YrRSvONI .item-wrapper {
  height: 100%;
}
.cid-s3YrRSvONI .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrRSvONI .carousel-control,
.cid-s3YrRSvONI .close {
  background: #1b1b1b;
}
.cid-s3YrRSvONI .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrRSvONI .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrRSvONI .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrRSvONI .close::before {
  content: '\e91a';
}
.cid-s3YrRSvONI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrRSvONI .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrRSvONI .carousel-inner > .active {
  display: block;
}
.cid-s3YrRSvONI .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrRSvONI .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrRSvONI .carousel-control .icon-next,
.cid-s3YrRSvONI .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrRSvONI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrRSvONI .carousel-control,
  .cid-s3YrRSvONI .carousel-indicators,
  .cid-s3YrRSvONI .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRSvONI .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrRSvONI .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrRSvONI .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrRSvONI .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRSvONI .carousel-indicators {
    display: none;
  }
}
.cid-s3YrRSvONI .carousel-indicators .active,
.cid-s3YrRSvONI .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrRSvONI .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrRSvONI .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrRSvONI .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrRSvONI .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrRSvONI .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrRSvONI .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrRSvONI .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrRSvONI .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrRSvONI .carousel {
  width: 100%;
}
.cid-s3YrRSvONI .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrRSvONI .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrRSvONI .modal.fade .modal-dialog,
.cid-s3YrRSvONI .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrRSvONI .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrRSvONI a {
  display: block;
}
.cid-s3YrRSvONI a.img {
  pointer-events: none;
}
.cid-s3YrRSvONI H3 {
  color: #232323;
}
.cid-s3YrRSYWCY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrRSYWCY .item {
  padding-bottom: 2rem;
}
.cid-s3YrRSYWCY .item-wrapper {
  height: 100%;
}
.cid-s3YrRSYWCY .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrRSYWCY .carousel-control,
.cid-s3YrRSYWCY .close {
  background: #1b1b1b;
}
.cid-s3YrRSYWCY .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrRSYWCY .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrRSYWCY .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrRSYWCY .close::before {
  content: '\e91a';
}
.cid-s3YrRSYWCY .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrRSYWCY .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrRSYWCY .carousel-inner > .active {
  display: block;
}
.cid-s3YrRSYWCY .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrRSYWCY .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrRSYWCY .carousel-control .icon-next,
.cid-s3YrRSYWCY .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrRSYWCY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrRSYWCY .carousel-control,
  .cid-s3YrRSYWCY .carousel-indicators,
  .cid-s3YrRSYWCY .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRSYWCY .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrRSYWCY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrRSYWCY .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrRSYWCY .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRSYWCY .carousel-indicators {
    display: none;
  }
}
.cid-s3YrRSYWCY .carousel-indicators .active,
.cid-s3YrRSYWCY .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrRSYWCY .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrRSYWCY .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrRSYWCY .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrRSYWCY .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrRSYWCY .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrRSYWCY .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrRSYWCY .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrRSYWCY .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrRSYWCY .carousel {
  width: 100%;
}
.cid-s3YrRSYWCY .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrRSYWCY .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrRSYWCY .modal.fade .modal-dialog,
.cid-s3YrRSYWCY .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrRSYWCY .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrRSYWCY a {
  display: block;
}
.cid-s3YrRSYWCY a.img {
  pointer-events: none;
}
.cid-s3YrRSYWCY H3 {
  color: #232323;
}
.cid-s3YrRTrTKF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrRTrTKF .item {
  padding-bottom: 2rem;
}
.cid-s3YrRTrTKF .item-wrapper {
  height: 100%;
}
.cid-s3YrRTrTKF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrRTrTKF .carousel-control,
.cid-s3YrRTrTKF .close {
  background: #1b1b1b;
}
.cid-s3YrRTrTKF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrRTrTKF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrRTrTKF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrRTrTKF .close::before {
  content: '\e91a';
}
.cid-s3YrRTrTKF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrRTrTKF .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrRTrTKF .carousel-inner > .active {
  display: block;
}
.cid-s3YrRTrTKF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrRTrTKF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrRTrTKF .carousel-control .icon-next,
.cid-s3YrRTrTKF .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrRTrTKF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrRTrTKF .carousel-control,
  .cid-s3YrRTrTKF .carousel-indicators,
  .cid-s3YrRTrTKF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRTrTKF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrRTrTKF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrRTrTKF .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrRTrTKF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRTrTKF .carousel-indicators {
    display: none;
  }
}
.cid-s3YrRTrTKF .carousel-indicators .active,
.cid-s3YrRTrTKF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrRTrTKF .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrRTrTKF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrRTrTKF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrRTrTKF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrRTrTKF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrRTrTKF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrRTrTKF .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrRTrTKF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrRTrTKF .carousel {
  width: 100%;
}
.cid-s3YrRTrTKF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrRTrTKF .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrRTrTKF .modal.fade .modal-dialog,
.cid-s3YrRTrTKF .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrRTrTKF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrRTrTKF a {
  display: block;
}
.cid-s3YrRTrTKF a.img {
  pointer-events: none;
}
.cid-s3YrRTrTKF H3 {
  color: #232323;
}
.cid-s3YrRTTJJE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrRTTJJE .item {
  padding-bottom: 2rem;
}
.cid-s3YrRTTJJE .item-wrapper {
  height: 100%;
}
.cid-s3YrRTTJJE .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrRTTJJE .carousel-control,
.cid-s3YrRTTJJE .close {
  background: #1b1b1b;
}
.cid-s3YrRTTJJE .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrRTTJJE .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrRTTJJE .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrRTTJJE .close::before {
  content: '\e91a';
}
.cid-s3YrRTTJJE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrRTTJJE .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrRTTJJE .carousel-inner > .active {
  display: block;
}
.cid-s3YrRTTJJE .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrRTTJJE .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrRTTJJE .carousel-control .icon-next,
.cid-s3YrRTTJJE .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrRTTJJE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrRTTJJE .carousel-control,
  .cid-s3YrRTTJJE .carousel-indicators,
  .cid-s3YrRTTJJE .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRTTJJE .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrRTTJJE .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrRTTJJE .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrRTTJJE .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRTTJJE .carousel-indicators {
    display: none;
  }
}
.cid-s3YrRTTJJE .carousel-indicators .active,
.cid-s3YrRTTJJE .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrRTTJJE .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrRTTJJE .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrRTTJJE .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrRTTJJE .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrRTTJJE .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrRTTJJE .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrRTTJJE .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrRTTJJE .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrRTTJJE .carousel {
  width: 100%;
}
.cid-s3YrRTTJJE .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrRTTJJE .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrRTTJJE .modal.fade .modal-dialog,
.cid-s3YrRTTJJE .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrRTTJJE .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrRTTJJE a {
  display: block;
}
.cid-s3YrRTTJJE a.img {
  pointer-events: none;
}
.cid-s3YrRTTJJE H3 {
  color: #232323;
}
.cid-s3YrRUoVKQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrRUoVKQ .item {
  padding-bottom: 2rem;
}
.cid-s3YrRUoVKQ .item-wrapper {
  height: 100%;
}
.cid-s3YrRUoVKQ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrRUoVKQ .carousel-control,
.cid-s3YrRUoVKQ .close {
  background: #1b1b1b;
}
.cid-s3YrRUoVKQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrRUoVKQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrRUoVKQ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrRUoVKQ .close::before {
  content: '\e91a';
}
.cid-s3YrRUoVKQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrRUoVKQ .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrRUoVKQ .carousel-inner > .active {
  display: block;
}
.cid-s3YrRUoVKQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrRUoVKQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrRUoVKQ .carousel-control .icon-next,
.cid-s3YrRUoVKQ .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrRUoVKQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrRUoVKQ .carousel-control,
  .cid-s3YrRUoVKQ .carousel-indicators,
  .cid-s3YrRUoVKQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRUoVKQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrRUoVKQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrRUoVKQ .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrRUoVKQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRUoVKQ .carousel-indicators {
    display: none;
  }
}
.cid-s3YrRUoVKQ .carousel-indicators .active,
.cid-s3YrRUoVKQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrRUoVKQ .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrRUoVKQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrRUoVKQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrRUoVKQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrRUoVKQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrRUoVKQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrRUoVKQ .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrRUoVKQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrRUoVKQ .carousel {
  width: 100%;
}
.cid-s3YrRUoVKQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrRUoVKQ .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrRUoVKQ .modal.fade .modal-dialog,
.cid-s3YrRUoVKQ .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrRUoVKQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrRUoVKQ a {
  display: block;
}
.cid-s3YrRUoVKQ a.img {
  pointer-events: none;
}
.cid-s3YrRUoVKQ H3 {
  color: #232323;
}
.cid-s3YrRV55s7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrRV55s7 .item {
  padding-bottom: 2rem;
}
.cid-s3YrRV55s7 .item-wrapper {
  height: 100%;
}
.cid-s3YrRV55s7 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrRV55s7 .carousel-control,
.cid-s3YrRV55s7 .close {
  background: #1b1b1b;
}
.cid-s3YrRV55s7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrRV55s7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrRV55s7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrRV55s7 .close::before {
  content: '\e91a';
}
.cid-s3YrRV55s7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrRV55s7 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrRV55s7 .carousel-inner > .active {
  display: block;
}
.cid-s3YrRV55s7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrRV55s7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrRV55s7 .carousel-control .icon-next,
.cid-s3YrRV55s7 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrRV55s7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrRV55s7 .carousel-control,
  .cid-s3YrRV55s7 .carousel-indicators,
  .cid-s3YrRV55s7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRV55s7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrRV55s7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrRV55s7 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrRV55s7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRV55s7 .carousel-indicators {
    display: none;
  }
}
.cid-s3YrRV55s7 .carousel-indicators .active,
.cid-s3YrRV55s7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrRV55s7 .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrRV55s7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrRV55s7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrRV55s7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrRV55s7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrRV55s7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrRV55s7 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrRV55s7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrRV55s7 .carousel {
  width: 100%;
}
.cid-s3YrRV55s7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrRV55s7 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrRV55s7 .modal.fade .modal-dialog,
.cid-s3YrRV55s7 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrRV55s7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrRV55s7 a {
  display: block;
}
.cid-s3YrRV55s7 a.img {
  pointer-events: none;
}
.cid-s3YrRV55s7 H3 {
  color: #232323;
}
.cid-s3YrRVDfXS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrRVDfXS .item {
  padding-bottom: 2rem;
}
.cid-s3YrRVDfXS .item-wrapper {
  height: 100%;
}
.cid-s3YrRVDfXS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrRVDfXS .carousel-control,
.cid-s3YrRVDfXS .close {
  background: #1b1b1b;
}
.cid-s3YrRVDfXS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrRVDfXS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrRVDfXS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrRVDfXS .close::before {
  content: '\e91a';
}
.cid-s3YrRVDfXS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrRVDfXS .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrRVDfXS .carousel-inner > .active {
  display: block;
}
.cid-s3YrRVDfXS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrRVDfXS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrRVDfXS .carousel-control .icon-next,
.cid-s3YrRVDfXS .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrRVDfXS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrRVDfXS .carousel-control,
  .cid-s3YrRVDfXS .carousel-indicators,
  .cid-s3YrRVDfXS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRVDfXS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrRVDfXS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrRVDfXS .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrRVDfXS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRVDfXS .carousel-indicators {
    display: none;
  }
}
.cid-s3YrRVDfXS .carousel-indicators .active,
.cid-s3YrRVDfXS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrRVDfXS .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrRVDfXS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrRVDfXS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrRVDfXS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrRVDfXS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrRVDfXS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrRVDfXS .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrRVDfXS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrRVDfXS .carousel {
  width: 100%;
}
.cid-s3YrRVDfXS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrRVDfXS .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrRVDfXS .modal.fade .modal-dialog,
.cid-s3YrRVDfXS .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrRVDfXS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrRVDfXS a {
  display: block;
}
.cid-s3YrRVDfXS a.img {
  pointer-events: none;
}
.cid-s3YrRVDfXS H3 {
  color: #232323;
}
.cid-s3YrRWaUQM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-s3YrRWaUQM .item {
  padding-bottom: 2rem;
}
.cid-s3YrRWaUQM .item-wrapper {
  height: 100%;
}
.cid-s3YrRWaUQM .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s3YrRWaUQM .carousel-control,
.cid-s3YrRWaUQM .close {
  background: #1b1b1b;
}
.cid-s3YrRWaUQM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s3YrRWaUQM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s3YrRWaUQM .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s3YrRWaUQM .close::before {
  content: '\e91a';
}
.cid-s3YrRWaUQM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s3YrRWaUQM .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s3YrRWaUQM .carousel-inner > .active {
  display: block;
}
.cid-s3YrRWaUQM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s3YrRWaUQM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s3YrRWaUQM .carousel-control .icon-next,
.cid-s3YrRWaUQM .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s3YrRWaUQM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s3YrRWaUQM .carousel-control,
  .cid-s3YrRWaUQM .carousel-indicators,
  .cid-s3YrRWaUQM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRWaUQM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s3YrRWaUQM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s3YrRWaUQM .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s3YrRWaUQM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s3YrRWaUQM .carousel-indicators {
    display: none;
  }
}
.cid-s3YrRWaUQM .carousel-indicators .active,
.cid-s3YrRWaUQM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s3YrRWaUQM .carousel-indicators .active {
  background: #fff;
}
.cid-s3YrRWaUQM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s3YrRWaUQM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s3YrRWaUQM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s3YrRWaUQM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s3YrRWaUQM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s3YrRWaUQM .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s3YrRWaUQM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s3YrRWaUQM .carousel {
  width: 100%;
}
.cid-s3YrRWaUQM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s3YrRWaUQM .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s3YrRWaUQM .modal.fade .modal-dialog,
.cid-s3YrRWaUQM .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s3YrRWaUQM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s3YrRWaUQM a {
  display: block;
}
.cid-s3YrRWaUQM a.img {
  pointer-events: none;
}
.cid-s3YrRWaUQM H3 {
  color: #232323;
}
.cid-s3YrRWGP1Y {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-s3YrRWGP1Y .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s3YrRWGP1Y div.b {
  padding-top: 2rem;
}
.cid-s3YrRWGP1Y H5 {
  color: #232323;
}
.cid-s434s0wwO1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s434s0wwO1 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s434s0wwO1 .section-text {
  padding: 2rem 0;
}
.cid-s434s0wwO1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s434s0wwO1 .inner-container {
    width: 100% !important;
  }
}
.cid-v7DL5b04ky {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7DL5b04ky .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7DL5b04ky .section-text {
  padding: 2rem 0;
}
.cid-v7DL5b04ky .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7DL5b04ky .inner-container {
    width: 100% !important;
  }
}
.cid-s434s1gKOk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s434s1gKOk .mbr-section-subtitle {
  color: #767676;
}
.cid-s434s1gKOk .container-table {
  margin: 0 auto;
}
.cid-s434s1gKOk .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s434s1gKOk .dataTables_wrapper {
  display: block;
}
.cid-s434s1gKOk .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s434s1gKOk .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s434s1gKOk table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s434s1gKOk table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s434s1gKOk table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s434s1gKOk table td {
  border-top: 1px solid #232323;
}
.cid-s434s1gKOk table.table {
  background: #3eddea;
}
.cid-s434s1gKOk .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s434s1gKOk .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s434s1gKOk .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s434s1gKOk .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s434s1gKOk .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s434s1gKOk .dataTables_filter {
    text-align: center;
  }
  .cid-s434s1gKOk .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s434s1gKOk .mbr-section-title {
  color: #ff3366;
}
.cid-s434s1gKOk .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-s434s1gKOk .body-item {
  text-align: center;
}
.cid-s4355dyJtq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4355dyJtq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4355dyJtq .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s4355dyJtq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4355dyJtq .inner-container {
    width: 100% !important;
  }
}
.cid-v7E3fabXqp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7E3ijtiQY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7E3ktWmFB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7E3g4aeOu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7E3lQYoJO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7E3l9QdgY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7E3nkrf86 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7E3mBBArt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7E4pLrYXH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7E4pLrYXH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7E4pLrYXH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7E4pLrYXH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7E4pLrYXH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7E4pLrYXH .row > .row {
  display: block;
}
.cid-v7E4pLrYXH .mbr-gallery-item {
  width: 100%;
}
.cid-v7E4pLrYXH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7E4pLrYXH .mbr-gallery-item > div {
  position: relative;
}
.cid-v7E4pLrYXH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7E4pLrYXH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7E4pLrYXH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7E4pLrYXH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7E3jJGP1M {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7E4rj0frK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7E4rj0frK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7E4rj0frK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7E4rj0frK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7E4rj0frK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7E4rj0frK .row > .row {
  display: block;
}
.cid-v7E4rj0frK .mbr-gallery-item {
  width: 100%;
}
.cid-v7E4rj0frK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7E4rj0frK .mbr-gallery-item > div {
  position: relative;
}
.cid-v7E4rj0frK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7E4rj0frK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7E4rj0frK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7E4rj0frK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7E3hAL7Km {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7E4tbnWiH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7E4tbnWiH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7E4tbnWiH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7E4tbnWiH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7E4tbnWiH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7E4tbnWiH .row > .row {
  display: block;
}
.cid-v7E4tbnWiH .mbr-gallery-item {
  width: 100%;
}
.cid-v7E4tbnWiH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7E4tbnWiH .mbr-gallery-item > div {
  position: relative;
}
.cid-v7E4tbnWiH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7E4tbnWiH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7E4tbnWiH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7E4tbnWiH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7E3iYnbAV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7EdhU8u6m {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7EdhU8u6m .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7EdhU8u6m .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7EdhU8u6m .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7EdhU8u6m .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7EdhU8u6m .row > .row {
  display: block;
}
.cid-v7EdhU8u6m .mbr-gallery-item {
  width: 100%;
}
.cid-v7EdhU8u6m .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7EdhU8u6m .mbr-gallery-item > div {
  position: relative;
}
.cid-v7EdhU8u6m .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7EdhU8u6m .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7EdhU8u6m .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7EdhU8u6m .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7E3gTFAIN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7E4uTI9mt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7E4uTI9mt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7E4uTI9mt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7E4uTI9mt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7E4uTI9mt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7E4uTI9mt .row > .row {
  display: block;
}
.cid-v7E4uTI9mt .mbr-gallery-item {
  width: 100%;
}
.cid-v7E4uTI9mt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7E4uTI9mt .mbr-gallery-item > div {
  position: relative;
}
.cid-v7E4uTI9mt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7E4uTI9mt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7E4uTI9mt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7E4uTI9mt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s434s22ADx {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s434s22ADx .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s434s22ADx div.b {
  padding-top: 2rem;
}
.cid-s434s22ADx H5 {
  color: #232323;
}
.cid-s438QZMNC6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s438QZMNC6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s438QZMNC6 .section-text {
  padding: 2rem 0;
}
.cid-s438QZMNC6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s438QZMNC6 .inner-container {
    width: 100% !important;
  }
}
.cid-s438R0mrvo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s438R0mrvo .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s438R0mrvo .section-text {
  padding: 2rem 0;
}
.cid-s438R0mrvo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s438R0mrvo .inner-container {
    width: 100% !important;
  }
}
.cid-s438R0PKgN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s438R0PKgN .mbr-section-subtitle {
  color: #767676;
}
.cid-s438R0PKgN .container-table {
  margin: 0 auto;
}
.cid-s438R0PKgN .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s438R0PKgN .dataTables_wrapper {
  display: block;
}
.cid-s438R0PKgN .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s438R0PKgN .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s438R0PKgN table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s438R0PKgN table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s438R0PKgN table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s438R0PKgN table td {
  border-top: 1px solid #232323;
}
.cid-s438R0PKgN table.table {
  background: #3eddea;
}
.cid-s438R0PKgN .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s438R0PKgN .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s438R0PKgN .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s438R0PKgN .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s438R0PKgN .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s438R0PKgN .dataTables_filter {
    text-align: center;
  }
  .cid-s438R0PKgN .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s438R0PKgN .mbr-section-title {
  color: #ff3366;
}
.cid-s438R0PKgN .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-s438R0PKgN .body-item {
  text-align: center;
}
.cid-s438R1tazR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s438R1tazR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s438R1tazR .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s438R1tazR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s438R1tazR .inner-container {
    width: 100% !important;
  }
}
.cid-v7yjZA2Rgz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7ygxsYh79 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7ygxsYh79 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7ygxsYh79 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7ygxsYh79 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7ygxsYh79 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7ygxsYh79 .row > .row {
  display: block;
}
.cid-v7ygxsYh79 .mbr-gallery-item {
  width: 100%;
}
.cid-v7ygxsYh79 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7ygxsYh79 .mbr-gallery-item > div {
  position: relative;
}
.cid-v7ygxsYh79 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7ygxsYh79 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7ygxsYh79 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7ygxsYh79 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7ykTIten8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7ygP2ZkfF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7ygP2ZkfF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7ygP2ZkfF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7ygP2ZkfF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7ygP2ZkfF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7ygP2ZkfF .row > .row {
  display: block;
}
.cid-v7ygP2ZkfF .mbr-gallery-item {
  width: 100%;
}
.cid-v7ygP2ZkfF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7ygP2ZkfF .mbr-gallery-item > div {
  position: relative;
}
.cid-v7ygP2ZkfF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7ygP2ZkfF .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7ygP2ZkfF .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7ygP2ZkfF .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7ykVPQ6mv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7ygQLH1jW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7ygQLH1jW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7ygQLH1jW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7ygQLH1jW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7ygQLH1jW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7ygQLH1jW .row > .row {
  display: block;
}
.cid-v7ygQLH1jW .mbr-gallery-item {
  width: 100%;
}
.cid-v7ygQLH1jW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7ygQLH1jW .mbr-gallery-item > div {
  position: relative;
}
.cid-v7ygQLH1jW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7ygQLH1jW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7ygQLH1jW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7ygQLH1jW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7ykXw57tW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7ygSwJBwt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7ygSwJBwt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7ygSwJBwt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7ygSwJBwt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7ygSwJBwt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7ygSwJBwt .row > .row {
  display: block;
}
.cid-v7ygSwJBwt .mbr-gallery-item {
  width: 100%;
}
.cid-v7ygSwJBwt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7ygSwJBwt .mbr-gallery-item > div {
  position: relative;
}
.cid-v7ygSwJBwt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7ygSwJBwt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7ygSwJBwt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7ygSwJBwt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7ykYBFNQF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7ygTJyLav {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7ygTJyLav .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7ygTJyLav .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7ygTJyLav .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7ygTJyLav .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7ygTJyLav .row > .row {
  display: block;
}
.cid-v7ygTJyLav .mbr-gallery-item {
  width: 100%;
}
.cid-v7ygTJyLav .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7ygTJyLav .mbr-gallery-item > div {
  position: relative;
}
.cid-v7ygTJyLav .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7ygTJyLav .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7ygTJyLav .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7ygTJyLav .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7yl0OLNCj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7ygVzO7UI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7ygVzO7UI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7ygVzO7UI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7ygVzO7UI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7ygVzO7UI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7ygVzO7UI .row > .row {
  display: block;
}
.cid-v7ygVzO7UI .mbr-gallery-item {
  width: 100%;
}
.cid-v7ygVzO7UI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7ygVzO7UI .mbr-gallery-item > div {
  position: relative;
}
.cid-v7ygVzO7UI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7ygVzO7UI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7ygVzO7UI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7ygVzO7UI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7yl2pQRdu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7yl4kjprX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7ygXg5mrX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7ygXg5mrX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7ygXg5mrX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7ygXg5mrX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7ygXg5mrX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7ygXg5mrX .row > .row {
  display: block;
}
.cid-v7ygXg5mrX .mbr-gallery-item {
  width: 100%;
}
.cid-v7ygXg5mrX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7ygXg5mrX .mbr-gallery-item > div {
  position: relative;
}
.cid-v7ygXg5mrX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7ygXg5mrX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7ygXg5mrX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7ygXg5mrX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7yl9dElX1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7ygYOs8kZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7ygYOs8kZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7ygYOs8kZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7ygYOs8kZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7ygYOs8kZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7ygYOs8kZ .row > .row {
  display: block;
}
.cid-v7ygYOs8kZ .mbr-gallery-item {
  width: 100%;
}
.cid-v7ygYOs8kZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7ygYOs8kZ .mbr-gallery-item > div {
  position: relative;
}
.cid-v7ygYOs8kZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7ygYOs8kZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7ygYOs8kZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7ygYOs8kZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7ylbyALkH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7yh0qkAOx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7yh0qkAOx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7yh0qkAOx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7yh0qkAOx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7yh0qkAOx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7yh0qkAOx .row > .row {
  display: block;
}
.cid-v7yh0qkAOx .mbr-gallery-item {
  width: 100%;
}
.cid-v7yh0qkAOx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7yh0qkAOx .mbr-gallery-item > div {
  position: relative;
}
.cid-v7yh0qkAOx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7yh0qkAOx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7yh0qkAOx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7yh0qkAOx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7ylcFyL6C {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7yh1CZW2L {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7yh1CZW2L .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7yh1CZW2L .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7yh1CZW2L .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7yh1CZW2L .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7yh1CZW2L .row > .row {
  display: block;
}
.cid-v7yh1CZW2L .mbr-gallery-item {
  width: 100%;
}
.cid-v7yh1CZW2L .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7yh1CZW2L .mbr-gallery-item > div {
  position: relative;
}
.cid-v7yh1CZW2L .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7yh1CZW2L .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7yh1CZW2L .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7yh1CZW2L .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7ylen81t2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7ygWFPdlm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7ygWFPdlm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7ygWFPdlm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7ygWFPdlm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7ygWFPdlm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7ygWFPdlm .row > .row {
  display: block;
}
.cid-v7ygWFPdlm .mbr-gallery-item {
  width: 100%;
}
.cid-v7ygWFPdlm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7ygWFPdlm .mbr-gallery-item > div {
  position: relative;
}
.cid-v7ygWFPdlm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7ygWFPdlm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7ygWFPdlm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7ygWFPdlm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s438R4tRSG {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s438R4tRSG .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s438R4tRSG div.b {
  padding-top: 2rem;
}
.cid-s438R4tRSG H5 {
  color: #232323;
}
.cid-s43a7mc1xS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s43a7mc1xS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s43a7mc1xS .section-text {
  padding: 2rem 0;
}
.cid-s43a7mc1xS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s43a7mc1xS .inner-container {
    width: 100% !important;
  }
}
.cid-v7DLe4zqWe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7DLe4zqWe .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7DLe4zqWe .section-text {
  padding: 2rem 0;
}
.cid-v7DLe4zqWe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7DLe4zqWe .inner-container {
    width: 100% !important;
  }
}
.cid-s43a7n2G90 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s43a7n2G90 .mbr-section-subtitle {
  color: #767676;
}
.cid-s43a7n2G90 .container-table {
  margin: 0 auto;
}
.cid-s43a7n2G90 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s43a7n2G90 .dataTables_wrapper {
  display: block;
}
.cid-s43a7n2G90 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s43a7n2G90 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s43a7n2G90 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s43a7n2G90 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s43a7n2G90 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s43a7n2G90 table td {
  border-top: 1px solid #232323;
}
.cid-s43a7n2G90 table.table {
  background: #3eddea;
}
.cid-s43a7n2G90 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s43a7n2G90 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s43a7n2G90 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s43a7n2G90 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s43a7n2G90 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s43a7n2G90 .dataTables_filter {
    text-align: center;
  }
  .cid-s43a7n2G90 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s43a7n2G90 .mbr-section-title {
  color: #ff3366;
}
.cid-s43a7n2G90 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-s43a7n2G90 .body-item {
  text-align: center;
}
.cid-s43a7nGPCe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s43a7nGPCe .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s43a7nGPCe .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s43a7nGPCe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s43a7nGPCe .inner-container {
    width: 100% !important;
  }
}
.cid-v7DSrN5m6r {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7DV3mMFXB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7DV3mMFXB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7DV3mMFXB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7DV3mMFXB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7DV3mMFXB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7DV3mMFXB .row > .row {
  display: block;
}
.cid-v7DV3mMFXB .mbr-gallery-item {
  width: 100%;
}
.cid-v7DV3mMFXB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7DV3mMFXB .mbr-gallery-item > div {
  position: relative;
}
.cid-v7DV3mMFXB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7DV3mMFXB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7DV3mMFXB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7DV3mMFXB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7DSpzkAZm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7DV4Gjk4i {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7DV4Gjk4i .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7DV4Gjk4i .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7DV4Gjk4i .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7DV4Gjk4i .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7DV4Gjk4i .row > .row {
  display: block;
}
.cid-v7DV4Gjk4i .mbr-gallery-item {
  width: 100%;
}
.cid-v7DV4Gjk4i .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7DV4Gjk4i .mbr-gallery-item > div {
  position: relative;
}
.cid-v7DV4Gjk4i .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7DV4Gjk4i .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7DV4Gjk4i .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7DV4Gjk4i .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7DSsIEizW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7DV5LU8RK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7DV5LU8RK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7DV5LU8RK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7DV5LU8RK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7DV5LU8RK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7DV5LU8RK .row > .row {
  display: block;
}
.cid-v7DV5LU8RK .mbr-gallery-item {
  width: 100%;
}
.cid-v7DV5LU8RK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7DV5LU8RK .mbr-gallery-item > div {
  position: relative;
}
.cid-v7DV5LU8RK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7DV5LU8RK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7DV5LU8RK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7DV5LU8RK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7DStV8Xgl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7DV6JeH4t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7DV6JeH4t .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7DV6JeH4t .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7DV6JeH4t .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7DV6JeH4t .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7DV6JeH4t .row > .row {
  display: block;
}
.cid-v7DV6JeH4t .mbr-gallery-item {
  width: 100%;
}
.cid-v7DV6JeH4t .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7DV6JeH4t .mbr-gallery-item > div {
  position: relative;
}
.cid-v7DV6JeH4t .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7DV6JeH4t .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7DV6JeH4t .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7DV6JeH4t .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7DSuJPVn8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7DV89oDhT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7DV89oDhT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7DV89oDhT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7DV89oDhT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7DV89oDhT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7DV89oDhT .row > .row {
  display: block;
}
.cid-v7DV89oDhT .mbr-gallery-item {
  width: 100%;
}
.cid-v7DV89oDhT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7DV89oDhT .mbr-gallery-item > div {
  position: relative;
}
.cid-v7DV89oDhT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7DV89oDhT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7DV89oDhT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7DV89oDhT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7DSwozQ0v {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7DSxQg7rc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7DSznBmPQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7DTUahCNw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7DTUahCNw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7DTUahCNw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7DTUahCNw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7DTUahCNw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7DTUahCNw .row > .row {
  display: block;
}
.cid-v7DTUahCNw .mbr-gallery-item {
  width: 100%;
}
.cid-v7DTUahCNw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7DTUahCNw .mbr-gallery-item > div {
  position: relative;
}
.cid-v7DTUahCNw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7DTUahCNw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7DTUahCNw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7DTUahCNw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7DSAbbJmF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7E0EQoH9D {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7E0EQoH9D .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7E0EQoH9D .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7E0EQoH9D .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7E0EQoH9D .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7E0EQoH9D .row > .row {
  display: block;
}
.cid-v7E0EQoH9D .mbr-gallery-item {
  width: 100%;
}
.cid-v7E0EQoH9D .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7E0EQoH9D .mbr-gallery-item > div {
  position: relative;
}
.cid-v7E0EQoH9D .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7E0EQoH9D .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7E0EQoH9D .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7E0EQoH9D .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7DSBzdorV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7DUZRpcL3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7DUZRpcL3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7DUZRpcL3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7DUZRpcL3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7DUZRpcL3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7DUZRpcL3 .row > .row {
  display: block;
}
.cid-v7DUZRpcL3 .mbr-gallery-item {
  width: 100%;
}
.cid-v7DUZRpcL3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7DUZRpcL3 .mbr-gallery-item > div {
  position: relative;
}
.cid-v7DUZRpcL3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7DUZRpcL3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7DUZRpcL3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7DUZRpcL3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7DSCg6qYD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7DV17jLAf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7DV17jLAf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7DV17jLAf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7DV17jLAf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7DV17jLAf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7DV17jLAf .row > .row {
  display: block;
}
.cid-v7DV17jLAf .mbr-gallery-item {
  width: 100%;
}
.cid-v7DV17jLAf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7DV17jLAf .mbr-gallery-item > div {
  position: relative;
}
.cid-v7DV17jLAf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7DV17jLAf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7DV17jLAf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7DV17jLAf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7DSCWFj9m {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7DV268P3N {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7DV268P3N .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7DV268P3N .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7DV268P3N .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7DV268P3N .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7DV268P3N .row > .row {
  display: block;
}
.cid-v7DV268P3N .mbr-gallery-item {
  width: 100%;
}
.cid-v7DV268P3N .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7DV268P3N .mbr-gallery-item > div {
  position: relative;
}
.cid-v7DV268P3N .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7DV268P3N .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7DV268P3N .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7DV268P3N .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s43a7up3lo {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s43a7up3lo .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s43a7up3lo div.b {
  padding-top: 2rem;
}
.cid-s43a7up3lo H5 {
  color: #232323;
}
.cid-s43afdoM5F {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s43afdoM5F .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s43afdoM5F .section-text {
  padding: 2rem 0;
}
.cid-s43afdoM5F .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s43afdoM5F .inner-container {
    width: 100% !important;
  }
}
.cid-v7DLpPVv4i {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7DLpPVv4i .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7DLpPVv4i .section-text {
  padding: 2rem 0;
}
.cid-v7DLpPVv4i .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7DLpPVv4i .inner-container {
    width: 100% !important;
  }
}
.cid-s43afeLMEU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s43afeLMEU .mbr-section-subtitle {
  color: #767676;
}
.cid-s43afeLMEU .container-table {
  margin: 0 auto;
}
.cid-s43afeLMEU .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s43afeLMEU .dataTables_wrapper {
  display: block;
}
.cid-s43afeLMEU .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s43afeLMEU .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s43afeLMEU table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s43afeLMEU table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s43afeLMEU table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s43afeLMEU table td {
  border-top: 1px solid #232323;
}
.cid-s43afeLMEU table.table {
  background: #3eddea;
}
.cid-s43afeLMEU .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s43afeLMEU .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s43afeLMEU .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s43afeLMEU .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s43afeLMEU .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s43afeLMEU .dataTables_filter {
    text-align: center;
  }
  .cid-s43afeLMEU .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s43afeLMEU .mbr-section-title {
  color: #ff3366;
}
.cid-s43afeLMEU .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-s43afeLMEU .body-item {
  text-align: center;
}
.cid-s43afiS9aw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s43afiS9aw .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s43afiS9aw .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s43afiS9aw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s43afiS9aw .inner-container {
    width: 100% !important;
  }
}
.cid-v7E2se268b {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7EkefFw8E {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7EkefFw8E .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7EkefFw8E .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7EkefFw8E .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7EkefFw8E .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7EkefFw8E .row > .row {
  display: block;
}
.cid-v7EkefFw8E .mbr-gallery-item {
  width: 100%;
}
.cid-v7EkefFw8E .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7EkefFw8E .mbr-gallery-item > div {
  position: relative;
}
.cid-v7EkefFw8E .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7EkefFw8E .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7EkefFw8E .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7EkefFw8E .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7E2tes2vZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7EkkVm8tl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7EkkVm8tl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7EkkVm8tl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7EkkVm8tl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7EkkVm8tl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7EkkVm8tl .row > .row {
  display: block;
}
.cid-v7EkkVm8tl .mbr-gallery-item {
  width: 100%;
}
.cid-v7EkkVm8tl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7EkkVm8tl .mbr-gallery-item > div {
  position: relative;
}
.cid-v7EkkVm8tl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7EkkVm8tl .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7EkkVm8tl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7EkkVm8tl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7E2u168cZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7EkmnaALO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7EkmnaALO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7EkmnaALO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7EkmnaALO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7EkmnaALO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7EkmnaALO .row > .row {
  display: block;
}
.cid-v7EkmnaALO .mbr-gallery-item {
  width: 100%;
}
.cid-v7EkmnaALO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7EkmnaALO .mbr-gallery-item > div {
  position: relative;
}
.cid-v7EkmnaALO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7EkmnaALO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7EkmnaALO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7EkmnaALO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7E2v4I2Cx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7Ekn8fp7F {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7Ekn8fp7F .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7Ekn8fp7F .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7Ekn8fp7F .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7Ekn8fp7F .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7Ekn8fp7F .row > .row {
  display: block;
}
.cid-v7Ekn8fp7F .mbr-gallery-item {
  width: 100%;
}
.cid-v7Ekn8fp7F .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7Ekn8fp7F .mbr-gallery-item > div {
  position: relative;
}
.cid-v7Ekn8fp7F .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7Ekn8fp7F .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7Ekn8fp7F .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7Ekn8fp7F .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7E2yV0CYg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7EknR4ib7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7EknR4ib7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7EknR4ib7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7EknR4ib7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7EknR4ib7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7EknR4ib7 .row > .row {
  display: block;
}
.cid-v7EknR4ib7 .mbr-gallery-item {
  width: 100%;
}
.cid-v7EknR4ib7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7EknR4ib7 .mbr-gallery-item > div {
  position: relative;
}
.cid-v7EknR4ib7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7EknR4ib7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7EknR4ib7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7EknR4ib7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7E2zGymCH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7E2y8UYHr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7E2ADGsDH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7EkpSbsWq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7EkpSbsWq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7EkpSbsWq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7EkpSbsWq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7EkpSbsWq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7EkpSbsWq .row > .row {
  display: block;
}
.cid-v7EkpSbsWq .mbr-gallery-item {
  width: 100%;
}
.cid-v7EkpSbsWq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7EkpSbsWq .mbr-gallery-item > div {
  position: relative;
}
.cid-v7EkpSbsWq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7EkpSbsWq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7EkpSbsWq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7EkpSbsWq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7E2BwhbEZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7EkrmccFG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7EkrmccFG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7EkrmccFG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7EkrmccFG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7EkrmccFG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7EkrmccFG .row > .row {
  display: block;
}
.cid-v7EkrmccFG .mbr-gallery-item {
  width: 100%;
}
.cid-v7EkrmccFG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7EkrmccFG .mbr-gallery-item > div {
  position: relative;
}
.cid-v7EkrmccFG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7EkrmccFG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7EkrmccFG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7EkrmccFG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7E2vS3a2u {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7EkrYY6Nv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7EkrYY6Nv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7EkrYY6Nv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7EkrYY6Nv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7EkrYY6Nv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7EkrYY6Nv .row > .row {
  display: block;
}
.cid-v7EkrYY6Nv .mbr-gallery-item {
  width: 100%;
}
.cid-v7EkrYY6Nv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7EkrYY6Nv .mbr-gallery-item > div {
  position: relative;
}
.cid-v7EkrYY6Nv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7EkrYY6Nv .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7EkrYY6Nv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7EkrYY6Nv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7E2xo5ZfD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7EksxnMas {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7EksxnMas .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7EksxnMas .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7EksxnMas .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7EksxnMas .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7EksxnMas .row > .row {
  display: block;
}
.cid-v7EksxnMas .mbr-gallery-item {
  width: 100%;
}
.cid-v7EksxnMas .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7EksxnMas .mbr-gallery-item > div {
  position: relative;
}
.cid-v7EksxnMas .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7EksxnMas .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7EksxnMas .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7EksxnMas .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7E2wENkWM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v7EktbrrdY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7EktbrrdY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7EktbrrdY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7EktbrrdY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7EktbrrdY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7EktbrrdY .row > .row {
  display: block;
}
.cid-v7EktbrrdY .mbr-gallery-item {
  width: 100%;
}
.cid-v7EktbrrdY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7EktbrrdY .mbr-gallery-item > div {
  position: relative;
}
.cid-v7EktbrrdY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7EktbrrdY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7EktbrrdY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7EktbrrdY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s43afp2wEF {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s43afp2wEF .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s43afp2wEF div.b {
  padding-top: 2rem;
}
.cid-s43afp2wEF H5 {
  color: #232323;
}
.cid-s44s9fRNER {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44s9fRNER .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44s9fRNER .section-text {
  padding: 2rem 0;
}
.cid-s44s9fRNER .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44s9fRNER .inner-container {
    width: 100% !important;
  }
}
.cid-v7rNqqLdeT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rNqqLdeT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rNqqLdeT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rNqqLdeT .row {
  justify-content: center;
}
.cid-v7rNqqLdeT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rNqqLdeT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rNqqLdeT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rNqqLdeT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rNqqLdeT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rNqqLdeT .mbr-text_1,
.cid-v7rNqqLdeT .mbr-text_2,
.cid-v7rNqqLdeT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rNqqLdeT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNqqLdeT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rNqqLdeT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rNqqLdeT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rNqqLdeT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNqqLdeT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rNqqLdeT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rNqqLdeT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNqqLdeT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rNqqLdeT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rNqqLdeT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rNqqLdeT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rNqqLdeT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rNrj5QOQ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rNrj5QOQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rNrj5QOQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rNrj5QOQ .row {
  justify-content: center;
}
.cid-v7rNrj5QOQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rNrj5QOQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rNrj5QOQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rNrj5QOQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rNrj5QOQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rNrj5QOQ .mbr-text_1,
.cid-v7rNrj5QOQ .mbr-text_2,
.cid-v7rNrj5QOQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rNrj5QOQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNrj5QOQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rNrj5QOQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rNrj5QOQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rNrj5QOQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNrj5QOQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rNrj5QOQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rNrj5QOQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNrj5QOQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rNrj5QOQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rNrj5QOQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rNrj5QOQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rNrj5QOQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s44s9gBblP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44s9gBblP .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44s9gBblP .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s44s9gBblP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44s9gBblP .inner-container {
    width: 100% !important;
  }
}
.cid-v8aCZcaksQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aCZcaksQ .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aCZcaksQ .container-table {
  margin: 0 auto;
}
.cid-v8aCZcaksQ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aCZcaksQ .dataTables_wrapper {
  display: block;
}
.cid-v8aCZcaksQ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aCZcaksQ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aCZcaksQ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aCZcaksQ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aCZcaksQ table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aCZcaksQ table td {
  border-top: 1px solid #232323;
}
.cid-v8aCZcaksQ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aCZcaksQ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aCZcaksQ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aCZcaksQ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aCZcaksQ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aCZcaksQ .dataTables_filter {
    text-align: center;
  }
  .cid-v8aCZcaksQ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aCZcaksQ .mbr-section-title {
  color: #232323;
}
.cid-v8aCZcaksQ .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aCZcaksQ .body-item {
  text-align: center;
}
.cid-s44s9gRCDU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44s9gRCDU .mbr-section-subtitle {
  color: #767676;
}
.cid-s44s9gRCDU .container-table {
  margin: 0 auto;
}
.cid-s44s9gRCDU .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s44s9gRCDU .dataTables_wrapper {
  display: block;
}
.cid-s44s9gRCDU .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s44s9gRCDU .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s44s9gRCDU table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s44s9gRCDU table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s44s9gRCDU table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s44s9gRCDU table td {
  border-top: 1px solid #232323;
}
.cid-s44s9gRCDU .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s44s9gRCDU .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s44s9gRCDU .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s44s9gRCDU .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s44s9gRCDU .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s44s9gRCDU .dataTables_filter {
    text-align: center;
  }
  .cid-s44s9gRCDU .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s44s9gRCDU .mbr-section-title {
  color: #232323;
}
.cid-s44s9gRCDU .head-item {
  text-align: center;
  color: #232323;
}
.cid-s44s9gRCDU .body-item {
  text-align: center;
}
.cid-s44s9hvJui {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s44s9hvJui .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s44s9hvJui div.b {
  padding-top: 2rem;
}
.cid-s44s9hvJui H5 {
  color: #232323;
}
.cid-s44stAKkWk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44stAKkWk .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44stAKkWk .section-text {
  padding: 2rem 0;
}
.cid-s44stAKkWk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44stAKkWk .inner-container {
    width: 100% !important;
  }
}
.cid-v7s8rm0bS8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7s8rm0bS8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7s8rm0bS8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7s8rm0bS8 .row {
  justify-content: center;
}
.cid-v7s8rm0bS8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7s8rm0bS8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7s8rm0bS8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7s8rm0bS8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7s8rm0bS8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7s8rm0bS8 .mbr-text_1,
.cid-v7s8rm0bS8 .mbr-text_2,
.cid-v7s8rm0bS8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7s8rm0bS8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s8rm0bS8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7s8rm0bS8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s8rm0bS8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s8rm0bS8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s8rm0bS8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7s8rm0bS8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7s8rm0bS8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s8rm0bS8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s8rm0bS8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7s8rm0bS8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7s8rm0bS8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7s8rm0bS8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7s8sd0Yqp {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7s8sd0Yqp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7s8sd0Yqp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7s8sd0Yqp .row {
  justify-content: center;
}
.cid-v7s8sd0Yqp .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7s8sd0Yqp .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7s8sd0Yqp .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7s8sd0Yqp .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7s8sd0Yqp .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7s8sd0Yqp .mbr-text_1,
.cid-v7s8sd0Yqp .mbr-text_2,
.cid-v7s8sd0Yqp .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7s8sd0Yqp .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s8sd0Yqp .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7s8sd0Yqp .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s8sd0Yqp .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s8sd0Yqp .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s8sd0Yqp .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7s8sd0Yqp .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7s8sd0Yqp .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s8sd0Yqp .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s8sd0Yqp .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7s8sd0Yqp .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7s8sd0Yqp .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7s8sd0Yqp .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s44stBt4us {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44stBt4us .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44stBt4us .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s44stBt4us .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44stBt4us .inner-container {
    width: 100% !important;
  }
}
.cid-v8aD7BkqIS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aD7BkqIS .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aD7BkqIS .container-table {
  margin: 0 auto;
}
.cid-v8aD7BkqIS .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aD7BkqIS .dataTables_wrapper {
  display: block;
}
.cid-v8aD7BkqIS .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aD7BkqIS .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aD7BkqIS table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aD7BkqIS table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aD7BkqIS table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aD7BkqIS table td {
  border-top: 1px solid #232323;
}
.cid-v8aD7BkqIS .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aD7BkqIS .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aD7BkqIS .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aD7BkqIS .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aD7BkqIS .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aD7BkqIS .dataTables_filter {
    text-align: center;
  }
  .cid-v8aD7BkqIS .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aD7BkqIS .mbr-section-title {
  color: #232323;
}
.cid-v8aD7BkqIS .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aD7BkqIS .body-item {
  text-align: center;
}
.cid-s44stBF6kI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44stBF6kI .mbr-section-subtitle {
  color: #767676;
}
.cid-s44stBF6kI .container-table {
  margin: 0 auto;
}
.cid-s44stBF6kI .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s44stBF6kI .dataTables_wrapper {
  display: block;
}
.cid-s44stBF6kI .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s44stBF6kI .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s44stBF6kI table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s44stBF6kI table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s44stBF6kI table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s44stBF6kI table td {
  border-top: 1px solid #232323;
}
.cid-s44stBF6kI .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s44stBF6kI .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s44stBF6kI .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s44stBF6kI .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s44stBF6kI .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s44stBF6kI .dataTables_filter {
    text-align: center;
  }
  .cid-s44stBF6kI .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s44stBF6kI .mbr-section-title {
  color: #232323;
}
.cid-s44stBF6kI .head-item {
  text-align: center;
  color: #232323;
}
.cid-s44stBF6kI .body-item {
  text-align: center;
}
.cid-s44stCjxK3 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s44stCjxK3 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s44stCjxK3 div.b {
  padding-top: 2rem;
}
.cid-s44stCjxK3 H5 {
  color: #232323;
}
.cid-s44sLWvVHy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44sLWvVHy .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44sLWvVHy .section-text {
  padding: 2rem 0;
}
.cid-s44sLWvVHy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44sLWvVHy .inner-container {
    width: 100% !important;
  }
}
.cid-v7sdsYCyYx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7sdsYCyYx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sdsYCyYx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sdsYCyYx .row {
  justify-content: center;
}
.cid-v7sdsYCyYx .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sdsYCyYx .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sdsYCyYx .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sdsYCyYx .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sdsYCyYx .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sdsYCyYx .mbr-text_1,
.cid-v7sdsYCyYx .mbr-text_2,
.cid-v7sdsYCyYx .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sdsYCyYx .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdsYCyYx .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sdsYCyYx .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sdsYCyYx .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sdsYCyYx .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdsYCyYx .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sdsYCyYx .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sdsYCyYx .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdsYCyYx .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sdsYCyYx .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sdsYCyYx .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sdsYCyYx .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sdsYCyYx .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7sdtUaKtW {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7sdtUaKtW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sdtUaKtW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sdtUaKtW .row {
  justify-content: center;
}
.cid-v7sdtUaKtW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sdtUaKtW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sdtUaKtW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sdtUaKtW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sdtUaKtW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sdtUaKtW .mbr-text_1,
.cid-v7sdtUaKtW .mbr-text_2,
.cid-v7sdtUaKtW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sdtUaKtW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdtUaKtW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sdtUaKtW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sdtUaKtW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sdtUaKtW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdtUaKtW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sdtUaKtW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sdtUaKtW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdtUaKtW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sdtUaKtW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sdtUaKtW .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sdtUaKtW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sdtUaKtW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s44sLXWloq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44sLXWloq .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44sLXWloq .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s44sLXWloq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44sLXWloq .inner-container {
    width: 100% !important;
  }
}
.cid-v8aDftXTjT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aDftXTjT .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aDftXTjT .container-table {
  margin: 0 auto;
}
.cid-v8aDftXTjT .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aDftXTjT .dataTables_wrapper {
  display: block;
}
.cid-v8aDftXTjT .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aDftXTjT .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aDftXTjT table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aDftXTjT table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aDftXTjT table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aDftXTjT table td {
  border-top: 1px solid #232323;
}
.cid-v8aDftXTjT .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aDftXTjT .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aDftXTjT .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aDftXTjT .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aDftXTjT .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aDftXTjT .dataTables_filter {
    text-align: center;
  }
  .cid-v8aDftXTjT .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aDftXTjT .mbr-section-title {
  color: #232323;
}
.cid-v8aDftXTjT .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aDftXTjT .body-item {
  text-align: center;
}
.cid-s44sLYnMix {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44sLYnMix .mbr-section-subtitle {
  color: #767676;
}
.cid-s44sLYnMix .container-table {
  margin: 0 auto;
}
.cid-s44sLYnMix .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s44sLYnMix .dataTables_wrapper {
  display: block;
}
.cid-s44sLYnMix .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s44sLYnMix .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s44sLYnMix table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s44sLYnMix table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s44sLYnMix table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s44sLYnMix table td {
  border-top: 1px solid #232323;
}
.cid-s44sLYnMix .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s44sLYnMix .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s44sLYnMix .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s44sLYnMix .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s44sLYnMix .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s44sLYnMix .dataTables_filter {
    text-align: center;
  }
  .cid-s44sLYnMix .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s44sLYnMix .mbr-section-title {
  color: #232323;
}
.cid-s44sLYnMix .head-item {
  text-align: center;
  color: #232323;
}
.cid-s44sLYnMix .body-item {
  text-align: center;
}
.cid-s44sM10kZF {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s44sM10kZF .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s44sM10kZF div.b {
  padding-top: 2rem;
}
.cid-s44sM10kZF H5 {
  color: #232323;
}
.cid-s44sUJADMe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44sUJADMe .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44sUJADMe .section-text {
  padding: 2rem 0;
}
.cid-s44sUJADMe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44sUJADMe .inner-container {
    width: 100% !important;
  }
}
.cid-v7tCjJhj8Z {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7tCjJhj8Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7tCjJhj8Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tCjJhj8Z .row {
  justify-content: center;
}
.cid-v7tCjJhj8Z .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7tCjJhj8Z .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7tCjJhj8Z .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7tCjJhj8Z .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7tCjJhj8Z .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7tCjJhj8Z .mbr-text_1,
.cid-v7tCjJhj8Z .mbr-text_2,
.cid-v7tCjJhj8Z .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7tCjJhj8Z .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCjJhj8Z .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7tCjJhj8Z .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tCjJhj8Z .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tCjJhj8Z .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCjJhj8Z .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7tCjJhj8Z .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7tCjJhj8Z .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCjJhj8Z .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tCjJhj8Z .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7tCjJhj8Z .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7tCjJhj8Z .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7tCjJhj8Z .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7tCkz8FhI {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7tCkz8FhI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7tCkz8FhI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tCkz8FhI .row {
  justify-content: center;
}
.cid-v7tCkz8FhI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7tCkz8FhI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7tCkz8FhI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7tCkz8FhI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7tCkz8FhI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7tCkz8FhI .mbr-text_1,
.cid-v7tCkz8FhI .mbr-text_2,
.cid-v7tCkz8FhI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7tCkz8FhI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCkz8FhI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7tCkz8FhI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tCkz8FhI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tCkz8FhI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCkz8FhI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7tCkz8FhI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7tCkz8FhI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCkz8FhI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tCkz8FhI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7tCkz8FhI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7tCkz8FhI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7tCkz8FhI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s44sUKhnw0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44sUKhnw0 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44sUKhnw0 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s44sUKhnw0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44sUKhnw0 .inner-container {
    width: 100% !important;
  }
}
.cid-v8aDn3tkaM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aDn3tkaM .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aDn3tkaM .container-table {
  margin: 0 auto;
}
.cid-v8aDn3tkaM .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aDn3tkaM .dataTables_wrapper {
  display: block;
}
.cid-v8aDn3tkaM .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aDn3tkaM .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aDn3tkaM table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aDn3tkaM table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aDn3tkaM table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aDn3tkaM table td {
  border-top: 1px solid #232323;
}
.cid-v8aDn3tkaM .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aDn3tkaM .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aDn3tkaM .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aDn3tkaM .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aDn3tkaM .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aDn3tkaM .dataTables_filter {
    text-align: center;
  }
  .cid-v8aDn3tkaM .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aDn3tkaM .mbr-section-title {
  color: #232323;
}
.cid-v8aDn3tkaM .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aDn3tkaM .body-item {
  text-align: center;
}
.cid-s44sUKuY59 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44sUKuY59 .mbr-section-subtitle {
  color: #767676;
}
.cid-s44sUKuY59 .container-table {
  margin: 0 auto;
}
.cid-s44sUKuY59 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s44sUKuY59 .dataTables_wrapper {
  display: block;
}
.cid-s44sUKuY59 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s44sUKuY59 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s44sUKuY59 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s44sUKuY59 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s44sUKuY59 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s44sUKuY59 table td {
  border-top: 1px solid #232323;
}
.cid-s44sUKuY59 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s44sUKuY59 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s44sUKuY59 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s44sUKuY59 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s44sUKuY59 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s44sUKuY59 .dataTables_filter {
    text-align: center;
  }
  .cid-s44sUKuY59 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s44sUKuY59 .mbr-section-title {
  color: #232323;
}
.cid-s44sUKuY59 .head-item {
  text-align: center;
  color: #232323;
}
.cid-s44sUKuY59 .body-item {
  text-align: center;
}
.cid-s44sULdIRA {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s44sULdIRA .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s44sULdIRA div.b {
  padding-top: 2rem;
}
.cid-s44sULdIRA H5 {
  color: #232323;
}
.cid-s44t8oNKXD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44t8oNKXD .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44t8oNKXD .section-text {
  padding: 2rem 0;
}
.cid-s44t8oNKXD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44t8oNKXD .inner-container {
    width: 100% !important;
  }
}
.cid-v7vx5KCgE5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vx5KCgE5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vx5KCgE5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vx5KCgE5 .row {
  justify-content: center;
}
.cid-v7vx5KCgE5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vx5KCgE5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vx5KCgE5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vx5KCgE5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vx5KCgE5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vx5KCgE5 .mbr-text_1,
.cid-v7vx5KCgE5 .mbr-text_2,
.cid-v7vx5KCgE5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vx5KCgE5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vx5KCgE5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vx5KCgE5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vx5KCgE5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vx5KCgE5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vx5KCgE5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vx5KCgE5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vx5KCgE5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vx5KCgE5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vx5KCgE5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vx5KCgE5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vx5KCgE5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vx5KCgE5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vx6FO19P {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vx6FO19P .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vx6FO19P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vx6FO19P .row {
  justify-content: center;
}
.cid-v7vx6FO19P .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vx6FO19P .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vx6FO19P .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vx6FO19P .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vx6FO19P .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vx6FO19P .mbr-text_1,
.cid-v7vx6FO19P .mbr-text_2,
.cid-v7vx6FO19P .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vx6FO19P .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vx6FO19P .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vx6FO19P .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vx6FO19P .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vx6FO19P .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vx6FO19P .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vx6FO19P .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vx6FO19P .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vx6FO19P .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vx6FO19P .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vx6FO19P .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vx6FO19P .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vx6FO19P .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s44t8pvoaV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44t8pvoaV .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44t8pvoaV .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s44t8pvoaV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44t8pvoaV .inner-container {
    width: 100% !important;
  }
}
.cid-v8aDt8VnSo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aDt8VnSo .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aDt8VnSo .container-table {
  margin: 0 auto;
}
.cid-v8aDt8VnSo .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aDt8VnSo .dataTables_wrapper {
  display: block;
}
.cid-v8aDt8VnSo .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aDt8VnSo .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aDt8VnSo table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aDt8VnSo table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aDt8VnSo table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aDt8VnSo table td {
  border-top: 1px solid #232323;
}
.cid-v8aDt8VnSo .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aDt8VnSo .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aDt8VnSo .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aDt8VnSo .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aDt8VnSo .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aDt8VnSo .dataTables_filter {
    text-align: center;
  }
  .cid-v8aDt8VnSo .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aDt8VnSo .mbr-section-title {
  color: #232323;
}
.cid-v8aDt8VnSo .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aDt8VnSo .body-item {
  text-align: center;
}
.cid-s44t8pHd4p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44t8pHd4p .mbr-section-subtitle {
  color: #767676;
}
.cid-s44t8pHd4p .container-table {
  margin: 0 auto;
}
.cid-s44t8pHd4p .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s44t8pHd4p .dataTables_wrapper {
  display: block;
}
.cid-s44t8pHd4p .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s44t8pHd4p .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s44t8pHd4p table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s44t8pHd4p table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s44t8pHd4p table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s44t8pHd4p table td {
  border-top: 1px solid #232323;
}
.cid-s44t8pHd4p .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s44t8pHd4p .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s44t8pHd4p .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s44t8pHd4p .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s44t8pHd4p .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s44t8pHd4p .dataTables_filter {
    text-align: center;
  }
  .cid-s44t8pHd4p .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s44t8pHd4p .mbr-section-title {
  color: #232323;
}
.cid-s44t8pHd4p .head-item {
  text-align: center;
  color: #232323;
}
.cid-s44t8pHd4p .body-item {
  text-align: center;
}
.cid-s44t8qw2Na {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s44t8qw2Na .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s44t8qw2Na div.b {
  padding-top: 2rem;
}
.cid-s44t8qw2Na H5 {
  color: #232323;
}
.cid-s44tgsNhIz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44tgsNhIz .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44tgsNhIz .section-text {
  padding: 2rem 0;
}
.cid-s44tgsNhIz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44tgsNhIz .inner-container {
    width: 100% !important;
  }
}
.cid-v7vA65aulw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vA65aulw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vA65aulw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vA65aulw .row {
  justify-content: center;
}
.cid-v7vA65aulw .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vA65aulw .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vA65aulw .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vA65aulw .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vA65aulw .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vA65aulw .mbr-text_1,
.cid-v7vA65aulw .mbr-text_2,
.cid-v7vA65aulw .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vA65aulw .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vA65aulw .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vA65aulw .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vA65aulw .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vA65aulw .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vA65aulw .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vA65aulw .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vA65aulw .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vA65aulw .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vA65aulw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vA65aulw .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vA65aulw .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vA65aulw .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vA6ZPkbY {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vA6ZPkbY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vA6ZPkbY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vA6ZPkbY .row {
  justify-content: center;
}
.cid-v7vA6ZPkbY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vA6ZPkbY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vA6ZPkbY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vA6ZPkbY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vA6ZPkbY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vA6ZPkbY .mbr-text_1,
.cid-v7vA6ZPkbY .mbr-text_2,
.cid-v7vA6ZPkbY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vA6ZPkbY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vA6ZPkbY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vA6ZPkbY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vA6ZPkbY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vA6ZPkbY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vA6ZPkbY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vA6ZPkbY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vA6ZPkbY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vA6ZPkbY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vA6ZPkbY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vA6ZPkbY .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vA6ZPkbY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vA6ZPkbY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s44tgtt9Ni {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44tgtt9Ni .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44tgtt9Ni .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s44tgtt9Ni .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44tgtt9Ni .inner-container {
    width: 100% !important;
  }
}
.cid-v8aDDXt9Fn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aDDXt9Fn .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aDDXt9Fn .container-table {
  margin: 0 auto;
}
.cid-v8aDDXt9Fn .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aDDXt9Fn .dataTables_wrapper {
  display: block;
}
.cid-v8aDDXt9Fn .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aDDXt9Fn .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aDDXt9Fn table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aDDXt9Fn table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aDDXt9Fn table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aDDXt9Fn table td {
  border-top: 1px solid #232323;
}
.cid-v8aDDXt9Fn .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aDDXt9Fn .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aDDXt9Fn .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aDDXt9Fn .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aDDXt9Fn .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aDDXt9Fn .dataTables_filter {
    text-align: center;
  }
  .cid-v8aDDXt9Fn .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aDDXt9Fn .mbr-section-title {
  color: #232323;
}
.cid-v8aDDXt9Fn .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aDDXt9Fn .body-item {
  text-align: center;
}
.cid-s44tgtGAc7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44tgtGAc7 .mbr-section-subtitle {
  color: #767676;
}
.cid-s44tgtGAc7 .container-table {
  margin: 0 auto;
}
.cid-s44tgtGAc7 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s44tgtGAc7 .dataTables_wrapper {
  display: block;
}
.cid-s44tgtGAc7 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s44tgtGAc7 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s44tgtGAc7 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s44tgtGAc7 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s44tgtGAc7 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s44tgtGAc7 table td {
  border-top: 1px solid #232323;
}
.cid-s44tgtGAc7 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s44tgtGAc7 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s44tgtGAc7 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s44tgtGAc7 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s44tgtGAc7 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s44tgtGAc7 .dataTables_filter {
    text-align: center;
  }
  .cid-s44tgtGAc7 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s44tgtGAc7 .mbr-section-title {
  color: #232323;
}
.cid-s44tgtGAc7 .head-item {
  text-align: center;
  color: #232323;
}
.cid-s44tgtGAc7 .body-item {
  text-align: center;
}
.cid-s44tgujYRJ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s44tgujYRJ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s44tgujYRJ div.b {
  padding-top: 2rem;
}
.cid-s44tgujYRJ H5 {
  color: #232323;
}
.cid-s44ts8FfqG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44ts8FfqG .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44ts8FfqG .section-text {
  padding: 2rem 0;
}
.cid-s44ts8FfqG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44ts8FfqG .inner-container {
    width: 100% !important;
  }
}
.cid-v7vC2OnbLY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vC2OnbLY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vC2OnbLY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vC2OnbLY .row {
  justify-content: center;
}
.cid-v7vC2OnbLY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vC2OnbLY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vC2OnbLY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vC2OnbLY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vC2OnbLY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vC2OnbLY .mbr-text_1,
.cid-v7vC2OnbLY .mbr-text_2,
.cid-v7vC2OnbLY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vC2OnbLY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vC2OnbLY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vC2OnbLY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vC2OnbLY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vC2OnbLY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vC2OnbLY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vC2OnbLY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vC2OnbLY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vC2OnbLY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vC2OnbLY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vC2OnbLY .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vC2OnbLY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vC2OnbLY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vC3vMDqy {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vC3vMDqy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vC3vMDqy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vC3vMDqy .row {
  justify-content: center;
}
.cid-v7vC3vMDqy .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vC3vMDqy .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vC3vMDqy .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vC3vMDqy .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vC3vMDqy .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vC3vMDqy .mbr-text_1,
.cid-v7vC3vMDqy .mbr-text_2,
.cid-v7vC3vMDqy .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vC3vMDqy .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vC3vMDqy .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vC3vMDqy .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vC3vMDqy .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vC3vMDqy .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vC3vMDqy .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vC3vMDqy .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vC3vMDqy .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vC3vMDqy .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vC3vMDqy .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vC3vMDqy .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vC3vMDqy .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vC3vMDqy .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s44ts9n3ky {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44ts9n3ky .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44ts9n3ky .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s44ts9n3ky .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44ts9n3ky .inner-container {
    width: 100% !important;
  }
}
.cid-v8aDMEUm7G {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aDMEUm7G .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aDMEUm7G .container-table {
  margin: 0 auto;
}
.cid-v8aDMEUm7G .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aDMEUm7G .dataTables_wrapper {
  display: block;
}
.cid-v8aDMEUm7G .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aDMEUm7G .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aDMEUm7G table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aDMEUm7G table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aDMEUm7G table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aDMEUm7G table td {
  border-top: 1px solid #232323;
}
.cid-v8aDMEUm7G .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aDMEUm7G .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aDMEUm7G .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aDMEUm7G .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aDMEUm7G .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aDMEUm7G .dataTables_filter {
    text-align: center;
  }
  .cid-v8aDMEUm7G .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aDMEUm7G .mbr-section-title {
  color: #232323;
}
.cid-v8aDMEUm7G .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aDMEUm7G .body-item {
  text-align: center;
}
.cid-s44ts9zq3N {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44ts9zq3N .mbr-section-subtitle {
  color: #767676;
}
.cid-s44ts9zq3N .container-table {
  margin: 0 auto;
}
.cid-s44ts9zq3N .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s44ts9zq3N .dataTables_wrapper {
  display: block;
}
.cid-s44ts9zq3N .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s44ts9zq3N .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s44ts9zq3N table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s44ts9zq3N table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s44ts9zq3N table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s44ts9zq3N table td {
  border-top: 1px solid #232323;
}
.cid-s44ts9zq3N .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s44ts9zq3N .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s44ts9zq3N .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s44ts9zq3N .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s44ts9zq3N .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s44ts9zq3N .dataTables_filter {
    text-align: center;
  }
  .cid-s44ts9zq3N .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s44ts9zq3N .mbr-section-title {
  color: #232323;
}
.cid-s44ts9zq3N .head-item {
  text-align: center;
  color: #232323;
}
.cid-s44ts9zq3N .body-item {
  text-align: center;
}
.cid-s44tsarU4q {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s44tsarU4q .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s44tsarU4q div.b {
  padding-top: 2rem;
}
.cid-s44tsarU4q H5 {
  color: #232323;
}
.cid-s44tDMB3zJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44tDMB3zJ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44tDMB3zJ .section-text {
  padding: 2rem 0;
}
.cid-s44tDMB3zJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44tDMB3zJ .inner-container {
    width: 100% !important;
  }
}
.cid-v7vDsHnO95 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vDsHnO95 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vDsHnO95 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vDsHnO95 .row {
  justify-content: center;
}
.cid-v7vDsHnO95 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vDsHnO95 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vDsHnO95 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vDsHnO95 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vDsHnO95 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vDsHnO95 .mbr-text_1,
.cid-v7vDsHnO95 .mbr-text_2,
.cid-v7vDsHnO95 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vDsHnO95 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vDsHnO95 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vDsHnO95 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vDsHnO95 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vDsHnO95 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vDsHnO95 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vDsHnO95 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vDsHnO95 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vDsHnO95 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vDsHnO95 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vDsHnO95 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vDsHnO95 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vDsHnO95 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vDtr9uoT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vDtr9uoT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vDtr9uoT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vDtr9uoT .row {
  justify-content: center;
}
.cid-v7vDtr9uoT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vDtr9uoT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vDtr9uoT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vDtr9uoT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vDtr9uoT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vDtr9uoT .mbr-text_1,
.cid-v7vDtr9uoT .mbr-text_2,
.cid-v7vDtr9uoT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vDtr9uoT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vDtr9uoT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vDtr9uoT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vDtr9uoT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vDtr9uoT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vDtr9uoT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vDtr9uoT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vDtr9uoT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vDtr9uoT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vDtr9uoT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vDtr9uoT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vDtr9uoT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vDtr9uoT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s44tDNkd9j {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44tDNkd9j .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44tDNkd9j .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s44tDNkd9j .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44tDNkd9j .inner-container {
    width: 100% !important;
  }
}
.cid-v8aDT5k7WU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aDT5k7WU .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aDT5k7WU .container-table {
  margin: 0 auto;
}
.cid-v8aDT5k7WU .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aDT5k7WU .dataTables_wrapper {
  display: block;
}
.cid-v8aDT5k7WU .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aDT5k7WU .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aDT5k7WU table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aDT5k7WU table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aDT5k7WU table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aDT5k7WU table td {
  border-top: 1px solid #232323;
}
.cid-v8aDT5k7WU .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aDT5k7WU .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aDT5k7WU .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aDT5k7WU .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aDT5k7WU .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aDT5k7WU .dataTables_filter {
    text-align: center;
  }
  .cid-v8aDT5k7WU .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aDT5k7WU .mbr-section-title {
  color: #232323;
}
.cid-v8aDT5k7WU .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aDT5k7WU .body-item {
  text-align: center;
}
.cid-s44tDNxw2m {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44tDNxw2m .mbr-section-subtitle {
  color: #767676;
}
.cid-s44tDNxw2m .container-table {
  margin: 0 auto;
}
.cid-s44tDNxw2m .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s44tDNxw2m .dataTables_wrapper {
  display: block;
}
.cid-s44tDNxw2m .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s44tDNxw2m .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s44tDNxw2m table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s44tDNxw2m table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s44tDNxw2m table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s44tDNxw2m table td {
  border-top: 1px solid #232323;
}
.cid-s44tDNxw2m .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s44tDNxw2m .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s44tDNxw2m .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s44tDNxw2m .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s44tDNxw2m .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s44tDNxw2m .dataTables_filter {
    text-align: center;
  }
  .cid-s44tDNxw2m .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s44tDNxw2m .mbr-section-title {
  color: #232323;
}
.cid-s44tDNxw2m .head-item {
  text-align: center;
  color: #232323;
}
.cid-s44tDNxw2m .body-item {
  text-align: center;
}
.cid-s44tDOsStU {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s44tDOsStU .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s44tDOsStU div.b {
  padding-top: 2rem;
}
.cid-s44tDOsStU H5 {
  color: #232323;
}
.cid-s44tPFOmAI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44tPFOmAI .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44tPFOmAI .section-text {
  padding: 2rem 0;
}
.cid-s44tPFOmAI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44tPFOmAI .inner-container {
    width: 100% !important;
  }
}
.cid-v7vE3d6nwn {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vE3d6nwn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vE3d6nwn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vE3d6nwn .row {
  justify-content: center;
}
.cid-v7vE3d6nwn .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vE3d6nwn .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vE3d6nwn .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vE3d6nwn .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vE3d6nwn .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vE3d6nwn .mbr-text_1,
.cid-v7vE3d6nwn .mbr-text_2,
.cid-v7vE3d6nwn .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vE3d6nwn .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vE3d6nwn .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vE3d6nwn .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vE3d6nwn .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vE3d6nwn .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vE3d6nwn .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vE3d6nwn .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vE3d6nwn .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vE3d6nwn .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vE3d6nwn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vE3d6nwn .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vE3d6nwn .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vE3d6nwn .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vE3XMK3p {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vE3XMK3p .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vE3XMK3p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vE3XMK3p .row {
  justify-content: center;
}
.cid-v7vE3XMK3p .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vE3XMK3p .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vE3XMK3p .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vE3XMK3p .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vE3XMK3p .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vE3XMK3p .mbr-text_1,
.cid-v7vE3XMK3p .mbr-text_2,
.cid-v7vE3XMK3p .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vE3XMK3p .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vE3XMK3p .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vE3XMK3p .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vE3XMK3p .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vE3XMK3p .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vE3XMK3p .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vE3XMK3p .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vE3XMK3p .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vE3XMK3p .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vE3XMK3p .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vE3XMK3p .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vE3XMK3p .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vE3XMK3p .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s44tPGqiHZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44tPGqiHZ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44tPGqiHZ .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s44tPGqiHZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44tPGqiHZ .inner-container {
    width: 100% !important;
  }
}
.cid-v8aE1eY96e {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aE1eY96e .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aE1eY96e .container-table {
  margin: 0 auto;
}
.cid-v8aE1eY96e .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aE1eY96e .dataTables_wrapper {
  display: block;
}
.cid-v8aE1eY96e .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aE1eY96e .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aE1eY96e table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aE1eY96e table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aE1eY96e table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aE1eY96e table td {
  border-top: 1px solid #232323;
}
.cid-v8aE1eY96e .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aE1eY96e .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aE1eY96e .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aE1eY96e .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aE1eY96e .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aE1eY96e .dataTables_filter {
    text-align: center;
  }
  .cid-v8aE1eY96e .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aE1eY96e .mbr-section-title {
  color: #232323;
}
.cid-v8aE1eY96e .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aE1eY96e .body-item {
  text-align: center;
}
.cid-s44tPGUVwE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44tPGUVwE .mbr-section-subtitle {
  color: #767676;
}
.cid-s44tPGUVwE .container-table {
  margin: 0 auto;
}
.cid-s44tPGUVwE .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s44tPGUVwE .dataTables_wrapper {
  display: block;
}
.cid-s44tPGUVwE .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s44tPGUVwE .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s44tPGUVwE table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s44tPGUVwE table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s44tPGUVwE table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s44tPGUVwE table td {
  border-top: 1px solid #232323;
}
.cid-s44tPGUVwE .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s44tPGUVwE .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s44tPGUVwE .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s44tPGUVwE .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s44tPGUVwE .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s44tPGUVwE .dataTables_filter {
    text-align: center;
  }
  .cid-s44tPGUVwE .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s44tPGUVwE .mbr-section-title {
  color: #232323;
}
.cid-s44tPGUVwE .head-item {
  text-align: center;
  color: #232323;
}
.cid-s44tPGUVwE .body-item {
  text-align: center;
}
.cid-s44tPHzr4N {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s44tPHzr4N .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s44tPHzr4N div.b {
  padding-top: 2rem;
}
.cid-s44tPHzr4N H5 {
  color: #232323;
}
.cid-s44tZTO45A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44tZTO45A .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44tZTO45A .section-text {
  padding: 2rem 0;
}
.cid-s44tZTO45A .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44tZTO45A .inner-container {
    width: 100% !important;
  }
}
.cid-v7vEgTUwpl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vEgTUwpl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vEgTUwpl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vEgTUwpl .row {
  justify-content: center;
}
.cid-v7vEgTUwpl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vEgTUwpl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vEgTUwpl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vEgTUwpl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vEgTUwpl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vEgTUwpl .mbr-text_1,
.cid-v7vEgTUwpl .mbr-text_2,
.cid-v7vEgTUwpl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vEgTUwpl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vEgTUwpl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vEgTUwpl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vEgTUwpl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vEgTUwpl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vEgTUwpl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vEgTUwpl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vEgTUwpl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vEgTUwpl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vEgTUwpl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vEgTUwpl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vEgTUwpl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vEgTUwpl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vEhK6Bff {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vEhK6Bff .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vEhK6Bff .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vEhK6Bff .row {
  justify-content: center;
}
.cid-v7vEhK6Bff .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vEhK6Bff .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vEhK6Bff .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vEhK6Bff .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vEhK6Bff .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vEhK6Bff .mbr-text_1,
.cid-v7vEhK6Bff .mbr-text_2,
.cid-v7vEhK6Bff .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vEhK6Bff .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vEhK6Bff .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vEhK6Bff .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vEhK6Bff .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vEhK6Bff .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vEhK6Bff .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vEhK6Bff .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vEhK6Bff .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vEhK6Bff .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vEhK6Bff .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vEhK6Bff .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vEhK6Bff .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vEhK6Bff .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s44tZUxMLq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44tZUxMLq .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44tZUxMLq .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s44tZUxMLq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44tZUxMLq .inner-container {
    width: 100% !important;
  }
}
.cid-v8aE7m8omD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aE7m8omD .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aE7m8omD .container-table {
  margin: 0 auto;
}
.cid-v8aE7m8omD .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aE7m8omD .dataTables_wrapper {
  display: block;
}
.cid-v8aE7m8omD .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aE7m8omD .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aE7m8omD table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aE7m8omD table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aE7m8omD table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aE7m8omD table td {
  border-top: 1px solid #232323;
}
.cid-v8aE7m8omD .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aE7m8omD .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aE7m8omD .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aE7m8omD .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aE7m8omD .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aE7m8omD .dataTables_filter {
    text-align: center;
  }
  .cid-v8aE7m8omD .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aE7m8omD .mbr-section-title {
  color: #232323;
}
.cid-v8aE7m8omD .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aE7m8omD .body-item {
  text-align: center;
}
.cid-s44tZULjap {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44tZULjap .mbr-section-subtitle {
  color: #767676;
}
.cid-s44tZULjap .container-table {
  margin: 0 auto;
}
.cid-s44tZULjap .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s44tZULjap .dataTables_wrapper {
  display: block;
}
.cid-s44tZULjap .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s44tZULjap .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s44tZULjap table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s44tZULjap table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s44tZULjap table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s44tZULjap table td {
  border-top: 1px solid #232323;
}
.cid-s44tZULjap .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s44tZULjap .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s44tZULjap .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s44tZULjap .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s44tZULjap .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s44tZULjap .dataTables_filter {
    text-align: center;
  }
  .cid-s44tZULjap .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s44tZULjap .mbr-section-title {
  color: #232323;
}
.cid-s44tZULjap .head-item {
  text-align: center;
  color: #232323;
}
.cid-s44tZULjap .body-item {
  text-align: center;
}
.cid-s44tZVxIOR {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s44tZVxIOR .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s44tZVxIOR div.b {
  padding-top: 2rem;
}
.cid-s44tZVxIOR H5 {
  color: #232323;
}
.cid-s44u9h1NmG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44u9h1NmG .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44u9h1NmG .section-text {
  padding: 2rem 0;
}
.cid-s44u9h1NmG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44u9h1NmG .inner-container {
    width: 100% !important;
  }
}
.cid-v7vERdIRi2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vERdIRi2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vERdIRi2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vERdIRi2 .row {
  justify-content: center;
}
.cid-v7vERdIRi2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vERdIRi2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vERdIRi2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vERdIRi2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vERdIRi2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vERdIRi2 .mbr-text_1,
.cid-v7vERdIRi2 .mbr-text_2,
.cid-v7vERdIRi2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vERdIRi2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vERdIRi2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vERdIRi2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vERdIRi2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vERdIRi2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vERdIRi2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vERdIRi2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vERdIRi2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vERdIRi2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vERdIRi2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vERdIRi2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vERdIRi2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vERdIRi2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vERYgIsp {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vERYgIsp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vERYgIsp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vERYgIsp .row {
  justify-content: center;
}
.cid-v7vERYgIsp .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vERYgIsp .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vERYgIsp .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vERYgIsp .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vERYgIsp .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vERYgIsp .mbr-text_1,
.cid-v7vERYgIsp .mbr-text_2,
.cid-v7vERYgIsp .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vERYgIsp .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vERYgIsp .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vERYgIsp .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vERYgIsp .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vERYgIsp .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vERYgIsp .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vERYgIsp .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vERYgIsp .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vERYgIsp .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vERYgIsp .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vERYgIsp .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vERYgIsp .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vERYgIsp .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s44u9hHvfe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44u9hHvfe .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44u9hHvfe .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s44u9hHvfe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44u9hHvfe .inner-container {
    width: 100% !important;
  }
}
.cid-v8aEdyt7qs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aEdyt7qs .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aEdyt7qs .container-table {
  margin: 0 auto;
}
.cid-v8aEdyt7qs .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aEdyt7qs .dataTables_wrapper {
  display: block;
}
.cid-v8aEdyt7qs .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aEdyt7qs .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aEdyt7qs table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aEdyt7qs table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aEdyt7qs table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aEdyt7qs table td {
  border-top: 1px solid #232323;
}
.cid-v8aEdyt7qs .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aEdyt7qs .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aEdyt7qs .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aEdyt7qs .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aEdyt7qs .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aEdyt7qs .dataTables_filter {
    text-align: center;
  }
  .cid-v8aEdyt7qs .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aEdyt7qs .mbr-section-title {
  color: #232323;
}
.cid-v8aEdyt7qs .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aEdyt7qs .body-item {
  text-align: center;
}
.cid-s44u9hVo4C {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44u9hVo4C .mbr-section-subtitle {
  color: #767676;
}
.cid-s44u9hVo4C .container-table {
  margin: 0 auto;
}
.cid-s44u9hVo4C .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s44u9hVo4C .dataTables_wrapper {
  display: block;
}
.cid-s44u9hVo4C .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s44u9hVo4C .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s44u9hVo4C table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s44u9hVo4C table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s44u9hVo4C table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s44u9hVo4C table td {
  border-top: 1px solid #232323;
}
.cid-s44u9hVo4C .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s44u9hVo4C .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s44u9hVo4C .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s44u9hVo4C .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s44u9hVo4C .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s44u9hVo4C .dataTables_filter {
    text-align: center;
  }
  .cid-s44u9hVo4C .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s44u9hVo4C .mbr-section-title {
  color: #232323;
}
.cid-s44u9hVo4C .head-item {
  text-align: center;
  color: #232323;
}
.cid-s44u9hVo4C .body-item {
  text-align: center;
}
.cid-s44u9izuHz {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s44u9izuHz .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s44u9izuHz div.b {
  padding-top: 2rem;
}
.cid-s44u9izuHz H5 {
  color: #232323;
}
.cid-s44uiMn6f4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44uiMn6f4 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44uiMn6f4 .section-text {
  padding: 2rem 0;
}
.cid-s44uiMn6f4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44uiMn6f4 .inner-container {
    width: 100% !important;
  }
}
.cid-v7vF7VoEmQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vF7VoEmQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vF7VoEmQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vF7VoEmQ .row {
  justify-content: center;
}
.cid-v7vF7VoEmQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vF7VoEmQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vF7VoEmQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vF7VoEmQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vF7VoEmQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vF7VoEmQ .mbr-text_1,
.cid-v7vF7VoEmQ .mbr-text_2,
.cid-v7vF7VoEmQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vF7VoEmQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vF7VoEmQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vF7VoEmQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vF7VoEmQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vF7VoEmQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vF7VoEmQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vF7VoEmQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vF7VoEmQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vF7VoEmQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vF7VoEmQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vF7VoEmQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vF7VoEmQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vF7VoEmQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vF8KQyG4 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vF8KQyG4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vF8KQyG4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vF8KQyG4 .row {
  justify-content: center;
}
.cid-v7vF8KQyG4 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vF8KQyG4 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vF8KQyG4 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vF8KQyG4 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vF8KQyG4 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vF8KQyG4 .mbr-text_1,
.cid-v7vF8KQyG4 .mbr-text_2,
.cid-v7vF8KQyG4 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vF8KQyG4 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vF8KQyG4 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vF8KQyG4 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vF8KQyG4 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vF8KQyG4 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vF8KQyG4 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vF8KQyG4 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vF8KQyG4 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vF8KQyG4 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vF8KQyG4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vF8KQyG4 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vF8KQyG4 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vF8KQyG4 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s44uiN5Ifm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44uiN5Ifm .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44uiN5Ifm .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s44uiN5Ifm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44uiN5Ifm .inner-container {
    width: 100% !important;
  }
}
.cid-v8aEixPSCl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aEixPSCl .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aEixPSCl .container-table {
  margin: 0 auto;
}
.cid-v8aEixPSCl .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aEixPSCl .dataTables_wrapper {
  display: block;
}
.cid-v8aEixPSCl .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aEixPSCl .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aEixPSCl table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aEixPSCl table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aEixPSCl table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aEixPSCl table td {
  border-top: 1px solid #232323;
}
.cid-v8aEixPSCl .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aEixPSCl .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aEixPSCl .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aEixPSCl .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aEixPSCl .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aEixPSCl .dataTables_filter {
    text-align: center;
  }
  .cid-v8aEixPSCl .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aEixPSCl .mbr-section-title {
  color: #232323;
}
.cid-v8aEixPSCl .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aEixPSCl .body-item {
  text-align: center;
}
.cid-s44uiNh2AP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44uiNh2AP .mbr-section-subtitle {
  color: #767676;
}
.cid-s44uiNh2AP .container-table {
  margin: 0 auto;
}
.cid-s44uiNh2AP .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s44uiNh2AP .dataTables_wrapper {
  display: block;
}
.cid-s44uiNh2AP .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s44uiNh2AP .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s44uiNh2AP table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s44uiNh2AP table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s44uiNh2AP table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s44uiNh2AP table td {
  border-top: 1px solid #232323;
}
.cid-s44uiNh2AP .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s44uiNh2AP .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s44uiNh2AP .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s44uiNh2AP .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s44uiNh2AP .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s44uiNh2AP .dataTables_filter {
    text-align: center;
  }
  .cid-s44uiNh2AP .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s44uiNh2AP .mbr-section-title {
  color: #232323;
}
.cid-s44uiNh2AP .head-item {
  text-align: center;
  color: #232323;
}
.cid-s44uiNh2AP .body-item {
  text-align: center;
}
.cid-s44uiNU52V {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s44uiNU52V .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s44uiNU52V div.b {
  padding-top: 2rem;
}
.cid-s44uiNU52V H5 {
  color: #232323;
}
.cid-s44vAkP1i8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44vAkP1i8 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44vAkP1i8 .section-text {
  padding: 2rem 0;
}
.cid-s44vAkP1i8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44vAkP1i8 .inner-container {
    width: 100% !important;
  }
}
.cid-v7rES4fh1h {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rES4fh1h .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rES4fh1h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rES4fh1h .row {
  justify-content: center;
}
.cid-v7rES4fh1h .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rES4fh1h .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rES4fh1h .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rES4fh1h .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rES4fh1h .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rES4fh1h .mbr-text_1,
.cid-v7rES4fh1h .mbr-text_2,
.cid-v7rES4fh1h .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rES4fh1h .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rES4fh1h .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rES4fh1h .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rES4fh1h .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rES4fh1h .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rES4fh1h .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rES4fh1h .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rES4fh1h .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rES4fh1h .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rES4fh1h .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rES4fh1h .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rES4fh1h .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rES4fh1h .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rET0xVKU {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rET0xVKU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rET0xVKU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rET0xVKU .row {
  justify-content: center;
}
.cid-v7rET0xVKU .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rET0xVKU .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rET0xVKU .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rET0xVKU .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rET0xVKU .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rET0xVKU .mbr-text_1,
.cid-v7rET0xVKU .mbr-text_2,
.cid-v7rET0xVKU .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rET0xVKU .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rET0xVKU .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rET0xVKU .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rET0xVKU .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rET0xVKU .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rET0xVKU .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rET0xVKU .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rET0xVKU .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rET0xVKU .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rET0xVKU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rET0xVKU .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rET0xVKU .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rET0xVKU .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s44vAlEP7g {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44vAlEP7g .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44vAlEP7g .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s44vAlEP7g .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44vAlEP7g .inner-container {
    width: 100% !important;
  }
}
.cid-s44wj9FGSy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44wj9FGSy .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44wj9FGSy .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s44wj9FGSy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44wj9FGSy .inner-container {
    width: 100% !important;
  }
}
.cid-s44vVTULng {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s44vVTULng .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s44vVTULng .section-text {
  padding: 2rem 0;
}
.cid-s44vVTULng .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s44vVTULng .inner-container {
    width: 100% !important;
  }
}
.cid-s44vVTULng .section-text DIV {
  text-align: center;
}
.cid-s44vAmvIty {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s44vAmvIty .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s44vAmvIty div.b {
  padding-top: 2rem;
}
.cid-s44vAmvIty H5 {
  color: #232323;
}
.cid-s4dBqn5u3Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s4dBqn5u3Q .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4dBqn5u3Q .section-text {
  padding: 2rem 0;
}
.cid-s4dBqn5u3Q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4dBqn5u3Q .inner-container {
    width: 100% !important;
  }
}
.cid-v7y0sWRFKs {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #db4af7;
}
.cid-v7y0sWRFKs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y0sWRFKs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y0sWRFKs .row {
  justify-content: center;
}
.cid-v7y0sWRFKs .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y0sWRFKs .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y0sWRFKs .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y0sWRFKs .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y0sWRFKs .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y0sWRFKs .mbr-text_1,
.cid-v7y0sWRFKs .mbr-text_2,
.cid-v7y0sWRFKs .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y0sWRFKs .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y0sWRFKs .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y0sWRFKs .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y0sWRFKs .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y0sWRFKs .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y0sWRFKs .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y0sWRFKs .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y0sWRFKs .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y0sWRFKs .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y0sWRFKs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y0sWRFKs .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y0sWRFKs .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y0sWRFKs .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7y0tOowvJ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #db4af7;
}
.cid-v7y0tOowvJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y0tOowvJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y0tOowvJ .row {
  justify-content: center;
}
.cid-v7y0tOowvJ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y0tOowvJ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y0tOowvJ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y0tOowvJ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y0tOowvJ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y0tOowvJ .mbr-text_1,
.cid-v7y0tOowvJ .mbr-text_2,
.cid-v7y0tOowvJ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y0tOowvJ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y0tOowvJ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y0tOowvJ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y0tOowvJ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y0tOowvJ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y0tOowvJ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y0tOowvJ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y0tOowvJ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y0tOowvJ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y0tOowvJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y0tOowvJ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y0tOowvJ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y0tOowvJ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4dBqnQFHD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s4dBqnQFHD .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4dBqnQFHD .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s4dBqnQFHD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4dBqnQFHD .inner-container {
    width: 100% !important;
  }
}
.cid-s4TQ4vuZ4C {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s4TQ4vuZ4C .item {
  padding-bottom: 2rem;
}
.cid-s4TQ4vuZ4C .item-wrapper {
  height: 100%;
}
.cid-s4TQ4vuZ4C .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4TQ4vuZ4C .carousel-control,
.cid-s4TQ4vuZ4C .close {
  background: #1b1b1b;
}
.cid-s4TQ4vuZ4C .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4TQ4vuZ4C .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4TQ4vuZ4C .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4TQ4vuZ4C .close::before {
  content: '\e91a';
}
.cid-s4TQ4vuZ4C .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4TQ4vuZ4C .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4TQ4vuZ4C .carousel-inner > .active {
  display: block;
}
.cid-s4TQ4vuZ4C .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4TQ4vuZ4C .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4TQ4vuZ4C .carousel-control .icon-next,
.cid-s4TQ4vuZ4C .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4TQ4vuZ4C .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4TQ4vuZ4C .carousel-control,
  .cid-s4TQ4vuZ4C .carousel-indicators,
  .cid-s4TQ4vuZ4C .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4TQ4vuZ4C .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4TQ4vuZ4C .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4TQ4vuZ4C .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4TQ4vuZ4C .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4TQ4vuZ4C .carousel-indicators {
    display: none;
  }
}
.cid-s4TQ4vuZ4C .carousel-indicators .active,
.cid-s4TQ4vuZ4C .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4TQ4vuZ4C .carousel-indicators .active {
  background: #fff;
}
.cid-s4TQ4vuZ4C .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4TQ4vuZ4C .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4TQ4vuZ4C .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4TQ4vuZ4C .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4TQ4vuZ4C .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4TQ4vuZ4C .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4TQ4vuZ4C .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4TQ4vuZ4C .carousel {
  width: 100%;
}
.cid-s4TQ4vuZ4C .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4TQ4vuZ4C .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4TQ4vuZ4C .modal.fade .modal-dialog,
.cid-s4TQ4vuZ4C .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4TQ4vuZ4C .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4TQ4vuZ4C a {
  display: block;
}
.cid-s4TQ4vuZ4C a.img {
  pointer-events: none;
}
.cid-s4TQ4vuZ4C H3 {
  color: #232323;
}
.cid-s4dBqo5NV3 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #db4af7;
}
.cid-s4dBqo5NV3 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4dBqo5NV3 div.b {
  padding-top: 2rem;
}
.cid-s4dBqo5NV3 H5 {
  color: #232323;
}
.cid-s4dBECmOe2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s4dBECmOe2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4dBECmOe2 .section-text {
  padding: 2rem 0;
}
.cid-s4dBECmOe2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4dBECmOe2 .inner-container {
    width: 100% !important;
  }
}
.cid-v7y56jDHSW {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #db4af7;
}
.cid-v7y56jDHSW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y56jDHSW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y56jDHSW .row {
  justify-content: center;
}
.cid-v7y56jDHSW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y56jDHSW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y56jDHSW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y56jDHSW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y56jDHSW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y56jDHSW .mbr-text_1,
.cid-v7y56jDHSW .mbr-text_2,
.cid-v7y56jDHSW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y56jDHSW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y56jDHSW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y56jDHSW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y56jDHSW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y56jDHSW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y56jDHSW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y56jDHSW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y56jDHSW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y56jDHSW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y56jDHSW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y56jDHSW .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y56jDHSW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y56jDHSW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7y58DBFPE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #db4af7;
}
.cid-v7y58DBFPE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y58DBFPE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y58DBFPE .row {
  justify-content: center;
}
.cid-v7y58DBFPE .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y58DBFPE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y58DBFPE .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y58DBFPE .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y58DBFPE .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y58DBFPE .mbr-text_1,
.cid-v7y58DBFPE .mbr-text_2,
.cid-v7y58DBFPE .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y58DBFPE .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y58DBFPE .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y58DBFPE .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y58DBFPE .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y58DBFPE .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y58DBFPE .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y58DBFPE .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y58DBFPE .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y58DBFPE .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y58DBFPE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y58DBFPE .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y58DBFPE .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y58DBFPE .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4dBEDaPbm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s4dBEDaPbm .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4dBEDaPbm .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s4dBEDaPbm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4dBEDaPbm .inner-container {
    width: 100% !important;
  }
}
.cid-sw9JM7UUoU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-sw9JM7UUoU .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw9JM7UUoU .section-text {
  padding: 2rem 0;
}
.cid-sw9JM7UUoU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sw9JM7UUoU .inner-container {
    width: 100% !important;
  }
}
.cid-svq7QBxfBB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #db4af7;
}
.cid-svq7P1sBF1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-svq7P1sBF1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svq7P1sBF1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svq7P1sBF1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svq7P1sBF1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svq7P1sBF1 .row > .row {
  display: block;
}
.cid-svq7P1sBF1 .mbr-gallery-item {
  width: 100%;
}
.cid-svq7P1sBF1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svq7P1sBF1 .mbr-gallery-item > div {
  position: relative;
}
.cid-svq7P1sBF1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svq7P1sBF1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svq7P1sBF1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svq7P1sBF1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sw9JP7euvJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #db4af7;
}
.cid-sw9JQmxUIW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-sw9JQmxUIW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sw9JQmxUIW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sw9JQmxUIW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sw9JQmxUIW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sw9JQmxUIW .row > .row {
  display: block;
}
.cid-sw9JQmxUIW .mbr-gallery-item {
  width: 100%;
}
.cid-sw9JQmxUIW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sw9JQmxUIW .mbr-gallery-item > div {
  position: relative;
}
.cid-sw9JQmxUIW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sw9JQmxUIW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sw9JQmxUIW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sw9JQmxUIW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sw9JRAkXUb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #db4af7;
}
.cid-sw9JSU9ZbG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-sw9JSU9ZbG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sw9JSU9ZbG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sw9JSU9ZbG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sw9JSU9ZbG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sw9JSU9ZbG .row > .row {
  display: block;
}
.cid-sw9JSU9ZbG .mbr-gallery-item {
  width: 100%;
}
.cid-sw9JSU9ZbG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sw9JSU9ZbG .mbr-gallery-item > div {
  position: relative;
}
.cid-sw9JSU9ZbG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sw9JSU9ZbG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sw9JSU9ZbG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sw9JSU9ZbG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4dBEDp9dy {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #db4af7;
}
.cid-s4dBEDp9dy .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4dBEDp9dy div.b {
  padding-top: 2rem;
}
.cid-s4dBEDp9dy H5 {
  color: #232323;
}
.cid-s4dBPruk13 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s4dBPruk13 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4dBPruk13 .section-text {
  padding: 2rem 0;
}
.cid-s4dBPruk13 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4dBPruk13 .inner-container {
    width: 100% !important;
  }
}
.cid-v7y5mtPq2b {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #db4af7;
}
.cid-v7y5mtPq2b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y5mtPq2b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y5mtPq2b .row {
  justify-content: center;
}
.cid-v7y5mtPq2b .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y5mtPq2b .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y5mtPq2b .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y5mtPq2b .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y5mtPq2b .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y5mtPq2b .mbr-text_1,
.cid-v7y5mtPq2b .mbr-text_2,
.cid-v7y5mtPq2b .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y5mtPq2b .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y5mtPq2b .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y5mtPq2b .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y5mtPq2b .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y5mtPq2b .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y5mtPq2b .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y5mtPq2b .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y5mtPq2b .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y5mtPq2b .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y5mtPq2b .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y5mtPq2b .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y5mtPq2b .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y5mtPq2b .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7y5nvLbrI {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #db4af7;
}
.cid-v7y5nvLbrI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y5nvLbrI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y5nvLbrI .row {
  justify-content: center;
}
.cid-v7y5nvLbrI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y5nvLbrI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y5nvLbrI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y5nvLbrI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y5nvLbrI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y5nvLbrI .mbr-text_1,
.cid-v7y5nvLbrI .mbr-text_2,
.cid-v7y5nvLbrI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y5nvLbrI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y5nvLbrI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y5nvLbrI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y5nvLbrI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y5nvLbrI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y5nvLbrI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y5nvLbrI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y5nvLbrI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y5nvLbrI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y5nvLbrI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y5nvLbrI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y5nvLbrI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y5nvLbrI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4dBPsb4aA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s4dBPsb4aA .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4dBPsb4aA .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s4dBPsb4aA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4dBPsb4aA .inner-container {
    width: 100% !important;
  }
}
.cid-s4TVZm7KDJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s4TVZm7KDJ .mbr-section-subtitle {
  color: #767676;
}
.cid-s4TVZm7KDJ .container-table {
  margin: 0 auto;
}
.cid-s4TVZm7KDJ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s4TVZm7KDJ .dataTables_wrapper {
  display: block;
}
.cid-s4TVZm7KDJ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s4TVZm7KDJ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s4TVZm7KDJ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s4TVZm7KDJ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s4TVZm7KDJ table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s4TVZm7KDJ table td {
  border-top: 1px solid #232323;
}
.cid-s4TVZm7KDJ table.table {
  background: #db4af7;
}
.cid-s4TVZm7KDJ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s4TVZm7KDJ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s4TVZm7KDJ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s4TVZm7KDJ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s4TVZm7KDJ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s4TVZm7KDJ .dataTables_filter {
    text-align: center;
  }
  .cid-s4TVZm7KDJ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s4TVZm7KDJ .mbr-section-title {
  color: #ff3366;
}
.cid-s4TVZm7KDJ .head-item {
  text-align: center;
  color: #232323;
}
.cid-s4TVZm7KDJ .body-item {
  text-align: center;
  color: #232323;
}
.cid-suLdzndB52 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-suLdzndB52 .mbr-section-subtitle {
  color: #767676;
}
.cid-suLdzndB52 .container-table {
  margin: 0 auto;
}
.cid-suLdzndB52 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-suLdzndB52 .dataTables_wrapper {
  display: block;
}
.cid-suLdzndB52 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-suLdzndB52 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-suLdzndB52 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-suLdzndB52 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-suLdzndB52 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-suLdzndB52 table td {
  border-top: 1px solid #232323;
}
.cid-suLdzndB52 table.table {
  background: #db4af7;
}
.cid-suLdzndB52 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-suLdzndB52 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-suLdzndB52 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-suLdzndB52 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-suLdzndB52 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-suLdzndB52 .dataTables_filter {
    text-align: center;
  }
  .cid-suLdzndB52 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-suLdzndB52 .mbr-section-title {
  color: #ff3366;
}
.cid-suLdzndB52 .head-item {
  text-align: center;
  color: #f7ed4a;
}
.cid-suLdzndB52 .body-item {
  text-align: center;
}
.cid-suLf7WOkH9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-suLf7WOkH9 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suLf7WOkH9 .section-text {
  padding: 2rem 0;
}
.cid-suLf7WOkH9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suLf7WOkH9 .inner-container {
    width: 100% !important;
  }
}
.cid-suLgAsffno {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-suLgAsffno .mbr-section-subtitle {
  color: #767676;
}
.cid-suLgAsffno .container-table {
  margin: 0 auto;
}
.cid-suLgAsffno .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-suLgAsffno .dataTables_wrapper {
  display: block;
}
.cid-suLgAsffno .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-suLgAsffno .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-suLgAsffno table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-suLgAsffno table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-suLgAsffno table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-suLgAsffno table td {
  border-top: 1px solid #232323;
}
.cid-suLgAsffno table.table {
  background: #db4af7;
}
.cid-suLgAsffno .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-suLgAsffno .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-suLgAsffno .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-suLgAsffno .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-suLgAsffno .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-suLgAsffno .dataTables_filter {
    text-align: center;
  }
  .cid-suLgAsffno .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-suLgAsffno .mbr-section-title {
  color: #ff3366;
}
.cid-suLgAsffno .head-item {
  text-align: center;
  color: #f7ed4a;
}
.cid-suLgAsffno .body-item {
  text-align: center;
}
.cid-suLhKtTwFT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-suLhKtTwFT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suLhKtTwFT .section-text {
  padding: 2rem 0;
}
.cid-suLhKtTwFT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suLhKtTwFT .inner-container {
    width: 100% !important;
  }
}
.cid-suLiVAD6Vf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-suLiVAD6Vf .mbr-section-subtitle {
  color: #767676;
}
.cid-suLiVAD6Vf .container-table {
  margin: 0 auto;
}
.cid-suLiVAD6Vf .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-suLiVAD6Vf .dataTables_wrapper {
  display: block;
}
.cid-suLiVAD6Vf .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-suLiVAD6Vf .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-suLiVAD6Vf table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-suLiVAD6Vf table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-suLiVAD6Vf table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-suLiVAD6Vf table td {
  border-top: 1px solid #232323;
}
.cid-suLiVAD6Vf table.table {
  background: #db4af7;
}
.cid-suLiVAD6Vf .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-suLiVAD6Vf .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-suLiVAD6Vf .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-suLiVAD6Vf .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-suLiVAD6Vf .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-suLiVAD6Vf .dataTables_filter {
    text-align: center;
  }
  .cid-suLiVAD6Vf .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-suLiVAD6Vf .mbr-section-title {
  color: #ff3366;
}
.cid-suLiVAD6Vf .head-item {
  text-align: center;
  color: #f7ed4a;
}
.cid-suLiVAD6Vf .body-item {
  text-align: center;
}
.cid-suLjTpGncm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-suLjTpGncm .mbr-section-subtitle {
  color: #767676;
}
.cid-suLjTpGncm .container-table {
  margin: 0 auto;
}
.cid-suLjTpGncm .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-suLjTpGncm .dataTables_wrapper {
  display: block;
}
.cid-suLjTpGncm .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-suLjTpGncm .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-suLjTpGncm table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-suLjTpGncm table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-suLjTpGncm table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-suLjTpGncm table td {
  border-top: 1px solid #232323;
}
.cid-suLjTpGncm table.table {
  background: #db4af7;
}
.cid-suLjTpGncm .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-suLjTpGncm .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-suLjTpGncm .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-suLjTpGncm .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-suLjTpGncm .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-suLjTpGncm .dataTables_filter {
    text-align: center;
  }
  .cid-suLjTpGncm .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-suLjTpGncm .mbr-section-title {
  color: #ff3366;
}
.cid-suLjTpGncm .head-item {
  text-align: center;
  color: #f7ed4a;
}
.cid-suLjTpGncm .body-item {
  text-align: center;
}
.cid-s4dBPsrs4i {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #db4af7;
}
.cid-s4dBPsrs4i .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4dBPsrs4i div.b {
  padding-top: 2rem;
}
.cid-s4dBPsrs4i H5 {
  color: #232323;
}
.cid-s4dC5S1OXm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s4dC5S1OXm .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4dC5S1OXm .section-text {
  padding: 2rem 0;
}
.cid-s4dC5S1OXm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4dC5S1OXm .inner-container {
    width: 100% !important;
  }
}
.cid-v7y5JCYz4o {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #db4af7;
}
.cid-v7y5JCYz4o .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y5JCYz4o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y5JCYz4o .row {
  justify-content: center;
}
.cid-v7y5JCYz4o .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y5JCYz4o .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y5JCYz4o .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y5JCYz4o .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y5JCYz4o .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y5JCYz4o .mbr-text_1,
.cid-v7y5JCYz4o .mbr-text_2,
.cid-v7y5JCYz4o .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y5JCYz4o .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y5JCYz4o .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y5JCYz4o .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y5JCYz4o .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y5JCYz4o .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y5JCYz4o .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y5JCYz4o .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y5JCYz4o .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y5JCYz4o .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y5JCYz4o .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y5JCYz4o .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y5JCYz4o .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y5JCYz4o .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7y5Kx8fLi {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #db4af7;
}
.cid-v7y5Kx8fLi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y5Kx8fLi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y5Kx8fLi .row {
  justify-content: center;
}
.cid-v7y5Kx8fLi .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y5Kx8fLi .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y5Kx8fLi .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y5Kx8fLi .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y5Kx8fLi .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y5Kx8fLi .mbr-text_1,
.cid-v7y5Kx8fLi .mbr-text_2,
.cid-v7y5Kx8fLi .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y5Kx8fLi .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y5Kx8fLi .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y5Kx8fLi .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y5Kx8fLi .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y5Kx8fLi .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y5Kx8fLi .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y5Kx8fLi .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y5Kx8fLi .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y5Kx8fLi .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y5Kx8fLi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y5Kx8fLi .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y5Kx8fLi .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y5Kx8fLi .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4dC5SFFiM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s4dC5SFFiM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4dC5SFFiM .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s4dC5SFFiM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4dC5SFFiM .inner-container {
    width: 100% !important;
  }
}
.cid-suLlMidtE8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #db4af7;
}
.cid-suLlDauseN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-suLlDauseN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suLlDauseN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suLlDauseN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suLlDauseN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suLlDauseN .row > .row {
  display: block;
}
.cid-suLlDauseN .mbr-gallery-item {
  width: 100%;
}
.cid-suLlDauseN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suLlDauseN .mbr-gallery-item > div {
  position: relative;
}
.cid-suLlDauseN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suLlDauseN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suLlDauseN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suLlDauseN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8p8kgTqTu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s8p8kgTqTu .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s8p8kgTqTu .section-text {
  padding: 2rem 0;
}
.cid-s8p8kgTqTu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s8p8kgTqTu .inner-container {
    width: 100% !important;
  }
}
.cid-s8p8kgTqTu .section-text DIV {
  text-align: center;
}
.cid-s4dC5SU3Si {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s4dC5SU3Si .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4dC5SU3Si div.b {
  padding-top: 2rem;
}
.cid-s4dC5SU3Si H5 {
  color: #232323;
}
.cid-s4eIEFowNR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eIEFowNR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eIEFowNR .section-text {
  padding: 2rem 0;
}
.cid-s4eIEFowNR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eIEFowNR .inner-container {
    width: 100% !important;
  }
}
.cid-v7fdYpPAM9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7fdYpPAM9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fdYpPAM9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fdYpPAM9 .row {
  justify-content: center;
}
.cid-v7fdYpPAM9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fdYpPAM9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fdYpPAM9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fdYpPAM9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fdYpPAM9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fdYpPAM9 .mbr-text_1,
.cid-v7fdYpPAM9 .mbr-text_2,
.cid-v7fdYpPAM9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fdYpPAM9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fdYpPAM9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fdYpPAM9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fdYpPAM9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fdYpPAM9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fdYpPAM9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fdYpPAM9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fdYpPAM9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fdYpPAM9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fdYpPAM9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fdYpPAM9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fdYpPAM9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fdYpPAM9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7fdZl0mbG {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7fdZl0mbG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fdZl0mbG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fdZl0mbG .row {
  justify-content: center;
}
.cid-v7fdZl0mbG .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fdZl0mbG .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fdZl0mbG .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fdZl0mbG .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fdZl0mbG .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fdZl0mbG .mbr-text_1,
.cid-v7fdZl0mbG .mbr-text_2,
.cid-v7fdZl0mbG .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fdZl0mbG .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fdZl0mbG .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fdZl0mbG .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fdZl0mbG .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fdZl0mbG .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fdZl0mbG .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fdZl0mbG .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fdZl0mbG .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fdZl0mbG .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fdZl0mbG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fdZl0mbG .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fdZl0mbG .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fdZl0mbG .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4eIEFWcZb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eIEFWcZb .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eIEFWcZb .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4eIEFWcZb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eIEFWcZb .inner-container {
    width: 100% !important;
  }
}
.cid-s4eIEGpVBW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eIEGpVBW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eIEGpVBW .section-text {
  padding: 2rem 0;
}
.cid-s4eIEGpVBW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eIEGpVBW .inner-container {
    width: 100% !important;
  }
}
.cid-su73UQaQLj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-su73UQaQLj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-su73UQaQLj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-su73UQaQLj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-su73UQaQLj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-su73UQaQLj .row > .row {
  display: block;
}
.cid-su73UQaQLj .mbr-gallery-item {
  width: 100%;
}
.cid-su73UQaQLj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-su73UQaQLj .mbr-gallery-item > div {
  position: relative;
}
.cid-su73UQaQLj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-su73UQaQLj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-su73UQaQLj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-su73UQaQLj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4eIEHfW4B {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4eIEHfW4B .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4eIEHfW4B div.b {
  padding-top: 2rem;
}
.cid-s4eIEHfW4B H5 {
  color: #232323;
}
.cid-s4eJno9L9s {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eJno9L9s .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eJno9L9s .section-text {
  padding: 2rem 0;
}
.cid-s4eJno9L9s .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eJno9L9s .inner-container {
    width: 100% !important;
  }
}
.cid-v7feywj4Ri {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7feywj4Ri .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7feywj4Ri .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7feywj4Ri .row {
  justify-content: center;
}
.cid-v7feywj4Ri .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7feywj4Ri .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7feywj4Ri .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7feywj4Ri .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7feywj4Ri .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7feywj4Ri .mbr-text_1,
.cid-v7feywj4Ri .mbr-text_2,
.cid-v7feywj4Ri .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7feywj4Ri .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7feywj4Ri .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7feywj4Ri .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7feywj4Ri .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7feywj4Ri .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7feywj4Ri .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7feywj4Ri .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7feywj4Ri .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7feywj4Ri .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7feywj4Ri .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7feywj4Ri .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7feywj4Ri .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7feywj4Ri .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7fezqGf9p {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7fezqGf9p .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fezqGf9p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fezqGf9p .row {
  justify-content: center;
}
.cid-v7fezqGf9p .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fezqGf9p .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fezqGf9p .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fezqGf9p .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fezqGf9p .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fezqGf9p .mbr-text_1,
.cid-v7fezqGf9p .mbr-text_2,
.cid-v7fezqGf9p .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fezqGf9p .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fezqGf9p .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fezqGf9p .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fezqGf9p .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fezqGf9p .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fezqGf9p .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fezqGf9p .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fezqGf9p .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fezqGf9p .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fezqGf9p .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fezqGf9p .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fezqGf9p .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fezqGf9p .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4eJnoGc5J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eJnoGc5J .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eJnoGc5J .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4eJnoGc5J .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eJnoGc5J .inner-container {
    width: 100% !important;
  }
}
.cid-s4eJnpaJHx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eJnpaJHx .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eJnpaJHx .section-text {
  padding: 2rem 0;
}
.cid-s4eJnpaJHx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eJnpaJHx .inner-container {
    width: 100% !important;
  }
}
.cid-su6XcuWXRK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-su6XcuWXRK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-su6XcuWXRK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-su6XcuWXRK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-su6XcuWXRK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-su6XcuWXRK .row > .row {
  display: block;
}
.cid-su6XcuWXRK .mbr-gallery-item {
  width: 100%;
}
.cid-su6XcuWXRK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-su6XcuWXRK .mbr-gallery-item > div {
  position: relative;
}
.cid-su6XcuWXRK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-su6XcuWXRK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-su6XcuWXRK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-su6XcuWXRK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4eJnpTxLG {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4eJnpTxLG .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4eJnpTxLG div.b {
  padding-top: 2rem;
}
.cid-s4eJnpTxLG H5 {
  color: #232323;
}
.cid-s4eJTsd1Ms {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eJTsd1Ms .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eJTsd1Ms .section-text {
  padding: 2rem 0;
}
.cid-s4eJTsd1Ms .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eJTsd1Ms .inner-container {
    width: 100% !important;
  }
}
.cid-v7feSWeegt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7feSWeegt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7feSWeegt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7feSWeegt .row {
  justify-content: center;
}
.cid-v7feSWeegt .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7feSWeegt .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7feSWeegt .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7feSWeegt .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7feSWeegt .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7feSWeegt .mbr-text_1,
.cid-v7feSWeegt .mbr-text_2,
.cid-v7feSWeegt .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7feSWeegt .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7feSWeegt .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7feSWeegt .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7feSWeegt .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7feSWeegt .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7feSWeegt .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7feSWeegt .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7feSWeegt .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7feSWeegt .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7feSWeegt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7feSWeegt .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7feSWeegt .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7feSWeegt .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7feTL6WPx {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7feTL6WPx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7feTL6WPx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7feTL6WPx .row {
  justify-content: center;
}
.cid-v7feTL6WPx .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7feTL6WPx .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7feTL6WPx .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7feTL6WPx .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7feTL6WPx .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7feTL6WPx .mbr-text_1,
.cid-v7feTL6WPx .mbr-text_2,
.cid-v7feTL6WPx .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7feTL6WPx .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7feTL6WPx .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7feTL6WPx .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7feTL6WPx .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7feTL6WPx .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7feTL6WPx .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7feTL6WPx .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7feTL6WPx .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7feTL6WPx .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7feTL6WPx .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7feTL6WPx .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7feTL6WPx .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7feTL6WPx .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4eJTsSXRl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eJTsSXRl .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eJTsSXRl .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4eJTsSXRl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eJTsSXRl .inner-container {
    width: 100% !important;
  }
}
.cid-s4eJTtIgUl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eJTtIgUl .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eJTtIgUl .section-text {
  padding: 2rem 0;
}
.cid-s4eJTtIgUl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eJTtIgUl .inner-container {
    width: 100% !important;
  }
}
.cid-su76q7BeI0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-su76q7BeI0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-su76q7BeI0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-su76q7BeI0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-su76q7BeI0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-su76q7BeI0 .row > .row {
  display: block;
}
.cid-su76q7BeI0 .mbr-gallery-item {
  width: 100%;
}
.cid-su76q7BeI0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-su76q7BeI0 .mbr-gallery-item > div {
  position: relative;
}
.cid-su76q7BeI0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-su76q7BeI0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-su76q7BeI0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-su76q7BeI0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4eJTvrYe3 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4eJTvrYe3 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4eJTvrYe3 div.b {
  padding-top: 2rem;
}
.cid-s4eJTvrYe3 H5 {
  color: #232323;
}
.cid-s4eKIidYwH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eKIidYwH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eKIidYwH .section-text {
  padding: 2rem 0;
}
.cid-s4eKIidYwH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eKIidYwH .inner-container {
    width: 100% !important;
  }
}
.cid-v7ffe31apW {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7ffe31apW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ffe31apW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ffe31apW .row {
  justify-content: center;
}
.cid-v7ffe31apW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ffe31apW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ffe31apW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ffe31apW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ffe31apW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ffe31apW .mbr-text_1,
.cid-v7ffe31apW .mbr-text_2,
.cid-v7ffe31apW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ffe31apW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ffe31apW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ffe31apW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ffe31apW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ffe31apW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ffe31apW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ffe31apW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ffe31apW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ffe31apW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ffe31apW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ffe31apW .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ffe31apW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ffe31apW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7fff0DFGz {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7fff0DFGz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fff0DFGz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fff0DFGz .row {
  justify-content: center;
}
.cid-v7fff0DFGz .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fff0DFGz .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fff0DFGz .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fff0DFGz .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fff0DFGz .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fff0DFGz .mbr-text_1,
.cid-v7fff0DFGz .mbr-text_2,
.cid-v7fff0DFGz .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fff0DFGz .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fff0DFGz .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fff0DFGz .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fff0DFGz .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fff0DFGz .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fff0DFGz .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fff0DFGz .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fff0DFGz .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fff0DFGz .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fff0DFGz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fff0DFGz .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fff0DFGz .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fff0DFGz .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4eKIiJt9G {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eKIiJt9G .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eKIiJt9G .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4eKIiJt9G .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eKIiJt9G .inner-container {
    width: 100% !important;
  }
}
.cid-s4eKIjhfIZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eKIjhfIZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eKIjhfIZ .section-text {
  padding: 2rem 0;
}
.cid-s4eKIjhfIZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eKIjhfIZ .inner-container {
    width: 100% !important;
  }
}
.cid-su77Ouz9l0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-su77Ouz9l0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-su77Ouz9l0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-su77Ouz9l0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-su77Ouz9l0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-su77Ouz9l0 .row > .row {
  display: block;
}
.cid-su77Ouz9l0 .mbr-gallery-item {
  width: 100%;
}
.cid-su77Ouz9l0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-su77Ouz9l0 .mbr-gallery-item > div {
  position: relative;
}
.cid-su77Ouz9l0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-su77Ouz9l0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-su77Ouz9l0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-su77Ouz9l0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4eKIkdhYy {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4eKIkdhYy .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4eKIkdhYy div.b {
  padding-top: 2rem;
}
.cid-s4eKIkdhYy H5 {
  color: #232323;
}
.cid-s4eM1E5eAO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eM1E5eAO .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eM1E5eAO .section-text {
  padding: 2rem 0;
}
.cid-s4eM1E5eAO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eM1E5eAO .inner-container {
    width: 100% !important;
  }
}
.cid-v7fhnSdNFR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7fhnSdNFR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fhnSdNFR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fhnSdNFR .row {
  justify-content: center;
}
.cid-v7fhnSdNFR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fhnSdNFR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fhnSdNFR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fhnSdNFR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fhnSdNFR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fhnSdNFR .mbr-text_1,
.cid-v7fhnSdNFR .mbr-text_2,
.cid-v7fhnSdNFR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fhnSdNFR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fhnSdNFR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fhnSdNFR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fhnSdNFR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fhnSdNFR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fhnSdNFR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fhnSdNFR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fhnSdNFR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fhnSdNFR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fhnSdNFR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fhnSdNFR .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fhnSdNFR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fhnSdNFR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7fhoIs8Ku {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7fhoIs8Ku .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fhoIs8Ku .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fhoIs8Ku .row {
  justify-content: center;
}
.cid-v7fhoIs8Ku .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fhoIs8Ku .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fhoIs8Ku .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fhoIs8Ku .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fhoIs8Ku .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fhoIs8Ku .mbr-text_1,
.cid-v7fhoIs8Ku .mbr-text_2,
.cid-v7fhoIs8Ku .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fhoIs8Ku .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fhoIs8Ku .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fhoIs8Ku .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fhoIs8Ku .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fhoIs8Ku .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fhoIs8Ku .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fhoIs8Ku .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fhoIs8Ku .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fhoIs8Ku .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fhoIs8Ku .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fhoIs8Ku .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fhoIs8Ku .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fhoIs8Ku .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4eM1EDoyQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eM1EDoyQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eM1EDoyQ .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4eM1EDoyQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eM1EDoyQ .inner-container {
    width: 100% !important;
  }
}
.cid-s4eM1F2RwZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eM1F2RwZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eM1F2RwZ .section-text {
  padding: 2rem 0;
}
.cid-s4eM1F2RwZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eM1F2RwZ .inner-container {
    width: 100% !important;
  }
}
.cid-su7aoNce8x {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-su7aoNce8x .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-su7aoNce8x .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-su7aoNce8x .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-su7aoNce8x .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-su7aoNce8x .row > .row {
  display: block;
}
.cid-su7aoNce8x .mbr-gallery-item {
  width: 100%;
}
.cid-su7aoNce8x .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-su7aoNce8x .mbr-gallery-item > div {
  position: relative;
}
.cid-su7aoNce8x .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-su7aoNce8x .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-su7aoNce8x .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-su7aoNce8x .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4eM1FLnuI {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4eM1FLnuI .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4eM1FLnuI div.b {
  padding-top: 2rem;
}
.cid-s4eM1FLnuI H5 {
  color: #232323;
}
.cid-s4eMsjOJ4t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eMsjOJ4t .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eMsjOJ4t .section-text {
  padding: 2rem 0;
}
.cid-s4eMsjOJ4t .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eMsjOJ4t .inner-container {
    width: 100% !important;
  }
}
.cid-v7fhNqgCby {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7fhNqgCby .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fhNqgCby .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fhNqgCby .row {
  justify-content: center;
}
.cid-v7fhNqgCby .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fhNqgCby .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fhNqgCby .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fhNqgCby .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fhNqgCby .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fhNqgCby .mbr-text_1,
.cid-v7fhNqgCby .mbr-text_2,
.cid-v7fhNqgCby .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fhNqgCby .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fhNqgCby .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fhNqgCby .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fhNqgCby .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fhNqgCby .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fhNqgCby .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fhNqgCby .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fhNqgCby .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fhNqgCby .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fhNqgCby .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fhNqgCby .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fhNqgCby .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fhNqgCby .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7fhOjxb06 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7fhOjxb06 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fhOjxb06 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fhOjxb06 .row {
  justify-content: center;
}
.cid-v7fhOjxb06 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fhOjxb06 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fhOjxb06 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fhOjxb06 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fhOjxb06 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fhOjxb06 .mbr-text_1,
.cid-v7fhOjxb06 .mbr-text_2,
.cid-v7fhOjxb06 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fhOjxb06 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fhOjxb06 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fhOjxb06 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fhOjxb06 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fhOjxb06 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fhOjxb06 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fhOjxb06 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fhOjxb06 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fhOjxb06 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fhOjxb06 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fhOjxb06 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fhOjxb06 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fhOjxb06 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4eMskm8yX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eMskm8yX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eMskm8yX .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4eMskm8yX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eMskm8yX .inner-container {
    width: 100% !important;
  }
}
.cid-s4eMsl1iPJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eMsl1iPJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eMsl1iPJ .section-text {
  padding: 2rem 0;
}
.cid-s4eMsl1iPJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eMsl1iPJ .inner-container {
    width: 100% !important;
  }
}
.cid-su7doxjGPS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-su7doxjGPS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-su7doxjGPS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-su7doxjGPS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-su7doxjGPS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-su7doxjGPS .row > .row {
  display: block;
}
.cid-su7doxjGPS .mbr-gallery-item {
  width: 100%;
}
.cid-su7doxjGPS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-su7doxjGPS .mbr-gallery-item > div {
  position: relative;
}
.cid-su7doxjGPS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-su7doxjGPS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-su7doxjGPS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-su7doxjGPS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4eMsmUtxF {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4eMsmUtxF .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4eMsmUtxF div.b {
  padding-top: 2rem;
}
.cid-s4eMsmUtxF H5 {
  color: #232323;
}
.cid-s4eNqhP0lr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eNqhP0lr .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eNqhP0lr .section-text {
  padding: 2rem 0;
}
.cid-s4eNqhP0lr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eNqhP0lr .inner-container {
    width: 100% !important;
  }
}
.cid-v7mLim6B17 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mLim6B17 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mLim6B17 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mLim6B17 .row {
  justify-content: center;
}
.cid-v7mLim6B17 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mLim6B17 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mLim6B17 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mLim6B17 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mLim6B17 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mLim6B17 .mbr-text_1,
.cid-v7mLim6B17 .mbr-text_2,
.cid-v7mLim6B17 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mLim6B17 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mLim6B17 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mLim6B17 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mLim6B17 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mLim6B17 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mLim6B17 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mLim6B17 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mLim6B17 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mLim6B17 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mLim6B17 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mLim6B17 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mLim6B17 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mLim6B17 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mLjiDdtd {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mLjiDdtd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mLjiDdtd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mLjiDdtd .row {
  justify-content: center;
}
.cid-v7mLjiDdtd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mLjiDdtd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mLjiDdtd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mLjiDdtd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mLjiDdtd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mLjiDdtd .mbr-text_1,
.cid-v7mLjiDdtd .mbr-text_2,
.cid-v7mLjiDdtd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mLjiDdtd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mLjiDdtd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mLjiDdtd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mLjiDdtd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mLjiDdtd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mLjiDdtd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mLjiDdtd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mLjiDdtd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mLjiDdtd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mLjiDdtd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mLjiDdtd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mLjiDdtd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mLjiDdtd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4eNqipKc3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eNqipKc3 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eNqipKc3 .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4eNqipKc3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eNqipKc3 .inner-container {
    width: 100% !important;
  }
}
.cid-svIbQ2aweX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-su7eLiRtJV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-su7eLiRtJV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-su7eLiRtJV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-su7eLiRtJV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-su7eLiRtJV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-su7eLiRtJV .row > .row {
  display: block;
}
.cid-su7eLiRtJV .mbr-gallery-item {
  width: 100%;
}
.cid-su7eLiRtJV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-su7eLiRtJV .mbr-gallery-item > div {
  position: relative;
}
.cid-su7eLiRtJV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-su7eLiRtJV .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-su7eLiRtJV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-su7eLiRtJV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4eNql9fTd {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4eNql9fTd .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4eNql9fTd div.b {
  padding-top: 2rem;
}
.cid-s4eNql9fTd H5 {
  color: #232323;
}
.cid-s4ePd1qmEj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4ePd1qmEj .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4ePd1qmEj .section-text {
  padding: 2rem 0;
}
.cid-s4ePd1qmEj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4ePd1qmEj .inner-container {
    width: 100% !important;
  }
}
.cid-v7mKMqHCL1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mKMqHCL1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mKMqHCL1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mKMqHCL1 .row {
  justify-content: center;
}
.cid-v7mKMqHCL1 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mKMqHCL1 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mKMqHCL1 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mKMqHCL1 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mKMqHCL1 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mKMqHCL1 .mbr-text_1,
.cid-v7mKMqHCL1 .mbr-text_2,
.cid-v7mKMqHCL1 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mKMqHCL1 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mKMqHCL1 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mKMqHCL1 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mKMqHCL1 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mKMqHCL1 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mKMqHCL1 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mKMqHCL1 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mKMqHCL1 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mKMqHCL1 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mKMqHCL1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mKMqHCL1 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mKMqHCL1 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mKMqHCL1 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mKCtlOHn {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mKCtlOHn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mKCtlOHn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mKCtlOHn .row {
  justify-content: center;
}
.cid-v7mKCtlOHn .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mKCtlOHn .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mKCtlOHn .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mKCtlOHn .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mKCtlOHn .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mKCtlOHn .mbr-text_1,
.cid-v7mKCtlOHn .mbr-text_2,
.cid-v7mKCtlOHn .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mKCtlOHn .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mKCtlOHn .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mKCtlOHn .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mKCtlOHn .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mKCtlOHn .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mKCtlOHn .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mKCtlOHn .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mKCtlOHn .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mKCtlOHn .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mKCtlOHn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mKCtlOHn .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mKCtlOHn .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mKCtlOHn .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4ePd1QSle {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4ePd1QSle .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4ePd1QSle .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4ePd1QSle .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4ePd1QSle .inner-container {
    width: 100% !important;
  }
}
.cid-svIaqgjZ67 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-svIarSZZnk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-svIarSZZnk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svIarSZZnk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svIarSZZnk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svIarSZZnk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svIarSZZnk .row > .row {
  display: block;
}
.cid-svIarSZZnk .mbr-gallery-item {
  width: 100%;
}
.cid-svIarSZZnk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svIarSZZnk .mbr-gallery-item > div {
  position: relative;
}
.cid-svIarSZZnk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svIarSZZnk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svIarSZZnk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svIarSZZnk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svIb6q2uZR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-svIb6q2uZR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svIb6q2uZR .section-text {
  padding: 2rem 0;
}
.cid-svIb6q2uZR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svIb6q2uZR .inner-container {
    width: 100% !important;
  }
}
.cid-svIb6q2uZR .section-text DIV {
  text-align: center;
}
.cid-s4ePd350Be {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4ePd350Be .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4ePd350Be div.b {
  padding-top: 2rem;
}
.cid-s4ePd350Be H5 {
  color: #232323;
}
.cid-s4ePLfKgKw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4ePLfKgKw .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4ePLfKgKw .section-text {
  padding: 2rem 0;
}
.cid-s4ePLfKgKw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4ePLfKgKw .inner-container {
    width: 100% !important;
  }
}
.cid-v7mLUtPGQ1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mLUtPGQ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mLUtPGQ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mLUtPGQ1 .row {
  justify-content: center;
}
.cid-v7mLUtPGQ1 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mLUtPGQ1 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mLUtPGQ1 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mLUtPGQ1 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mLUtPGQ1 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mLUtPGQ1 .mbr-text_1,
.cid-v7mLUtPGQ1 .mbr-text_2,
.cid-v7mLUtPGQ1 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mLUtPGQ1 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mLUtPGQ1 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mLUtPGQ1 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mLUtPGQ1 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mLUtPGQ1 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mLUtPGQ1 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mLUtPGQ1 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mLUtPGQ1 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mLUtPGQ1 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mLUtPGQ1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mLUtPGQ1 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mLUtPGQ1 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mLUtPGQ1 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mLVvbPbQ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mLVvbPbQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mLVvbPbQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mLVvbPbQ .row {
  justify-content: center;
}
.cid-v7mLVvbPbQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mLVvbPbQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mLVvbPbQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mLVvbPbQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mLVvbPbQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mLVvbPbQ .mbr-text_1,
.cid-v7mLVvbPbQ .mbr-text_2,
.cid-v7mLVvbPbQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mLVvbPbQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mLVvbPbQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mLVvbPbQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mLVvbPbQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mLVvbPbQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mLVvbPbQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mLVvbPbQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mLVvbPbQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mLVvbPbQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mLVvbPbQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mLVvbPbQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mLVvbPbQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mLVvbPbQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4ePLgg95d {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4ePLgg95d .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4ePLgg95d .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4ePLgg95d .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4ePLgg95d .inner-container {
    width: 100% !important;
  }
}
.cid-s4ePLgHO0u {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4ePLgHO0u .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4ePLgHO0u .section-text {
  padding: 2rem 0;
}
.cid-s4ePLgHO0u .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4ePLgHO0u .inner-container {
    width: 100% !important;
  }
}
.cid-su7jmGpfru {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-su7jmGpfru .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-su7jmGpfru .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-su7jmGpfru .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-su7jmGpfru .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-su7jmGpfru .row > .row {
  display: block;
}
.cid-su7jmGpfru .mbr-gallery-item {
  width: 100%;
}
.cid-su7jmGpfru .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-su7jmGpfru .mbr-gallery-item > div {
  position: relative;
}
.cid-su7jmGpfru .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-su7jmGpfru .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-su7jmGpfru .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-su7jmGpfru .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-su7mTKQ4y2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-su7mTKQ4y2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-su7mTKQ4y2 .section-text {
  padding: 2rem 0;
}
.cid-su7mTKQ4y2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-su7mTKQ4y2 .inner-container {
    width: 100% !important;
  }
}
.cid-su7jq2FkuF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-su7jq2FkuF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-su7jq2FkuF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-su7jq2FkuF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-su7jq2FkuF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-su7jq2FkuF .row > .row {
  display: block;
}
.cid-su7jq2FkuF .mbr-gallery-item {
  width: 100%;
}
.cid-su7jq2FkuF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-su7jq2FkuF .mbr-gallery-item > div {
  position: relative;
}
.cid-su7jq2FkuF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-su7jq2FkuF .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-su7jq2FkuF .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-su7jq2FkuF .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4ePLhy63i {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4ePLhy63i .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4ePLhy63i div.b {
  padding-top: 2rem;
}
.cid-s4ePLhy63i H5 {
  color: #232323;
}
.cid-s4eSgoWAtI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eSgoWAtI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eSgoWAtI .section-text {
  padding: 2rem 0;
}
.cid-s4eSgoWAtI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eSgoWAtI .inner-container {
    width: 100% !important;
  }
}
.cid-v7mMclOacq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mMclOacq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mMclOacq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mMclOacq .row {
  justify-content: center;
}
.cid-v7mMclOacq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mMclOacq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mMclOacq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mMclOacq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mMclOacq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mMclOacq .mbr-text_1,
.cid-v7mMclOacq .mbr-text_2,
.cid-v7mMclOacq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mMclOacq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mMclOacq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mMclOacq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mMclOacq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mMclOacq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mMclOacq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mMclOacq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mMclOacq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mMclOacq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mMclOacq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mMclOacq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mMclOacq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mMclOacq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mMdzSgTP {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mMdzSgTP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mMdzSgTP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mMdzSgTP .row {
  justify-content: center;
}
.cid-v7mMdzSgTP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mMdzSgTP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mMdzSgTP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mMdzSgTP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mMdzSgTP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mMdzSgTP .mbr-text_1,
.cid-v7mMdzSgTP .mbr-text_2,
.cid-v7mMdzSgTP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mMdzSgTP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mMdzSgTP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mMdzSgTP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mMdzSgTP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mMdzSgTP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mMdzSgTP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mMdzSgTP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mMdzSgTP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mMdzSgTP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mMdzSgTP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mMdzSgTP .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mMdzSgTP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mMdzSgTP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4eSgpnPTa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eSgpnPTa .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eSgpnPTa .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4eSgpnPTa .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eSgpnPTa .inner-container {
    width: 100% !important;
  }
}
.cid-svIckRPDkC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-s4eSgpXWXU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eSgpXWXU .item {
  padding-bottom: 2rem;
}
.cid-s4eSgpXWXU .item-wrapper {
  height: 100%;
}
.cid-s4eSgpXWXU .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4eSgpXWXU .carousel-control,
.cid-s4eSgpXWXU .close {
  background: #1b1b1b;
}
.cid-s4eSgpXWXU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4eSgpXWXU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4eSgpXWXU .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4eSgpXWXU .close::before {
  content: '\e91a';
}
.cid-s4eSgpXWXU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4eSgpXWXU .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4eSgpXWXU .carousel-inner > .active {
  display: block;
}
.cid-s4eSgpXWXU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4eSgpXWXU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4eSgpXWXU .carousel-control .icon-next,
.cid-s4eSgpXWXU .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4eSgpXWXU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4eSgpXWXU .carousel-control,
  .cid-s4eSgpXWXU .carousel-indicators,
  .cid-s4eSgpXWXU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4eSgpXWXU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4eSgpXWXU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4eSgpXWXU .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4eSgpXWXU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4eSgpXWXU .carousel-indicators {
    display: none;
  }
}
.cid-s4eSgpXWXU .carousel-indicators .active,
.cid-s4eSgpXWXU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4eSgpXWXU .carousel-indicators .active {
  background: #fff;
}
.cid-s4eSgpXWXU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4eSgpXWXU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4eSgpXWXU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4eSgpXWXU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4eSgpXWXU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4eSgpXWXU .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4eSgpXWXU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4eSgpXWXU .carousel {
  width: 100%;
}
.cid-s4eSgpXWXU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4eSgpXWXU .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4eSgpXWXU .modal.fade .modal-dialog,
.cid-s4eSgpXWXU .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4eSgpXWXU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4eSgpXWXU a {
  display: block;
}
.cid-s4eSgpXWXU a.img {
  pointer-events: none;
}
.cid-s4eSgrzOVD {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4eSgrzOVD .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4eSgrzOVD div.b {
  padding-top: 2rem;
}
.cid-s4eSgrzOVD H5 {
  color: #232323;
}
.cid-s4eVNFP2UH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eVNFP2UH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eVNFP2UH .section-text {
  padding: 2rem 0;
}
.cid-s4eVNFP2UH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eVNFP2UH .inner-container {
    width: 100% !important;
  }
}
.cid-v7mN3MfjcX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mN3MfjcX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mN3MfjcX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mN3MfjcX .row {
  justify-content: center;
}
.cid-v7mN3MfjcX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mN3MfjcX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mN3MfjcX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mN3MfjcX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mN3MfjcX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mN3MfjcX .mbr-text_1,
.cid-v7mN3MfjcX .mbr-text_2,
.cid-v7mN3MfjcX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mN3MfjcX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mN3MfjcX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mN3MfjcX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mN3MfjcX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mN3MfjcX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mN3MfjcX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mN3MfjcX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mN3MfjcX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mN3MfjcX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mN3MfjcX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mN3MfjcX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mN3MfjcX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mN3MfjcX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mN4IA0Oq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mN4IA0Oq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mN4IA0Oq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mN4IA0Oq .row {
  justify-content: center;
}
.cid-v7mN4IA0Oq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mN4IA0Oq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mN4IA0Oq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mN4IA0Oq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mN4IA0Oq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mN4IA0Oq .mbr-text_1,
.cid-v7mN4IA0Oq .mbr-text_2,
.cid-v7mN4IA0Oq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mN4IA0Oq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mN4IA0Oq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mN4IA0Oq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mN4IA0Oq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mN4IA0Oq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mN4IA0Oq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mN4IA0Oq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mN4IA0Oq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mN4IA0Oq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mN4IA0Oq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mN4IA0Oq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mN4IA0Oq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mN4IA0Oq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4eVNGlgVi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eVNGlgVi .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eVNGlgVi .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4eVNGlgVi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eVNGlgVi .inner-container {
    width: 100% !important;
  }
}
.cid-suUGp8yyx2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-suUGsqS4Ld {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-suUGsqS4Ld .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suUGsqS4Ld .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suUGsqS4Ld .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suUGsqS4Ld .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suUGsqS4Ld .row > .row {
  display: block;
}
.cid-suUGsqS4Ld .mbr-gallery-item {
  width: 100%;
}
.cid-suUGsqS4Ld .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suUGsqS4Ld .mbr-gallery-item > div {
  position: relative;
}
.cid-suUGsqS4Ld .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suUGsqS4Ld .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suUGsqS4Ld .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suUGsqS4Ld .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-suUIl52C8s {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-suUIl52C8s .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUIl52C8s .section-text {
  padding: 2rem 0;
}
.cid-suUIl52C8s .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUIl52C8s .inner-container {
    width: 100% !important;
  }
}
.cid-suUIl52C8s .section-text DIV {
  text-align: center;
}
.cid-s4eVNHH94j {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4eVNHH94j .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4eVNHH94j div.b {
  padding-top: 2rem;
}
.cid-s4eVNHH94j H5 {
  color: #232323;
}
.cid-s4eZM1tdTd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eZM1tdTd .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eZM1tdTd .section-text {
  padding: 2rem 0;
}
.cid-s4eZM1tdTd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eZM1tdTd .inner-container {
    width: 100% !important;
  }
}
.cid-v7mMGUg4vu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mMGUg4vu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mMGUg4vu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mMGUg4vu .row {
  justify-content: center;
}
.cid-v7mMGUg4vu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mMGUg4vu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mMGUg4vu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mMGUg4vu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mMGUg4vu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mMGUg4vu .mbr-text_1,
.cid-v7mMGUg4vu .mbr-text_2,
.cid-v7mMGUg4vu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mMGUg4vu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mMGUg4vu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mMGUg4vu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mMGUg4vu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mMGUg4vu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mMGUg4vu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mMGUg4vu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mMGUg4vu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mMGUg4vu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mMGUg4vu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mMGUg4vu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mMGUg4vu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mMGUg4vu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mMHPC6F1 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mMHPC6F1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mMHPC6F1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mMHPC6F1 .row {
  justify-content: center;
}
.cid-v7mMHPC6F1 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mMHPC6F1 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mMHPC6F1 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mMHPC6F1 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mMHPC6F1 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mMHPC6F1 .mbr-text_1,
.cid-v7mMHPC6F1 .mbr-text_2,
.cid-v7mMHPC6F1 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mMHPC6F1 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mMHPC6F1 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mMHPC6F1 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mMHPC6F1 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mMHPC6F1 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mMHPC6F1 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mMHPC6F1 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mMHPC6F1 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mMHPC6F1 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mMHPC6F1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mMHPC6F1 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mMHPC6F1 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mMHPC6F1 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4eZM1Y4e9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eZM1Y4e9 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eZM1Y4e9 .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4eZM1Y4e9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eZM1Y4e9 .inner-container {
    width: 100% !important;
  }
}
.cid-s4eZM2ErJY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4eZM2ErJY .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4eZM2ErJY .section-text {
  padding: 2rem 0;
}
.cid-s4eZM2ErJY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4eZM2ErJY .inner-container {
    width: 100% !important;
  }
}
.cid-svIcXB03nH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-svIcXB03nH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svIcXB03nH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svIcXB03nH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svIcXB03nH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svIcXB03nH .row > .row {
  display: block;
}
.cid-svIcXB03nH .mbr-gallery-item {
  width: 100%;
}
.cid-svIcXB03nH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svIcXB03nH .mbr-gallery-item > div {
  position: relative;
}
.cid-svIcXB03nH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svIcXB03nH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svIcXB03nH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svIcXB03nH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svIeyOO5WX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-svIeyOO5WX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svIeyOO5WX .section-text {
  padding: 2rem 0;
}
.cid-svIeyOO5WX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svIeyOO5WX .inner-container {
    width: 100% !important;
  }
}
.cid-svIeyOO5WX .section-text DIV {
  text-align: center;
}
.cid-s4eZM3Ko04 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4eZM3Ko04 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4eZM3Ko04 div.b {
  padding-top: 2rem;
}
.cid-s4eZM3Ko04 H5 {
  color: #232323;
}
.cid-s4f0pd8lRI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f0pd8lRI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4f0pd8lRI .section-text {
  padding: 2rem 0;
}
.cid-s4f0pd8lRI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4f0pd8lRI .inner-container {
    width: 100% !important;
  }
}
.cid-v7mNUrlfHK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mNUrlfHK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mNUrlfHK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mNUrlfHK .row {
  justify-content: center;
}
.cid-v7mNUrlfHK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mNUrlfHK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mNUrlfHK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mNUrlfHK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mNUrlfHK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mNUrlfHK .mbr-text_1,
.cid-v7mNUrlfHK .mbr-text_2,
.cid-v7mNUrlfHK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mNUrlfHK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mNUrlfHK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mNUrlfHK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mNUrlfHK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mNUrlfHK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mNUrlfHK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mNUrlfHK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mNUrlfHK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mNUrlfHK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mNUrlfHK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mNUrlfHK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mNUrlfHK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mNUrlfHK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mNVs4zKP {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mNVs4zKP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mNVs4zKP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mNVs4zKP .row {
  justify-content: center;
}
.cid-v7mNVs4zKP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mNVs4zKP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mNVs4zKP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mNVs4zKP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mNVs4zKP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mNVs4zKP .mbr-text_1,
.cid-v7mNVs4zKP .mbr-text_2,
.cid-v7mNVs4zKP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mNVs4zKP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mNVs4zKP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mNVs4zKP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mNVs4zKP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mNVs4zKP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mNVs4zKP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mNVs4zKP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mNVs4zKP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mNVs4zKP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mNVs4zKP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mNVs4zKP .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mNVs4zKP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mNVs4zKP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4f0pdG3Mi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f0pdG3Mi .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4f0pdG3Mi .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4f0pdG3Mi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4f0pdG3Mi .inner-container {
    width: 100% !important;
  }
}
.cid-s4f0pe7o2p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f0pe7o2p .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4f0pe7o2p .section-text {
  padding: 2rem 0;
}
.cid-s4f0pe7o2p .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4f0pe7o2p .inner-container {
    width: 100% !important;
  }
}
.cid-sua2E43udw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sua1kBZ0L3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sua1kBZ0L3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sua1kBZ0L3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sua1kBZ0L3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sua1kBZ0L3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sua1kBZ0L3 .row > .row {
  display: block;
}
.cid-sua1kBZ0L3 .mbr-gallery-item {
  width: 100%;
}
.cid-sua1kBZ0L3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sua1kBZ0L3 .mbr-gallery-item > div {
  position: relative;
}
.cid-sua1kBZ0L3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sua1kBZ0L3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sua1kBZ0L3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sua1kBZ0L3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sua2Fzmml5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sua2GQvTon {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sua2GQvTon .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sua2GQvTon .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sua2GQvTon .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sua2GQvTon .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sua2GQvTon .row > .row {
  display: block;
}
.cid-sua2GQvTon .mbr-gallery-item {
  width: 100%;
}
.cid-sua2GQvTon .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sua2GQvTon .mbr-gallery-item > div {
  position: relative;
}
.cid-sua2GQvTon .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sua2GQvTon .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sua2GQvTon .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sua2GQvTon .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svIf66KCFn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-svIf66KCFn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svIf66KCFn .section-text {
  padding: 2rem 0;
}
.cid-svIf66KCFn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svIf66KCFn .inner-container {
    width: 100% !important;
  }
}
.cid-svIf66KCFn .section-text DIV {
  text-align: center;
}
.cid-s4f0peKfCB {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4f0peKfCB .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4f0peKfCB div.b {
  padding-top: 2rem;
}
.cid-s4f0peKfCB H5 {
  color: #232323;
}
.cid-s4f0Tig9ya {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f0Tig9ya .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4f0Tig9ya .section-text {
  padding: 2rem 0;
}
.cid-s4f0Tig9ya .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4f0Tig9ya .inner-container {
    width: 100% !important;
  }
}
.cid-v7mOkb9Vl2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mOkb9Vl2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mOkb9Vl2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mOkb9Vl2 .row {
  justify-content: center;
}
.cid-v7mOkb9Vl2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mOkb9Vl2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mOkb9Vl2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mOkb9Vl2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mOkb9Vl2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mOkb9Vl2 .mbr-text_1,
.cid-v7mOkb9Vl2 .mbr-text_2,
.cid-v7mOkb9Vl2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mOkb9Vl2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mOkb9Vl2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mOkb9Vl2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mOkb9Vl2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mOkb9Vl2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mOkb9Vl2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mOkb9Vl2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mOkb9Vl2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mOkb9Vl2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mOkb9Vl2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mOkb9Vl2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mOkb9Vl2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mOkb9Vl2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mOl8LUu0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mOl8LUu0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mOl8LUu0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mOl8LUu0 .row {
  justify-content: center;
}
.cid-v7mOl8LUu0 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mOl8LUu0 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mOl8LUu0 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mOl8LUu0 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mOl8LUu0 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mOl8LUu0 .mbr-text_1,
.cid-v7mOl8LUu0 .mbr-text_2,
.cid-v7mOl8LUu0 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mOl8LUu0 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mOl8LUu0 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mOl8LUu0 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mOl8LUu0 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mOl8LUu0 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mOl8LUu0 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mOl8LUu0 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mOl8LUu0 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mOl8LUu0 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mOl8LUu0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mOl8LUu0 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mOl8LUu0 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mOl8LUu0 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4f0TleRQP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f0TleRQP .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4f0TleRQP .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4f0TleRQP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4f0TleRQP .inner-container {
    width: 100% !important;
  }
}
.cid-s4f0TlI7Zg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f0TlI7Zg .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4f0TlI7Zg .section-text {
  padding: 2rem 0;
}
.cid-s4f0TlI7Zg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4f0TlI7Zg .inner-container {
    width: 100% !important;
  }
}
.cid-s4f0TlUXBa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f0TlUXBa .item {
  padding-bottom: 2rem;
}
.cid-s4f0TlUXBa .item-wrapper {
  height: 100%;
}
.cid-s4f0TlUXBa .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4f0TlUXBa .carousel-control,
.cid-s4f0TlUXBa .close {
  background: #1b1b1b;
}
.cid-s4f0TlUXBa .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4f0TlUXBa .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4f0TlUXBa .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4f0TlUXBa .close::before {
  content: '\e91a';
}
.cid-s4f0TlUXBa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4f0TlUXBa .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4f0TlUXBa .carousel-inner > .active {
  display: block;
}
.cid-s4f0TlUXBa .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4f0TlUXBa .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4f0TlUXBa .carousel-control .icon-next,
.cid-s4f0TlUXBa .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4f0TlUXBa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4f0TlUXBa .carousel-control,
  .cid-s4f0TlUXBa .carousel-indicators,
  .cid-s4f0TlUXBa .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4f0TlUXBa .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4f0TlUXBa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4f0TlUXBa .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4f0TlUXBa .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4f0TlUXBa .carousel-indicators {
    display: none;
  }
}
.cid-s4f0TlUXBa .carousel-indicators .active,
.cid-s4f0TlUXBa .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4f0TlUXBa .carousel-indicators .active {
  background: #fff;
}
.cid-s4f0TlUXBa .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4f0TlUXBa .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4f0TlUXBa .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4f0TlUXBa .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4f0TlUXBa .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4f0TlUXBa .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4f0TlUXBa .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4f0TlUXBa .carousel {
  width: 100%;
}
.cid-s4f0TlUXBa .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4f0TlUXBa .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4f0TlUXBa .modal.fade .modal-dialog,
.cid-s4f0TlUXBa .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4f0TlUXBa .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4f0TlUXBa a {
  display: block;
}
.cid-s4f0TlUXBa a.img {
  pointer-events: none;
}
.cid-s4f0Tmj1gw {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4f0Tmj1gw .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4f0Tmj1gw div.b {
  padding-top: 2rem;
}
.cid-s4f0Tmj1gw H5 {
  color: #232323;
}
.cid-s4f15rsYrp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f15rsYrp .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4f15rsYrp .section-text {
  padding: 2rem 0;
}
.cid-s4f15rsYrp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4f15rsYrp .inner-container {
    width: 100% !important;
  }
}
.cid-v7mOR0kMIu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mOR0kMIu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mOR0kMIu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mOR0kMIu .row {
  justify-content: center;
}
.cid-v7mOR0kMIu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mOR0kMIu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mOR0kMIu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mOR0kMIu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mOR0kMIu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mOR0kMIu .mbr-text_1,
.cid-v7mOR0kMIu .mbr-text_2,
.cid-v7mOR0kMIu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mOR0kMIu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mOR0kMIu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mOR0kMIu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mOR0kMIu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mOR0kMIu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mOR0kMIu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mOR0kMIu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mOR0kMIu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mOR0kMIu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mOR0kMIu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mOR0kMIu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mOR0kMIu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mOR0kMIu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mORVttol {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mORVttol .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mORVttol .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mORVttol .row {
  justify-content: center;
}
.cid-v7mORVttol .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mORVttol .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mORVttol .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mORVttol .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mORVttol .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mORVttol .mbr-text_1,
.cid-v7mORVttol .mbr-text_2,
.cid-v7mORVttol .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mORVttol .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mORVttol .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mORVttol .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mORVttol .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mORVttol .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mORVttol .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mORVttol .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mORVttol .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mORVttol .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mORVttol .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mORVttol .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mORVttol .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mORVttol .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4f15s1bPF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f15s1bPF .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4f15s1bPF .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4f15s1bPF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4f15s1bPF .inner-container {
    width: 100% !important;
  }
}
.cid-s4f15srtwt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f15srtwt .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4f15srtwt .section-text {
  padding: 2rem 0;
}
.cid-s4f15srtwt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4f15srtwt .inner-container {
    width: 100% !important;
  }
}
.cid-s4f15sDupu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f15sDupu .item {
  padding-bottom: 2rem;
}
.cid-s4f15sDupu .item-wrapper {
  height: 100%;
}
.cid-s4f15sDupu .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4f15sDupu .carousel-control,
.cid-s4f15sDupu .close {
  background: #1b1b1b;
}
.cid-s4f15sDupu .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4f15sDupu .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4f15sDupu .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4f15sDupu .close::before {
  content: '\e91a';
}
.cid-s4f15sDupu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4f15sDupu .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4f15sDupu .carousel-inner > .active {
  display: block;
}
.cid-s4f15sDupu .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4f15sDupu .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4f15sDupu .carousel-control .icon-next,
.cid-s4f15sDupu .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4f15sDupu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4f15sDupu .carousel-control,
  .cid-s4f15sDupu .carousel-indicators,
  .cid-s4f15sDupu .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4f15sDupu .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4f15sDupu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4f15sDupu .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4f15sDupu .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4f15sDupu .carousel-indicators {
    display: none;
  }
}
.cid-s4f15sDupu .carousel-indicators .active,
.cid-s4f15sDupu .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4f15sDupu .carousel-indicators .active {
  background: #fff;
}
.cid-s4f15sDupu .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4f15sDupu .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4f15sDupu .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4f15sDupu .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4f15sDupu .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4f15sDupu .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4f15sDupu .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4f15sDupu .carousel {
  width: 100%;
}
.cid-s4f15sDupu .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4f15sDupu .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4f15sDupu .modal.fade .modal-dialog,
.cid-s4f15sDupu .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4f15sDupu .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4f15sDupu a {
  display: block;
}
.cid-s4f15sDupu a.img {
  pointer-events: none;
}
.cid-s4f15tjByf {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4f15tjByf .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4f15tjByf div.b {
  padding-top: 2rem;
}
.cid-s4f15tjByf H5 {
  color: #232323;
}
.cid-s4f1j9iR6K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f1j9iR6K .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4f1j9iR6K .section-text {
  padding: 2rem 0;
}
.cid-s4f1j9iR6K .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4f1j9iR6K .inner-container {
    width: 100% !important;
  }
}
.cid-v7mP4ldHHL {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mP4ldHHL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mP4ldHHL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mP4ldHHL .row {
  justify-content: center;
}
.cid-v7mP4ldHHL .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mP4ldHHL .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mP4ldHHL .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mP4ldHHL .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mP4ldHHL .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mP4ldHHL .mbr-text_1,
.cid-v7mP4ldHHL .mbr-text_2,
.cid-v7mP4ldHHL .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mP4ldHHL .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mP4ldHHL .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mP4ldHHL .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mP4ldHHL .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mP4ldHHL .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mP4ldHHL .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mP4ldHHL .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mP4ldHHL .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mP4ldHHL .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mP4ldHHL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mP4ldHHL .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mP4ldHHL .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mP4ldHHL .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mP5asafW {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mP5asafW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mP5asafW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mP5asafW .row {
  justify-content: center;
}
.cid-v7mP5asafW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mP5asafW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mP5asafW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mP5asafW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mP5asafW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mP5asafW .mbr-text_1,
.cid-v7mP5asafW .mbr-text_2,
.cid-v7mP5asafW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mP5asafW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mP5asafW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mP5asafW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mP5asafW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mP5asafW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mP5asafW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mP5asafW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mP5asafW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mP5asafW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mP5asafW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mP5asafW .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mP5asafW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mP5asafW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4f1j9MVfM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f1j9MVfM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4f1j9MVfM .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4f1j9MVfM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4f1j9MVfM .inner-container {
    width: 100% !important;
  }
}
.cid-s4f1jamVrB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f1jamVrB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4f1jamVrB .section-text {
  padding: 2rem 0;
}
.cid-s4f1jamVrB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4f1jamVrB .inner-container {
    width: 100% !important;
  }
}
.cid-s4f1jazBEZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4f1jazBEZ .item {
  padding-bottom: 2rem;
}
.cid-s4f1jazBEZ .item-wrapper {
  height: 100%;
}
.cid-s4f1jazBEZ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4f1jazBEZ .carousel-control,
.cid-s4f1jazBEZ .close {
  background: #1b1b1b;
}
.cid-s4f1jazBEZ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4f1jazBEZ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4f1jazBEZ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4f1jazBEZ .close::before {
  content: '\e91a';
}
.cid-s4f1jazBEZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4f1jazBEZ .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4f1jazBEZ .carousel-inner > .active {
  display: block;
}
.cid-s4f1jazBEZ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4f1jazBEZ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4f1jazBEZ .carousel-control .icon-next,
.cid-s4f1jazBEZ .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4f1jazBEZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4f1jazBEZ .carousel-control,
  .cid-s4f1jazBEZ .carousel-indicators,
  .cid-s4f1jazBEZ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4f1jazBEZ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4f1jazBEZ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4f1jazBEZ .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4f1jazBEZ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4f1jazBEZ .carousel-indicators {
    display: none;
  }
}
.cid-s4f1jazBEZ .carousel-indicators .active,
.cid-s4f1jazBEZ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4f1jazBEZ .carousel-indicators .active {
  background: #fff;
}
.cid-s4f1jazBEZ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4f1jazBEZ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4f1jazBEZ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4f1jazBEZ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4f1jazBEZ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4f1jazBEZ .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4f1jazBEZ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4f1jazBEZ .carousel {
  width: 100%;
}
.cid-s4f1jazBEZ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4f1jazBEZ .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4f1jazBEZ .modal.fade .modal-dialog,
.cid-s4f1jazBEZ .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4f1jazBEZ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4f1jazBEZ a {
  display: block;
}
.cid-s4f1jazBEZ a.img {
  pointer-events: none;
}
.cid-svIiBWpCC1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-svIiBWpCC1 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svIiBWpCC1 .section-text {
  padding: 2rem 0;
}
.cid-svIiBWpCC1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svIiBWpCC1 .inner-container {
    width: 100% !important;
  }
}
.cid-svIiBWpCC1 .section-text DIV {
  text-align: center;
}
.cid-s4f1jb0sB7 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4f1jb0sB7 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4f1jb0sB7 div.b {
  padding-top: 2rem;
}
.cid-s4f1jb0sB7 H5 {
  color: #232323;
}
.cid-s4g6n89iy7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4g6n89iy7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4g6n89iy7 .section-text {
  padding: 2rem 0;
}
.cid-s4g6n89iy7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4g6n89iy7 .inner-container {
    width: 100% !important;
  }
}
.cid-v7mNEKvb7F {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7mNEKvb7F .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mNEKvb7F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mNEKvb7F .row {
  justify-content: center;
}
.cid-v7mNEKvb7F .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mNEKvb7F .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mNEKvb7F .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mNEKvb7F .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mNEKvb7F .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mNEKvb7F .mbr-text_1,
.cid-v7mNEKvb7F .mbr-text_2,
.cid-v7mNEKvb7F .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mNEKvb7F .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mNEKvb7F .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mNEKvb7F .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mNEKvb7F .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mNEKvb7F .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mNEKvb7F .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mNEKvb7F .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mNEKvb7F .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mNEKvb7F .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7mNEKvb7F .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mNEKvb7F .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mNEKvb7F .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mNEKvb7F .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7mNFtmp3A {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7mNFtmp3A .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7mNFtmp3A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7mNFtmp3A .row {
  justify-content: center;
}
.cid-v7mNFtmp3A .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7mNFtmp3A .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7mNFtmp3A .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7mNFtmp3A .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7mNFtmp3A .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7mNFtmp3A .mbr-text_1,
.cid-v7mNFtmp3A .mbr-text_2,
.cid-v7mNFtmp3A .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7mNFtmp3A .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mNFtmp3A .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7mNFtmp3A .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mNFtmp3A .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mNFtmp3A .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mNFtmp3A .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7mNFtmp3A .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7mNFtmp3A .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7mNFtmp3A .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7mNFtmp3A .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7mNFtmp3A .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7mNFtmp3A .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7mNFtmp3A .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4g6n8EtaJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4g6n8EtaJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4g6n8EtaJ .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4g6n8EtaJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4g6n8EtaJ .inner-container {
    width: 100% !important;
  }
}
.cid-s4g6n93pfv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4g6n93pfv .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4g6n93pfv .section-text {
  padding: 2rem 0;
}
.cid-s4g6n93pfv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4g6n93pfv .inner-container {
    width: 100% !important;
  }
}
.cid-su9Zl4ZagU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-su9Zl4ZagU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-su9Zl4ZagU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-su9Zl4ZagU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-su9Zl4ZagU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-su9Zl4ZagU .row > .row {
  display: block;
}
.cid-su9Zl4ZagU .mbr-gallery-item {
  width: 100%;
}
.cid-su9Zl4ZagU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-su9Zl4ZagU .mbr-gallery-item > div {
  position: relative;
}
.cid-su9Zl4ZagU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-su9Zl4ZagU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-su9Zl4ZagU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-su9Zl4ZagU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4g6na8LWM {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4g6na8LWM .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4g6na8LWM div.b {
  padding-top: 2rem;
}
.cid-s4g6na8LWM H5 {
  color: #232323;
}
.cid-s4gaA5cX4t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4gaA5cX4t .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4gaA5cX4t .section-text {
  padding: 2rem 0;
}
.cid-s4gaA5cX4t .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4gaA5cX4t .inner-container {
    width: 100% !important;
  }
}
.cid-v7ffRIzLPu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7ffRIzLPu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ffRIzLPu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ffRIzLPu .row {
  justify-content: center;
}
.cid-v7ffRIzLPu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ffRIzLPu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ffRIzLPu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ffRIzLPu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ffRIzLPu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ffRIzLPu .mbr-text_1,
.cid-v7ffRIzLPu .mbr-text_2,
.cid-v7ffRIzLPu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ffRIzLPu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ffRIzLPu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ffRIzLPu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ffRIzLPu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ffRIzLPu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ffRIzLPu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ffRIzLPu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ffRIzLPu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ffRIzLPu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ffRIzLPu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ffRIzLPu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ffRIzLPu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ffRIzLPu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7ffSzAMrd {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7ffSzAMrd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ffSzAMrd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ffSzAMrd .row {
  justify-content: center;
}
.cid-v7ffSzAMrd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ffSzAMrd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ffSzAMrd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ffSzAMrd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ffSzAMrd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ffSzAMrd .mbr-text_1,
.cid-v7ffSzAMrd .mbr-text_2,
.cid-v7ffSzAMrd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ffSzAMrd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ffSzAMrd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ffSzAMrd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7ffSzAMrd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7ffSzAMrd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ffSzAMrd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ffSzAMrd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ffSzAMrd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ffSzAMrd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7ffSzAMrd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ffSzAMrd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ffSzAMrd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ffSzAMrd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4gaA5KVTp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4gaA5KVTp .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4gaA5KVTp .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4gaA5KVTp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4gaA5KVTp .inner-container {
    width: 100% !important;
  }
}
.cid-s4gaA6b6G8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4gaA6b6G8 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4gaA6b6G8 .section-text {
  padding: 2rem 0;
}
.cid-s4gaA6b6G8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4gaA6b6G8 .inner-container {
    width: 100% !important;
  }
}
.cid-s4gaA6DilH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4gaA6DilH .item {
  padding-bottom: 2rem;
}
.cid-s4gaA6DilH .item-wrapper {
  height: 100%;
}
.cid-s4gaA6DilH .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4gaA6DilH .carousel-control,
.cid-s4gaA6DilH .close {
  background: #1b1b1b;
}
.cid-s4gaA6DilH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4gaA6DilH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4gaA6DilH .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4gaA6DilH .close::before {
  content: '\e91a';
}
.cid-s4gaA6DilH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4gaA6DilH .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4gaA6DilH .carousel-inner > .active {
  display: block;
}
.cid-s4gaA6DilH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4gaA6DilH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4gaA6DilH .carousel-control .icon-next,
.cid-s4gaA6DilH .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4gaA6DilH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4gaA6DilH .carousel-control,
  .cid-s4gaA6DilH .carousel-indicators,
  .cid-s4gaA6DilH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4gaA6DilH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4gaA6DilH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4gaA6DilH .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4gaA6DilH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4gaA6DilH .carousel-indicators {
    display: none;
  }
}
.cid-s4gaA6DilH .carousel-indicators .active,
.cid-s4gaA6DilH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4gaA6DilH .carousel-indicators .active {
  background: #fff;
}
.cid-s4gaA6DilH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4gaA6DilH .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4gaA6DilH .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4gaA6DilH .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4gaA6DilH .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4gaA6DilH .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4gaA6DilH .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4gaA6DilH .carousel {
  width: 100%;
}
.cid-s4gaA6DilH .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4gaA6DilH .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4gaA6DilH .modal.fade .modal-dialog,
.cid-s4gaA6DilH .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4gaA6DilH .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4gaA6DilH a {
  display: block;
}
.cid-s4gaA6DilH a.img {
  pointer-events: none;
}
.cid-s4gaA878Fv {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4gaA878Fv .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4gaA878Fv div.b {
  padding-top: 2rem;
}
.cid-s4gaA878Fv H5 {
  color: #232323;
}
.cid-s4gvc3Lumq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4gvc3Lumq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4gvc3Lumq .section-text {
  padding: 2rem 0;
}
.cid-s4gvc3Lumq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4gvc3Lumq .inner-container {
    width: 100% !important;
  }
}
.cid-v72lr60xHl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v72lr60xHl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72lr60xHl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72lr60xHl .row {
  justify-content: center;
}
.cid-v72lr60xHl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72lr60xHl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72lr60xHl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72lr60xHl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72lr60xHl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72lr60xHl .mbr-text_1,
.cid-v72lr60xHl .mbr-text_2,
.cid-v72lr60xHl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72lr60xHl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72lr60xHl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72lr60xHl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72lr60xHl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72lr60xHl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72lr60xHl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72lr60xHl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72lr60xHl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72lr60xHl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72lr60xHl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72lr60xHl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72lr60xHl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72lr60xHl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72ls82J9j {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v72ls82J9j .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72ls82J9j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72ls82J9j .row {
  justify-content: center;
}
.cid-v72ls82J9j .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72ls82J9j .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72ls82J9j .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72ls82J9j .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72ls82J9j .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72ls82J9j .mbr-text_1,
.cid-v72ls82J9j .mbr-text_2,
.cid-v72ls82J9j .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72ls82J9j .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72ls82J9j .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72ls82J9j .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72ls82J9j .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72ls82J9j .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72ls82J9j .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72ls82J9j .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72ls82J9j .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72ls82J9j .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72ls82J9j .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72ls82J9j .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72ls82J9j .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72ls82J9j .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4gvc4jHuN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4gvc4jHuN .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4gvc4jHuN .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4gvc4jHuN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4gvc4jHuN .inner-container {
    width: 100% !important;
  }
}
.cid-s4gvc4NHX5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4gvc4NHX5 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4gvc4NHX5 .section-text {
  padding: 2rem 0;
}
.cid-s4gvc4NHX5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4gvc4NHX5 .inner-container {
    width: 100% !important;
  }
}
.cid-sua5IVfzc3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sua5IVfzc3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sua5IVfzc3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sua5IVfzc3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sua5IVfzc3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sua5IVfzc3 .row > .row {
  display: block;
}
.cid-sua5IVfzc3 .mbr-gallery-item {
  width: 100%;
}
.cid-sua5IVfzc3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sua5IVfzc3 .mbr-gallery-item > div {
  position: relative;
}
.cid-sua5IVfzc3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sua5IVfzc3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sua5IVfzc3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sua5IVfzc3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4gvc5BCUw {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4gvc5BCUw .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4gvc5BCUw div.b {
  padding-top: 2rem;
}
.cid-s4gvc5BCUw H5 {
  color: #232323;
}
.cid-s4gwvdbI27 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4gwvdbI27 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4gwvdbI27 .section-text {
  padding: 2rem 0;
}
.cid-s4gwvdbI27 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4gwvdbI27 .inner-container {
    width: 100% !important;
  }
}
.cid-v7fgL8tFPF {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7fgL8tFPF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fgL8tFPF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fgL8tFPF .row {
  justify-content: center;
}
.cid-v7fgL8tFPF .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fgL8tFPF .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fgL8tFPF .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fgL8tFPF .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fgL8tFPF .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fgL8tFPF .mbr-text_1,
.cid-v7fgL8tFPF .mbr-text_2,
.cid-v7fgL8tFPF .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fgL8tFPF .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fgL8tFPF .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fgL8tFPF .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fgL8tFPF .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fgL8tFPF .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fgL8tFPF .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fgL8tFPF .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fgL8tFPF .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fgL8tFPF .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fgL8tFPF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fgL8tFPF .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fgL8tFPF .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fgL8tFPF .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7fgM4Lixd {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7fgM4Lixd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fgM4Lixd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fgM4Lixd .row {
  justify-content: center;
}
.cid-v7fgM4Lixd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fgM4Lixd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fgM4Lixd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fgM4Lixd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fgM4Lixd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fgM4Lixd .mbr-text_1,
.cid-v7fgM4Lixd .mbr-text_2,
.cid-v7fgM4Lixd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fgM4Lixd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fgM4Lixd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fgM4Lixd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fgM4Lixd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fgM4Lixd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fgM4Lixd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fgM4Lixd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fgM4Lixd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fgM4Lixd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fgM4Lixd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fgM4Lixd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fgM4Lixd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fgM4Lixd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4gwvdC9xq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4gwvdC9xq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4gwvdC9xq .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4gwvdC9xq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4gwvdC9xq .inner-container {
    width: 100% !important;
  }
}
.cid-s4gwve9svx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4gwve9svx .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4gwve9svx .section-text {
  padding: 2rem 0;
}
.cid-s4gwve9svx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4gwve9svx .inner-container {
    width: 100% !important;
  }
}
.cid-s4gwvekcaZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4gwvekcaZ .item {
  padding-bottom: 2rem;
}
.cid-s4gwvekcaZ .item-wrapper {
  height: 100%;
}
.cid-s4gwvekcaZ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4gwvekcaZ .carousel-control,
.cid-s4gwvekcaZ .close {
  background: #1b1b1b;
}
.cid-s4gwvekcaZ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4gwvekcaZ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4gwvekcaZ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4gwvekcaZ .close::before {
  content: '\e91a';
}
.cid-s4gwvekcaZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4gwvekcaZ .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4gwvekcaZ .carousel-inner > .active {
  display: block;
}
.cid-s4gwvekcaZ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4gwvekcaZ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4gwvekcaZ .carousel-control .icon-next,
.cid-s4gwvekcaZ .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4gwvekcaZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4gwvekcaZ .carousel-control,
  .cid-s4gwvekcaZ .carousel-indicators,
  .cid-s4gwvekcaZ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4gwvekcaZ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4gwvekcaZ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4gwvekcaZ .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4gwvekcaZ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4gwvekcaZ .carousel-indicators {
    display: none;
  }
}
.cid-s4gwvekcaZ .carousel-indicators .active,
.cid-s4gwvekcaZ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4gwvekcaZ .carousel-indicators .active {
  background: #fff;
}
.cid-s4gwvekcaZ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4gwvekcaZ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4gwvekcaZ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4gwvekcaZ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4gwvekcaZ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4gwvekcaZ .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4gwvekcaZ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4gwvekcaZ .carousel {
  width: 100%;
}
.cid-s4gwvekcaZ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4gwvekcaZ .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4gwvekcaZ .modal.fade .modal-dialog,
.cid-s4gwvekcaZ .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4gwvekcaZ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4gwvekcaZ a {
  display: block;
}
.cid-s4gwvekcaZ a.img {
  pointer-events: none;
}
.cid-s4gwvf48fT {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4gwvf48fT .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4gwvf48fT div.b {
  padding-top: 2rem;
}
.cid-s4gwvf48fT H5 {
  color: #232323;
}
.cid-s4gzxTRwgR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4gzxTRwgR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4gzxTRwgR .section-text {
  padding: 2rem 0;
}
.cid-s4gzxTRwgR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4gzxTRwgR .inner-container {
    width: 100% !important;
  }
}
.cid-v7fi8qKTbH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7fi8qKTbH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fi8qKTbH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fi8qKTbH .row {
  justify-content: center;
}
.cid-v7fi8qKTbH .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fi8qKTbH .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fi8qKTbH .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fi8qKTbH .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fi8qKTbH .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fi8qKTbH .mbr-text_1,
.cid-v7fi8qKTbH .mbr-text_2,
.cid-v7fi8qKTbH .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fi8qKTbH .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fi8qKTbH .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fi8qKTbH .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fi8qKTbH .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fi8qKTbH .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fi8qKTbH .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fi8qKTbH .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fi8qKTbH .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fi8qKTbH .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7fi8qKTbH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fi8qKTbH .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fi8qKTbH .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fi8qKTbH .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7fi9eg7Rf {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7fi9eg7Rf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7fi9eg7Rf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7fi9eg7Rf .row {
  justify-content: center;
}
.cid-v7fi9eg7Rf .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7fi9eg7Rf .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7fi9eg7Rf .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7fi9eg7Rf .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7fi9eg7Rf .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7fi9eg7Rf .mbr-text_1,
.cid-v7fi9eg7Rf .mbr-text_2,
.cid-v7fi9eg7Rf .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7fi9eg7Rf .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fi9eg7Rf .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7fi9eg7Rf .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fi9eg7Rf .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fi9eg7Rf .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fi9eg7Rf .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7fi9eg7Rf .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7fi9eg7Rf .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7fi9eg7Rf .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7fi9eg7Rf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7fi9eg7Rf .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7fi9eg7Rf .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7fi9eg7Rf .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4gzxUrCDa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4gzxUrCDa .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4gzxUrCDa .section-text {
  padding: 2rem 0;
  color: #3e69ea;
}
.cid-s4gzxUrCDa .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4gzxUrCDa .inner-container {
    width: 100% !important;
  }
}
.cid-svI2Vis8CD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-svI2WZd2tA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-svI2WZd2tA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svI2WZd2tA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svI2WZd2tA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svI2WZd2tA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svI2WZd2tA .row > .row {
  display: block;
}
.cid-svI2WZd2tA .mbr-gallery-item {
  width: 100%;
}
.cid-svI2WZd2tA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svI2WZd2tA .mbr-gallery-item > div {
  position: relative;
}
.cid-svI2WZd2tA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svI2WZd2tA .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svI2WZd2tA .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svI2WZd2tA .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4gzxVBA57 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4gzxVBA57 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4gzxVBA57 div.b {
  padding-top: 2rem;
}
.cid-s4gzxVBA57 H5 {
  color: #232323;
}
.cid-s4h5pqmclI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4h5pqmclI .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4h5pqmclI .section-text {
  padding: 2rem 0;
}
.cid-s4h5pqmclI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4h5pqmclI .inner-container {
    width: 100% !important;
  }
}
.cid-v7rFiFdcQa {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rFiFdcQa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rFiFdcQa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rFiFdcQa .row {
  justify-content: center;
}
.cid-v7rFiFdcQa .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rFiFdcQa .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rFiFdcQa .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rFiFdcQa .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rFiFdcQa .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rFiFdcQa .mbr-text_1,
.cid-v7rFiFdcQa .mbr-text_2,
.cid-v7rFiFdcQa .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rFiFdcQa .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFiFdcQa .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rFiFdcQa .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rFiFdcQa .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rFiFdcQa .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFiFdcQa .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rFiFdcQa .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rFiFdcQa .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFiFdcQa .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rFiFdcQa .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rFiFdcQa .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rFiFdcQa .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rFiFdcQa .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rFjzHJ6O {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rFjzHJ6O .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rFjzHJ6O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rFjzHJ6O .row {
  justify-content: center;
}
.cid-v7rFjzHJ6O .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rFjzHJ6O .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rFjzHJ6O .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rFjzHJ6O .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rFjzHJ6O .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rFjzHJ6O .mbr-text_1,
.cid-v7rFjzHJ6O .mbr-text_2,
.cid-v7rFjzHJ6O .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rFjzHJ6O .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFjzHJ6O .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rFjzHJ6O .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rFjzHJ6O .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rFjzHJ6O .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFjzHJ6O .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rFjzHJ6O .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rFjzHJ6O .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFjzHJ6O .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rFjzHJ6O .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rFjzHJ6O .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rFjzHJ6O .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rFjzHJ6O .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4h5pr0hHI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4h5pr0hHI .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4h5pr0hHI .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4h5pr0hHI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4h5pr0hHI .inner-container {
    width: 100% !important;
  }
}
.cid-svtUF56m90 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svtUDreCqq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svtUDreCqq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svtUDreCqq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svtUDreCqq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svtUDreCqq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svtUDreCqq .row > .row {
  display: block;
}
.cid-svtUDreCqq .mbr-gallery-item {
  width: 100%;
}
.cid-svtUDreCqq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svtUDreCqq .mbr-gallery-item > div {
  position: relative;
}
.cid-svtUDreCqq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svtUDreCqq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svtUDreCqq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svtUDreCqq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4h5prSj7F {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4h5prSj7F .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4h5prSj7F div.b {
  padding-top: 2rem;
}
.cid-s4h5prSj7F H5 {
  color: #232323;
}
.cid-s4jhtsvcb1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4jhtsvcb1 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4jhtsvcb1 .section-text {
  padding: 2rem 0;
}
.cid-s4jhtsvcb1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4jhtsvcb1 .inner-container {
    width: 100% !important;
  }
}
.cid-v7rFAFlgsD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rFAFlgsD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rFAFlgsD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rFAFlgsD .row {
  justify-content: center;
}
.cid-v7rFAFlgsD .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rFAFlgsD .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rFAFlgsD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rFAFlgsD .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rFAFlgsD .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rFAFlgsD .mbr-text_1,
.cid-v7rFAFlgsD .mbr-text_2,
.cid-v7rFAFlgsD .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rFAFlgsD .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFAFlgsD .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rFAFlgsD .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rFAFlgsD .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rFAFlgsD .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFAFlgsD .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rFAFlgsD .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rFAFlgsD .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFAFlgsD .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rFAFlgsD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rFAFlgsD .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rFAFlgsD .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rFAFlgsD .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rFBsKG0S {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rFBsKG0S .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rFBsKG0S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rFBsKG0S .row {
  justify-content: center;
}
.cid-v7rFBsKG0S .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rFBsKG0S .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rFBsKG0S .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rFBsKG0S .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rFBsKG0S .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rFBsKG0S .mbr-text_1,
.cid-v7rFBsKG0S .mbr-text_2,
.cid-v7rFBsKG0S .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rFBsKG0S .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFBsKG0S .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rFBsKG0S .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rFBsKG0S .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rFBsKG0S .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFBsKG0S .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rFBsKG0S .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rFBsKG0S .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFBsKG0S .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rFBsKG0S .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rFBsKG0S .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rFBsKG0S .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rFBsKG0S .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4jhttfqhy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4jhttfqhy .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4jhttfqhy .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4jhttfqhy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4jhttfqhy .inner-container {
    width: 100% !important;
  }
}
.cid-svtWqlJgUJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svtWrpAXVD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svtWrpAXVD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svtWrpAXVD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svtWrpAXVD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svtWrpAXVD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svtWrpAXVD .row > .row {
  display: block;
}
.cid-svtWrpAXVD .mbr-gallery-item {
  width: 100%;
}
.cid-svtWrpAXVD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svtWrpAXVD .mbr-gallery-item > div {
  position: relative;
}
.cid-svtWrpAXVD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svtWrpAXVD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svtWrpAXVD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svtWrpAXVD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4jqeSgF6a {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4jqeSgF6a .mbr-section-subtitle {
  color: #767676;
}
.cid-s4jqeSgF6a .container-table {
  margin: 0 auto;
}
.cid-s4jqeSgF6a .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s4jqeSgF6a .dataTables_wrapper {
  display: block;
}
.cid-s4jqeSgF6a .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s4jqeSgF6a .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s4jqeSgF6a table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s4jqeSgF6a table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s4jqeSgF6a table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s4jqeSgF6a table td {
  border-top: 1px solid #232323;
}
.cid-s4jqeSgF6a .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s4jqeSgF6a .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s4jqeSgF6a .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s4jqeSgF6a .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s4jqeSgF6a .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s4jqeSgF6a .dataTables_filter {
    text-align: center;
  }
  .cid-s4jqeSgF6a .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s4jqeSgF6a .mbr-section-title {
  color: #ff3366;
}
.cid-s4jqeSgF6a .head-item {
  text-align: center;
  color: #232323;
}
.cid-s4jqeSgF6a .body-item {
  text-align: center;
}
.cid-s4jhtu4y9k {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4jhtu4y9k .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4jhtu4y9k div.b {
  padding-top: 2rem;
}
.cid-s4jhtu4y9k H5 {
  color: #232323;
}
.cid-s4l4lCxNxY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4l4lCxNxY .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4l4lCxNxY .section-text {
  padding: 2rem 0;
}
.cid-s4l4lCxNxY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4l4lCxNxY .inner-container {
    width: 100% !important;
  }
}
.cid-v7rFNBROGK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rFNBROGK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rFNBROGK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rFNBROGK .row {
  justify-content: center;
}
.cid-v7rFNBROGK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rFNBROGK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rFNBROGK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rFNBROGK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rFNBROGK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rFNBROGK .mbr-text_1,
.cid-v7rFNBROGK .mbr-text_2,
.cid-v7rFNBROGK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rFNBROGK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFNBROGK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rFNBROGK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rFNBROGK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rFNBROGK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFNBROGK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rFNBROGK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rFNBROGK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFNBROGK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rFNBROGK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rFNBROGK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rFNBROGK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rFNBROGK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rFOpAH8t {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rFOpAH8t .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rFOpAH8t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rFOpAH8t .row {
  justify-content: center;
}
.cid-v7rFOpAH8t .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rFOpAH8t .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rFOpAH8t .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rFOpAH8t .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rFOpAH8t .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rFOpAH8t .mbr-text_1,
.cid-v7rFOpAH8t .mbr-text_2,
.cid-v7rFOpAH8t .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rFOpAH8t .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFOpAH8t .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rFOpAH8t .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rFOpAH8t .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rFOpAH8t .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFOpAH8t .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rFOpAH8t .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rFOpAH8t .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rFOpAH8t .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rFOpAH8t .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rFOpAH8t .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rFOpAH8t .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rFOpAH8t .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4l4lDa6aK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4l4lDa6aK .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4l4lDa6aK .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4l4lDa6aK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4l4lDa6aK .inner-container {
    width: 100% !important;
  }
}
.cid-svtXLRdNxa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svtXNxUlPD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svtXNxUlPD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svtXNxUlPD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svtXNxUlPD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svtXNxUlPD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svtXNxUlPD .row > .row {
  display: block;
}
.cid-svtXNxUlPD .mbr-gallery-item {
  width: 100%;
}
.cid-svtXNxUlPD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svtXNxUlPD .mbr-gallery-item > div {
  position: relative;
}
.cid-svtXNxUlPD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svtXNxUlPD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svtXNxUlPD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svtXNxUlPD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svtXRqUBDN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svtXRqUBDN .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svtXRqUBDN .section-text {
  padding: 2rem 0;
}
.cid-svtXRqUBDN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svtXRqUBDN .inner-container {
    width: 100% !important;
  }
}
.cid-svtXRqUBDN .section-text DIV {
  text-align: center;
}
.cid-s4l4lE5KG1 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4l4lE5KG1 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4l4lE5KG1 div.b {
  padding-top: 2rem;
}
.cid-s4l4lE5KG1 H5 {
  color: #232323;
}
.cid-s4l5vwluOp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4l5vwluOp .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4l5vwluOp .section-text {
  padding: 2rem 0;
}
.cid-s4l5vwluOp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4l5vwluOp .inner-container {
    width: 100% !important;
  }
}
.cid-v7rNcQLyJM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rNcQLyJM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rNcQLyJM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rNcQLyJM .row {
  justify-content: center;
}
.cid-v7rNcQLyJM .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rNcQLyJM .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rNcQLyJM .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rNcQLyJM .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rNcQLyJM .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rNcQLyJM .mbr-text_1,
.cid-v7rNcQLyJM .mbr-text_2,
.cid-v7rNcQLyJM .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rNcQLyJM .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNcQLyJM .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rNcQLyJM .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rNcQLyJM .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rNcQLyJM .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNcQLyJM .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rNcQLyJM .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rNcQLyJM .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNcQLyJM .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rNcQLyJM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rNcQLyJM .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rNcQLyJM .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rNcQLyJM .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rMWfrQU7 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rMWfrQU7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rMWfrQU7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rMWfrQU7 .row {
  justify-content: center;
}
.cid-v7rMWfrQU7 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rMWfrQU7 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rMWfrQU7 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rMWfrQU7 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rMWfrQU7 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rMWfrQU7 .mbr-text_1,
.cid-v7rMWfrQU7 .mbr-text_2,
.cid-v7rMWfrQU7 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rMWfrQU7 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rMWfrQU7 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rMWfrQU7 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rMWfrQU7 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rMWfrQU7 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rMWfrQU7 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rMWfrQU7 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rMWfrQU7 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rMWfrQU7 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rMWfrQU7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rMWfrQU7 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rMWfrQU7 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rMWfrQU7 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4l5vwYSXG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4l5vwYSXG .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4l5vwYSXG .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4l5vwYSXG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4l5vwYSXG .inner-container {
    width: 100% !important;
  }
}
.cid-svtZFFRIJ9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svtZH4g6t8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svtZH4g6t8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svtZH4g6t8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svtZH4g6t8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svtZH4g6t8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svtZH4g6t8 .row > .row {
  display: block;
}
.cid-svtZH4g6t8 .mbr-gallery-item {
  width: 100%;
}
.cid-svtZH4g6t8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svtZH4g6t8 .mbr-gallery-item > div {
  position: relative;
}
.cid-svtZH4g6t8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svtZH4g6t8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svtZH4g6t8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svtZH4g6t8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4l5vxAqOs {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4l5vxAqOs .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4l5vxAqOs div.b {
  padding-top: 2rem;
}
.cid-s4l5vxAqOs H5 {
  color: #232323;
}
.cid-s4l6Az51yB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4l6Az51yB .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4l6Az51yB .section-text {
  padding: 2rem 0;
}
.cid-s4l6Az51yB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4l6Az51yB .inner-container {
    width: 100% !important;
  }
}
.cid-v7rNMVilAY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rNMVilAY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rNMVilAY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rNMVilAY .row {
  justify-content: center;
}
.cid-v7rNMVilAY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rNMVilAY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rNMVilAY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rNMVilAY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rNMVilAY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rNMVilAY .mbr-text_1,
.cid-v7rNMVilAY .mbr-text_2,
.cid-v7rNMVilAY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rNMVilAY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNMVilAY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rNMVilAY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rNMVilAY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rNMVilAY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNMVilAY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rNMVilAY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rNMVilAY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNMVilAY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rNMVilAY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rNMVilAY .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rNMVilAY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rNMVilAY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rNNP1Ye9 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rNNP1Ye9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rNNP1Ye9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rNNP1Ye9 .row {
  justify-content: center;
}
.cid-v7rNNP1Ye9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rNNP1Ye9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rNNP1Ye9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rNNP1Ye9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rNNP1Ye9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rNNP1Ye9 .mbr-text_1,
.cid-v7rNNP1Ye9 .mbr-text_2,
.cid-v7rNNP1Ye9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rNNP1Ye9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNNP1Ye9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rNNP1Ye9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rNNP1Ye9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rNNP1Ye9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNNP1Ye9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rNNP1Ye9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rNNP1Ye9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rNNP1Ye9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rNNP1Ye9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rNNP1Ye9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rNNP1Ye9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rNNP1Ye9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4l6AzIITD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4l6AzIITD .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4l6AzIITD .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4l6AzIITD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4l6AzIITD .inner-container {
    width: 100% !important;
  }
}
.cid-s540IrBycz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s540IrBycz .mbr-section-subtitle {
  color: #232323;
}
.cid-s4l6AAmRVQ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4l6AAmRVQ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4l6AAmRVQ div.b {
  padding-top: 2rem;
}
.cid-s4l6AAmRVQ H5 {
  color: #232323;
}
.cid-s4lZgkCAl6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4lZgkCAl6 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4lZgkCAl6 .section-text {
  padding: 2rem 0;
}
.cid-s4lZgkCAl6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4lZgkCAl6 .inner-container {
    width: 100% !important;
  }
}
.cid-v7rO72cd4Z {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rO72cd4Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rO72cd4Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rO72cd4Z .row {
  justify-content: center;
}
.cid-v7rO72cd4Z .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rO72cd4Z .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rO72cd4Z .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rO72cd4Z .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rO72cd4Z .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rO72cd4Z .mbr-text_1,
.cid-v7rO72cd4Z .mbr-text_2,
.cid-v7rO72cd4Z .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rO72cd4Z .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rO72cd4Z .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rO72cd4Z .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rO72cd4Z .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rO72cd4Z .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rO72cd4Z .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rO72cd4Z .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rO72cd4Z .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rO72cd4Z .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rO72cd4Z .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rO72cd4Z .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rO72cd4Z .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rO72cd4Z .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rO7TBV1u {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rO7TBV1u .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rO7TBV1u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rO7TBV1u .row {
  justify-content: center;
}
.cid-v7rO7TBV1u .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rO7TBV1u .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rO7TBV1u .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rO7TBV1u .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rO7TBV1u .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rO7TBV1u .mbr-text_1,
.cid-v7rO7TBV1u .mbr-text_2,
.cid-v7rO7TBV1u .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rO7TBV1u .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rO7TBV1u .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rO7TBV1u .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rO7TBV1u .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rO7TBV1u .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rO7TBV1u .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rO7TBV1u .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rO7TBV1u .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rO7TBV1u .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rO7TBV1u .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rO7TBV1u .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rO7TBV1u .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rO7TBV1u .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4lZglqwTv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4lZglqwTv .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4lZglqwTv .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4lZglqwTv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4lZglqwTv .inner-container {
    width: 100% !important;
  }
}
.cid-svu20kLUES {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svu29eOrKb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svu29eOrKb .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svu29eOrKb .section-text {
  padding: 2rem 0;
}
.cid-svu29eOrKb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svu29eOrKb .inner-container {
    width: 100% !important;
  }
}
.cid-svu29eOrKb .section-text DIV {
  text-align: center;
}
.cid-svud3y82MW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svu21H8sYF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svu21H8sYF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svu21H8sYF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svu21H8sYF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svu21H8sYF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svu21H8sYF .row > .row {
  display: block;
}
.cid-svu21H8sYF .mbr-gallery-item {
  width: 100%;
}
.cid-svu21H8sYF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svu21H8sYF .mbr-gallery-item > div {
  position: relative;
}
.cid-svu21H8sYF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svu21H8sYF .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svu21H8sYF .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svu21H8sYF .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svu22xchDs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svu23HXbxc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svu23HXbxc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svu23HXbxc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svu23HXbxc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svu23HXbxc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svu23HXbxc .row > .row {
  display: block;
}
.cid-svu23HXbxc .mbr-gallery-item {
  width: 100%;
}
.cid-svu23HXbxc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svu23HXbxc .mbr-gallery-item > div {
  position: relative;
}
.cid-svu23HXbxc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svu23HXbxc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svu23HXbxc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svu23HXbxc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4lZgmFeKM {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4lZgmFeKM .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4lZgmFeKM div.b {
  padding-top: 2rem;
}
.cid-s4lZgmFeKM H5 {
  color: #232323;
}
.cid-s4m0MSh3I7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4m0MSh3I7 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4m0MSh3I7 .section-text {
  padding: 2rem 0;
}
.cid-s4m0MSh3I7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4m0MSh3I7 .inner-container {
    width: 100% !important;
  }
}
.cid-v7rOoNlzjc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rOoNlzjc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rOoNlzjc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rOoNlzjc .row {
  justify-content: center;
}
.cid-v7rOoNlzjc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rOoNlzjc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rOoNlzjc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rOoNlzjc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rOoNlzjc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rOoNlzjc .mbr-text_1,
.cid-v7rOoNlzjc .mbr-text_2,
.cid-v7rOoNlzjc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rOoNlzjc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rOoNlzjc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rOoNlzjc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rOoNlzjc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rOoNlzjc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rOoNlzjc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rOoNlzjc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rOoNlzjc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rOoNlzjc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rOoNlzjc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rOoNlzjc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rOoNlzjc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rOoNlzjc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rOpCj9Ao {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rOpCj9Ao .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rOpCj9Ao .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rOpCj9Ao .row {
  justify-content: center;
}
.cid-v7rOpCj9Ao .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rOpCj9Ao .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rOpCj9Ao .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rOpCj9Ao .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rOpCj9Ao .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rOpCj9Ao .mbr-text_1,
.cid-v7rOpCj9Ao .mbr-text_2,
.cid-v7rOpCj9Ao .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rOpCj9Ao .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rOpCj9Ao .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rOpCj9Ao .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rOpCj9Ao .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rOpCj9Ao .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rOpCj9Ao .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rOpCj9Ao .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rOpCj9Ao .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rOpCj9Ao .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rOpCj9Ao .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rOpCj9Ao .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rOpCj9Ao .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rOpCj9Ao .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4m0MSRyoi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4m0MSRyoi .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4m0MSRyoi .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4m0MSRyoi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4m0MSRyoi .inner-container {
    width: 100% !important;
  }
}
.cid-svueQtRhdy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svueT0yFUk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svueT0yFUk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svueT0yFUk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svueT0yFUk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svueT0yFUk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svueT0yFUk .row > .row {
  display: block;
}
.cid-svueT0yFUk .mbr-gallery-item {
  width: 100%;
}
.cid-svueT0yFUk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svueT0yFUk .mbr-gallery-item > div {
  position: relative;
}
.cid-svueT0yFUk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svueT0yFUk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svueT0yFUk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svueT0yFUk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svuh8yV2AT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svuh9emUAi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuh9emUAi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svuh9emUAi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svuh9emUAi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svuh9emUAi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svuh9emUAi .row > .row {
  display: block;
}
.cid-svuh9emUAi .mbr-gallery-item {
  width: 100%;
}
.cid-svuh9emUAi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svuh9emUAi .mbr-gallery-item > div {
  position: relative;
}
.cid-svuh9emUAi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svuh9emUAi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svuh9emUAi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svuh9emUAi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svuf60yYIx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuf60yYIx .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svuf60yYIx .section-text {
  padding: 2rem 0;
}
.cid-svuf60yYIx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svuf60yYIx .inner-container {
    width: 100% !important;
  }
}
.cid-svuf60yYIx .section-text DIV {
  text-align: center;
}
.cid-s4m0MTsUO3 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4m0MTsUO3 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4m0MTsUO3 div.b {
  padding-top: 2rem;
}
.cid-s4m0MTsUO3 H5 {
  color: #232323;
}
.cid-s4m1f1cOxt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4m1f1cOxt .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4m1f1cOxt .section-text {
  padding: 2rem 0;
}
.cid-s4m1f1cOxt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4m1f1cOxt .inner-container {
    width: 100% !important;
  }
}
.cid-v7rORUJkXq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rORUJkXq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rORUJkXq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rORUJkXq .row {
  justify-content: center;
}
.cid-v7rORUJkXq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rORUJkXq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rORUJkXq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rORUJkXq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rORUJkXq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rORUJkXq .mbr-text_1,
.cid-v7rORUJkXq .mbr-text_2,
.cid-v7rORUJkXq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rORUJkXq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rORUJkXq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rORUJkXq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rORUJkXq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rORUJkXq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rORUJkXq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rORUJkXq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rORUJkXq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rORUJkXq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rORUJkXq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rORUJkXq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rORUJkXq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rORUJkXq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rOSMoUD8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rOSMoUD8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rOSMoUD8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rOSMoUD8 .row {
  justify-content: center;
}
.cid-v7rOSMoUD8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rOSMoUD8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rOSMoUD8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rOSMoUD8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rOSMoUD8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rOSMoUD8 .mbr-text_1,
.cid-v7rOSMoUD8 .mbr-text_2,
.cid-v7rOSMoUD8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rOSMoUD8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rOSMoUD8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rOSMoUD8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rOSMoUD8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rOSMoUD8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rOSMoUD8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rOSMoUD8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rOSMoUD8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rOSMoUD8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rOSMoUD8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rOSMoUD8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rOSMoUD8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rOSMoUD8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4m1f1RsKQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4m1f1RsKQ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4m1f1RsKQ .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4m1f1RsKQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4m1f1RsKQ .inner-container {
    width: 100% !important;
  }
}
.cid-s4m1f22zcz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4m1f22zcz .item {
  padding-bottom: 2rem;
}
.cid-s4m1f22zcz .item-wrapper {
  height: 100%;
}
.cid-s4m1f22zcz .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4m1f22zcz .carousel-control,
.cid-s4m1f22zcz .close {
  background: #1b1b1b;
}
.cid-s4m1f22zcz .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4m1f22zcz .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4m1f22zcz .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4m1f22zcz .close::before {
  content: '\e91a';
}
.cid-s4m1f22zcz .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4m1f22zcz .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4m1f22zcz .carousel-inner > .active {
  display: block;
}
.cid-s4m1f22zcz .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4m1f22zcz .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4m1f22zcz .carousel-control .icon-next,
.cid-s4m1f22zcz .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4m1f22zcz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4m1f22zcz .carousel-control,
  .cid-s4m1f22zcz .carousel-indicators,
  .cid-s4m1f22zcz .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4m1f22zcz .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4m1f22zcz .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4m1f22zcz .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4m1f22zcz .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4m1f22zcz .carousel-indicators {
    display: none;
  }
}
.cid-s4m1f22zcz .carousel-indicators .active,
.cid-s4m1f22zcz .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4m1f22zcz .carousel-indicators .active {
  background: #fff;
}
.cid-s4m1f22zcz .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4m1f22zcz .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4m1f22zcz .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4m1f22zcz .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4m1f22zcz .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4m1f22zcz .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4m1f22zcz .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4m1f22zcz .carousel {
  width: 100%;
}
.cid-s4m1f22zcz .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4m1f22zcz .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4m1f22zcz .modal.fade .modal-dialog,
.cid-s4m1f22zcz .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4m1f22zcz .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4m1f22zcz a {
  display: block;
}
.cid-s4m1f22zcz a.img {
  pointer-events: none;
}
.cid-s4m1f22zcz H3 {
  color: #232323;
}
.cid-s4m1f2ICpE {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4m1f2ICpE .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4m1f2ICpE div.b {
  padding-top: 2rem;
}
.cid-s4m1f2ICpE H5 {
  color: #232323;
}
.cid-s4m1Q2hlT0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4m1Q2hlT0 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4m1Q2hlT0 .section-text {
  padding: 2rem 0;
}
.cid-s4m1Q2hlT0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4m1Q2hlT0 .inner-container {
    width: 100% !important;
  }
}
.cid-v7rP9mfnQE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rP9mfnQE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rP9mfnQE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rP9mfnQE .row {
  justify-content: center;
}
.cid-v7rP9mfnQE .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rP9mfnQE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rP9mfnQE .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rP9mfnQE .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rP9mfnQE .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rP9mfnQE .mbr-text_1,
.cid-v7rP9mfnQE .mbr-text_2,
.cid-v7rP9mfnQE .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rP9mfnQE .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rP9mfnQE .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rP9mfnQE .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rP9mfnQE .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rP9mfnQE .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rP9mfnQE .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rP9mfnQE .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rP9mfnQE .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rP9mfnQE .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rP9mfnQE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rP9mfnQE .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rP9mfnQE .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rP9mfnQE .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rPci5oVK {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rPci5oVK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rPci5oVK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rPci5oVK .row {
  justify-content: center;
}
.cid-v7rPci5oVK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rPci5oVK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rPci5oVK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rPci5oVK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rPci5oVK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rPci5oVK .mbr-text_1,
.cid-v7rPci5oVK .mbr-text_2,
.cid-v7rPci5oVK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rPci5oVK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPci5oVK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rPci5oVK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rPci5oVK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rPci5oVK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPci5oVK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rPci5oVK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rPci5oVK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPci5oVK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rPci5oVK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rPci5oVK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rPci5oVK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rPci5oVK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4m1Q3kQd3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4m1Q3kQd3 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4m1Q3kQd3 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4m1Q3kQd3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4m1Q3kQd3 .inner-container {
    width: 100% !important;
  }
}
.cid-s4m1Q3uF5g {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4m1Q3uF5g .item {
  padding-bottom: 2rem;
}
.cid-s4m1Q3uF5g .item-wrapper {
  height: 100%;
}
.cid-s4m1Q3uF5g .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4m1Q3uF5g .carousel-control,
.cid-s4m1Q3uF5g .close {
  background: #1b1b1b;
}
.cid-s4m1Q3uF5g .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4m1Q3uF5g .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4m1Q3uF5g .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4m1Q3uF5g .close::before {
  content: '\e91a';
}
.cid-s4m1Q3uF5g .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4m1Q3uF5g .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4m1Q3uF5g .carousel-inner > .active {
  display: block;
}
.cid-s4m1Q3uF5g .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4m1Q3uF5g .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4m1Q3uF5g .carousel-control .icon-next,
.cid-s4m1Q3uF5g .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4m1Q3uF5g .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4m1Q3uF5g .carousel-control,
  .cid-s4m1Q3uF5g .carousel-indicators,
  .cid-s4m1Q3uF5g .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4m1Q3uF5g .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4m1Q3uF5g .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4m1Q3uF5g .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4m1Q3uF5g .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4m1Q3uF5g .carousel-indicators {
    display: none;
  }
}
.cid-s4m1Q3uF5g .carousel-indicators .active,
.cid-s4m1Q3uF5g .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4m1Q3uF5g .carousel-indicators .active {
  background: #fff;
}
.cid-s4m1Q3uF5g .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4m1Q3uF5g .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4m1Q3uF5g .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4m1Q3uF5g .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4m1Q3uF5g .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4m1Q3uF5g .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4m1Q3uF5g .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4m1Q3uF5g .carousel {
  width: 100%;
}
.cid-s4m1Q3uF5g .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4m1Q3uF5g .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4m1Q3uF5g .modal.fade .modal-dialog,
.cid-s4m1Q3uF5g .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4m1Q3uF5g .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4m1Q3uF5g a {
  display: block;
}
.cid-s4m1Q3uF5g a.img {
  pointer-events: none;
}
.cid-s4m1Q3uF5g H3 {
  color: #232323;
}
.cid-s4m1Q3SrU9 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4m1Q3SrU9 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4m1Q3SrU9 div.b {
  padding-top: 2rem;
}
.cid-s4m1Q3SrU9 H5 {
  color: #232323;
}
.cid-s4m4u0JafG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4m4u0JafG .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4m4u0JafG .section-text {
  padding: 2rem 0;
}
.cid-s4m4u0JafG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4m4u0JafG .inner-container {
    width: 100% !important;
  }
}
.cid-v7rPAJi5DS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rPAJi5DS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rPAJi5DS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rPAJi5DS .row {
  justify-content: center;
}
.cid-v7rPAJi5DS .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rPAJi5DS .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rPAJi5DS .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rPAJi5DS .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rPAJi5DS .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rPAJi5DS .mbr-text_1,
.cid-v7rPAJi5DS .mbr-text_2,
.cid-v7rPAJi5DS .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rPAJi5DS .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPAJi5DS .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rPAJi5DS .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rPAJi5DS .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rPAJi5DS .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPAJi5DS .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rPAJi5DS .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rPAJi5DS .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPAJi5DS .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rPAJi5DS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rPAJi5DS .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rPAJi5DS .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rPAJi5DS .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rPBulSPJ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rPBulSPJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rPBulSPJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rPBulSPJ .row {
  justify-content: center;
}
.cid-v7rPBulSPJ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rPBulSPJ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rPBulSPJ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rPBulSPJ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rPBulSPJ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rPBulSPJ .mbr-text_1,
.cid-v7rPBulSPJ .mbr-text_2,
.cid-v7rPBulSPJ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rPBulSPJ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPBulSPJ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rPBulSPJ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rPBulSPJ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rPBulSPJ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPBulSPJ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rPBulSPJ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rPBulSPJ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPBulSPJ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rPBulSPJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rPBulSPJ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rPBulSPJ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rPBulSPJ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4m4u1wOQ1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4m4u1wOQ1 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4m4u1wOQ1 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4m4u1wOQ1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4m4u1wOQ1 .inner-container {
    width: 100% !important;
  }
}
.cid-s4m4u1GrY6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4m4u1GrY6 .item {
  padding-bottom: 2rem;
}
.cid-s4m4u1GrY6 .item-wrapper {
  height: 100%;
}
.cid-s4m4u1GrY6 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4m4u1GrY6 .carousel-control,
.cid-s4m4u1GrY6 .close {
  background: #1b1b1b;
}
.cid-s4m4u1GrY6 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4m4u1GrY6 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4m4u1GrY6 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4m4u1GrY6 .close::before {
  content: '\e91a';
}
.cid-s4m4u1GrY6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4m4u1GrY6 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4m4u1GrY6 .carousel-inner > .active {
  display: block;
}
.cid-s4m4u1GrY6 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4m4u1GrY6 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4m4u1GrY6 .carousel-control .icon-next,
.cid-s4m4u1GrY6 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4m4u1GrY6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4m4u1GrY6 .carousel-control,
  .cid-s4m4u1GrY6 .carousel-indicators,
  .cid-s4m4u1GrY6 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4m4u1GrY6 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4m4u1GrY6 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4m4u1GrY6 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4m4u1GrY6 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4m4u1GrY6 .carousel-indicators {
    display: none;
  }
}
.cid-s4m4u1GrY6 .carousel-indicators .active,
.cid-s4m4u1GrY6 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4m4u1GrY6 .carousel-indicators .active {
  background: #fff;
}
.cid-s4m4u1GrY6 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4m4u1GrY6 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4m4u1GrY6 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4m4u1GrY6 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4m4u1GrY6 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4m4u1GrY6 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4m4u1GrY6 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4m4u1GrY6 .carousel {
  width: 100%;
}
.cid-s4m4u1GrY6 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4m4u1GrY6 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4m4u1GrY6 .modal.fade .modal-dialog,
.cid-s4m4u1GrY6 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4m4u1GrY6 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4m4u1GrY6 a {
  display: block;
}
.cid-s4m4u1GrY6 a.img {
  pointer-events: none;
}
.cid-s4m4u1GrY6 H3 {
  color: #232323;
}
.cid-s4m4u252Dl {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4m4u252Dl .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4m4u252Dl div.b {
  padding-top: 2rem;
}
.cid-s4m4u252Dl H5 {
  color: #232323;
}
.cid-s4m4Z8p8dG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4m4Z8p8dG .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4m4Z8p8dG .section-text {
  padding: 2rem 0;
}
.cid-s4m4Z8p8dG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4m4Z8p8dG .inner-container {
    width: 100% !important;
  }
}
.cid-v7rPOnOF0W {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rPOnOF0W .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rPOnOF0W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rPOnOF0W .row {
  justify-content: center;
}
.cid-v7rPOnOF0W .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rPOnOF0W .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rPOnOF0W .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rPOnOF0W .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rPOnOF0W .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rPOnOF0W .mbr-text_1,
.cid-v7rPOnOF0W .mbr-text_2,
.cid-v7rPOnOF0W .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rPOnOF0W .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPOnOF0W .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rPOnOF0W .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rPOnOF0W .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rPOnOF0W .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPOnOF0W .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rPOnOF0W .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rPOnOF0W .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPOnOF0W .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rPOnOF0W .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rPOnOF0W .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rPOnOF0W .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rPOnOF0W .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rPPip2qG {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rPPip2qG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rPPip2qG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rPPip2qG .row {
  justify-content: center;
}
.cid-v7rPPip2qG .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rPPip2qG .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rPPip2qG .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rPPip2qG .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rPPip2qG .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rPPip2qG .mbr-text_1,
.cid-v7rPPip2qG .mbr-text_2,
.cid-v7rPPip2qG .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rPPip2qG .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPPip2qG .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rPPip2qG .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rPPip2qG .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rPPip2qG .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPPip2qG .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rPPip2qG .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rPPip2qG .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rPPip2qG .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rPPip2qG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rPPip2qG .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rPPip2qG .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rPPip2qG .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4m4Z9xH7C {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4m4Z9xH7C .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4m4Z9xH7C .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4m4Z9xH7C .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4m4Z9xH7C .inner-container {
    width: 100% !important;
  }
}
.cid-svup6xT371 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svup7t07m4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svup7t07m4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svup7t07m4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svup7t07m4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svup7t07m4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svup7t07m4 .row > .row {
  display: block;
}
.cid-svup7t07m4 .mbr-gallery-item {
  width: 100%;
}
.cid-svup7t07m4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svup7t07m4 .mbr-gallery-item > div {
  position: relative;
}
.cid-svup7t07m4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svup7t07m4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svup7t07m4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svup7t07m4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4m4ZcKFT8 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4m4ZcKFT8 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4m4ZcKFT8 div.b {
  padding-top: 2rem;
}
.cid-s4m4ZcKFT8 H5 {
  color: #232323;
}
.cid-s4C8pkfIvQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4C8pkfIvQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4C8pkfIvQ .section-text {
  padding: 2rem 0;
}
.cid-s4C8pkfIvQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4C8pkfIvQ .inner-container {
    width: 100% !important;
  }
}
.cid-v7adAwjBKR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7adAwjBKR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7adAwjBKR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7adAwjBKR .row {
  justify-content: center;
}
.cid-v7adAwjBKR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7adAwjBKR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7adAwjBKR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7adAwjBKR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7adAwjBKR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7adAwjBKR .mbr-text_1,
.cid-v7adAwjBKR .mbr-text_2,
.cid-v7adAwjBKR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7adAwjBKR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7adAwjBKR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7adAwjBKR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7adAwjBKR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7adAwjBKR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7adAwjBKR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7adAwjBKR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7adAwjBKR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7adAwjBKR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7adAwjBKR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7adAwjBKR .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7adAwjBKR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7adAwjBKR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7adBgpM11 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7adBgpM11 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7adBgpM11 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7adBgpM11 .row {
  justify-content: center;
}
.cid-v7adBgpM11 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7adBgpM11 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7adBgpM11 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7adBgpM11 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7adBgpM11 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7adBgpM11 .mbr-text_1,
.cid-v7adBgpM11 .mbr-text_2,
.cid-v7adBgpM11 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7adBgpM11 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7adBgpM11 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7adBgpM11 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7adBgpM11 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7adBgpM11 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7adBgpM11 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7adBgpM11 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7adBgpM11 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7adBgpM11 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7adBgpM11 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7adBgpM11 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7adBgpM11 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7adBgpM11 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4C8pkLQWU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4C8pkLQWU .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4C8pkLQWU .section-text {
  padding: 2rem 0;
}
.cid-s4C8pkLQWU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4C8pkLQWU .inner-container {
    width: 100% !important;
  }
}
.cid-s4C8plj06m {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4C8plj06m .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4C8plj06m .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s4C8plj06m .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4C8plj06m .inner-container {
    width: 100% !important;
  }
}
.cid-svFQJqUvWS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-svFQKgl9qy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-svFQKgl9qy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svFQKgl9qy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svFQKgl9qy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svFQKgl9qy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svFQKgl9qy .row > .row {
  display: block;
}
.cid-svFQKgl9qy .mbr-gallery-item {
  width: 100%;
}
.cid-svFQKgl9qy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svFQKgl9qy .mbr-gallery-item > div {
  position: relative;
}
.cid-svFQKgl9qy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svFQKgl9qy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svFQKgl9qy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svFQKgl9qy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4C8pmblg6 {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s4C8pmblg6 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4C8pmblg6 div.b {
  padding-top: 2rem;
}
.cid-s4C9mU3Q8p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4C9mU3Q8p .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4C9mU3Q8p .section-text {
  padding: 2rem 0;
}
.cid-s4C9mU3Q8p .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4C9mU3Q8p .inner-container {
    width: 100% !important;
  }
}
.cid-v7aedc7iHG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7aedc7iHG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7aedc7iHG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7aedc7iHG .row {
  justify-content: center;
}
.cid-v7aedc7iHG .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7aedc7iHG .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7aedc7iHG .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7aedc7iHG .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7aedc7iHG .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7aedc7iHG .mbr-text_1,
.cid-v7aedc7iHG .mbr-text_2,
.cid-v7aedc7iHG .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7aedc7iHG .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aedc7iHG .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7aedc7iHG .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7aedc7iHG .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7aedc7iHG .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aedc7iHG .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7aedc7iHG .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7aedc7iHG .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aedc7iHG .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7aedc7iHG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7aedc7iHG .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7aedc7iHG .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7aedc7iHG .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7aedXbHQZ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7aedXbHQZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7aedXbHQZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7aedXbHQZ .row {
  justify-content: center;
}
.cid-v7aedXbHQZ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7aedXbHQZ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7aedXbHQZ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7aedXbHQZ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7aedXbHQZ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7aedXbHQZ .mbr-text_1,
.cid-v7aedXbHQZ .mbr-text_2,
.cid-v7aedXbHQZ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7aedXbHQZ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aedXbHQZ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7aedXbHQZ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7aedXbHQZ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7aedXbHQZ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aedXbHQZ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7aedXbHQZ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7aedXbHQZ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aedXbHQZ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7aedXbHQZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7aedXbHQZ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7aedXbHQZ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7aedXbHQZ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4C9mUAEeH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4C9mUAEeH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4C9mUAEeH .section-text {
  padding: 2rem 0;
}
.cid-s4C9mUAEeH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4C9mUAEeH .inner-container {
    width: 100% !important;
  }
}
.cid-s4C9mVoTyz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4C9mVoTyz .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4C9mVoTyz .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s4C9mVoTyz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4C9mVoTyz .inner-container {
    width: 100% !important;
  }
}
.cid-sivoeirr3w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sivofbjZGq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sivofbjZGq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sivofbjZGq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sivofbjZGq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sivofbjZGq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sivofbjZGq .row > .row {
  display: block;
}
.cid-sivofbjZGq .mbr-gallery-item {
  width: 100%;
}
.cid-sivofbjZGq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sivofbjZGq .mbr-gallery-item > div {
  position: relative;
}
.cid-sivofbjZGq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sivofbjZGq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sivofbjZGq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sivofbjZGq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4C9mWdFdt {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s4C9mWdFdt .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4C9mWdFdt div.b {
  padding-top: 2rem;
}
.cid-s4Ca2Gr0Na {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4Ca2Gr0Na .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Ca2Gr0Na .section-text {
  padding: 2rem 0;
}
.cid-s4Ca2Gr0Na .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Ca2Gr0Na .inner-container {
    width: 100% !important;
  }
}
.cid-v7aeIGOghv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7aeIGOghv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7aeIGOghv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7aeIGOghv .row {
  justify-content: center;
}
.cid-v7aeIGOghv .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7aeIGOghv .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7aeIGOghv .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7aeIGOghv .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7aeIGOghv .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7aeIGOghv .mbr-text_1,
.cid-v7aeIGOghv .mbr-text_2,
.cid-v7aeIGOghv .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7aeIGOghv .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aeIGOghv .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7aeIGOghv .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7aeIGOghv .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7aeIGOghv .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aeIGOghv .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7aeIGOghv .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7aeIGOghv .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aeIGOghv .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7aeIGOghv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7aeIGOghv .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7aeIGOghv .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7aeIGOghv .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7aeJHwJWB {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7aeJHwJWB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7aeJHwJWB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7aeJHwJWB .row {
  justify-content: center;
}
.cid-v7aeJHwJWB .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7aeJHwJWB .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7aeJHwJWB .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7aeJHwJWB .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7aeJHwJWB .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7aeJHwJWB .mbr-text_1,
.cid-v7aeJHwJWB .mbr-text_2,
.cid-v7aeJHwJWB .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7aeJHwJWB .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aeJHwJWB .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7aeJHwJWB .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7aeJHwJWB .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7aeJHwJWB .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aeJHwJWB .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7aeJHwJWB .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7aeJHwJWB .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7aeJHwJWB .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7aeJHwJWB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7aeJHwJWB .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7aeJHwJWB .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7aeJHwJWB .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4Ca2GWhaR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4Ca2GWhaR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Ca2GWhaR .section-text {
  padding: 2rem 0;
}
.cid-s4Ca2GWhaR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Ca2GWhaR .inner-container {
    width: 100% !important;
  }
}
.cid-s4Ca2HmZHB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4Ca2HmZHB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Ca2HmZHB .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s4Ca2HmZHB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Ca2HmZHB .inner-container {
    width: 100% !important;
  }
}
.cid-s4Ca2HyNnn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4Ca2HyNnn .item {
  padding-bottom: 2rem;
}
.cid-s4Ca2HyNnn .item-wrapper {
  height: 100%;
}
.cid-s4Ca2HyNnn .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4Ca2HyNnn .carousel-control,
.cid-s4Ca2HyNnn .close {
  background: #1b1b1b;
}
.cid-s4Ca2HyNnn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4Ca2HyNnn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4Ca2HyNnn .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4Ca2HyNnn .close::before {
  content: '\e91a';
}
.cid-s4Ca2HyNnn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4Ca2HyNnn .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4Ca2HyNnn .carousel-inner > .active {
  display: block;
}
.cid-s4Ca2HyNnn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4Ca2HyNnn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4Ca2HyNnn .carousel-control .icon-next,
.cid-s4Ca2HyNnn .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4Ca2HyNnn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4Ca2HyNnn .carousel-control,
  .cid-s4Ca2HyNnn .carousel-indicators,
  .cid-s4Ca2HyNnn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4Ca2HyNnn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4Ca2HyNnn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4Ca2HyNnn .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4Ca2HyNnn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4Ca2HyNnn .carousel-indicators {
    display: none;
  }
}
.cid-s4Ca2HyNnn .carousel-indicators .active,
.cid-s4Ca2HyNnn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4Ca2HyNnn .carousel-indicators .active {
  background: #fff;
}
.cid-s4Ca2HyNnn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4Ca2HyNnn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4Ca2HyNnn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4Ca2HyNnn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4Ca2HyNnn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4Ca2HyNnn .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4Ca2HyNnn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4Ca2HyNnn .carousel {
  width: 100%;
}
.cid-s4Ca2HyNnn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4Ca2HyNnn .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4Ca2HyNnn .modal.fade .modal-dialog,
.cid-s4Ca2HyNnn .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4Ca2HyNnn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4Ca2HyNnn a {
  display: block;
}
.cid-s4Ca2HyNnn a.img {
  pointer-events: none;
}
.cid-s4Ca2I0hgK {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s4Ca2I0hgK .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4Ca2I0hgK div.b {
  padding-top: 2rem;
}
.cid-s4CaaeZODt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4CaaeZODt .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CaaeZODt .section-text {
  padding: 2rem 0;
}
.cid-s4CaaeZODt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CaaeZODt .inner-container {
    width: 100% !important;
  }
}
.cid-v7afiQb4tc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7afiQb4tc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7afiQb4tc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7afiQb4tc .row {
  justify-content: center;
}
.cid-v7afiQb4tc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7afiQb4tc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7afiQb4tc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7afiQb4tc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7afiQb4tc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7afiQb4tc .mbr-text_1,
.cid-v7afiQb4tc .mbr-text_2,
.cid-v7afiQb4tc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7afiQb4tc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7afiQb4tc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7afiQb4tc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7afiQb4tc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7afiQb4tc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7afiQb4tc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7afiQb4tc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7afiQb4tc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7afiQb4tc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7afiQb4tc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7afiQb4tc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7afiQb4tc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7afiQb4tc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7afkatE3p {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7afkatE3p .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7afkatE3p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7afkatE3p .row {
  justify-content: center;
}
.cid-v7afkatE3p .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7afkatE3p .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7afkatE3p .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7afkatE3p .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7afkatE3p .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7afkatE3p .mbr-text_1,
.cid-v7afkatE3p .mbr-text_2,
.cid-v7afkatE3p .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7afkatE3p .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7afkatE3p .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7afkatE3p .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7afkatE3p .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7afkatE3p .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7afkatE3p .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7afkatE3p .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7afkatE3p .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7afkatE3p .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7afkatE3p .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7afkatE3p .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7afkatE3p .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7afkatE3p .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4CaafsG4f {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4CaafsG4f .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CaafsG4f .section-text {
  padding: 2rem 0;
}
.cid-s4CaafsG4f .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CaafsG4f .inner-container {
    width: 100% !important;
  }
}
.cid-s4Caag5vHw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4Caag5vHw .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Caag5vHw .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-s4Caag5vHw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Caag5vHw .inner-container {
    width: 100% !important;
  }
}
.cid-s4CaaggNOk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-s4CaaggNOk .item {
  padding-bottom: 2rem;
}
.cid-s4CaaggNOk .item-wrapper {
  height: 100%;
}
.cid-s4CaaggNOk .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4CaaggNOk .carousel-control,
.cid-s4CaaggNOk .close {
  background: #1b1b1b;
}
.cid-s4CaaggNOk .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4CaaggNOk .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4CaaggNOk .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4CaaggNOk .close::before {
  content: '\e91a';
}
.cid-s4CaaggNOk .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4CaaggNOk .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4CaaggNOk .carousel-inner > .active {
  display: block;
}
.cid-s4CaaggNOk .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4CaaggNOk .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4CaaggNOk .carousel-control .icon-next,
.cid-s4CaaggNOk .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4CaaggNOk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4CaaggNOk .carousel-control,
  .cid-s4CaaggNOk .carousel-indicators,
  .cid-s4CaaggNOk .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4CaaggNOk .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4CaaggNOk .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4CaaggNOk .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4CaaggNOk .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4CaaggNOk .carousel-indicators {
    display: none;
  }
}
.cid-s4CaaggNOk .carousel-indicators .active,
.cid-s4CaaggNOk .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4CaaggNOk .carousel-indicators .active {
  background: #fff;
}
.cid-s4CaaggNOk .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4CaaggNOk .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4CaaggNOk .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4CaaggNOk .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4CaaggNOk .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4CaaggNOk .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4CaaggNOk .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4CaaggNOk .carousel {
  width: 100%;
}
.cid-s4CaaggNOk .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4CaaggNOk .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4CaaggNOk .modal.fade .modal-dialog,
.cid-s4CaaggNOk .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4CaaggNOk .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4CaaggNOk a {
  display: block;
}
.cid-s4CaaggNOk a.img {
  pointer-events: none;
}
.cid-s4CaagIatE {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-s4CaagIatE .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4CaagIatE div.b {
  padding-top: 2rem;
}
.cid-s4CjrkdUKa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4CjrkdUKa .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CjrkdUKa .section-text {
  padding: 2rem 0;
}
.cid-s4CjrkdUKa .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CjrkdUKa .inner-container {
    width: 100% !important;
  }
}
.cid-v7pmv3Aw0m {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pmv3Aw0m .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pmv3Aw0m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pmv3Aw0m .row {
  justify-content: center;
}
.cid-v7pmv3Aw0m .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pmv3Aw0m .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pmv3Aw0m .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pmv3Aw0m .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pmv3Aw0m .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pmv3Aw0m .mbr-text_1,
.cid-v7pmv3Aw0m .mbr-text_2,
.cid-v7pmv3Aw0m .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pmv3Aw0m .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmv3Aw0m .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pmv3Aw0m .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pmv3Aw0m .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pmv3Aw0m .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmv3Aw0m .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pmv3Aw0m .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pmv3Aw0m .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmv3Aw0m .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pmv3Aw0m .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pmv3Aw0m .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pmv3Aw0m .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pmv3Aw0m .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pmvPzbwl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7pmvPzbwl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pmvPzbwl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pmvPzbwl .row {
  justify-content: center;
}
.cid-v7pmvPzbwl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pmvPzbwl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pmvPzbwl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pmvPzbwl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pmvPzbwl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pmvPzbwl .mbr-text_1,
.cid-v7pmvPzbwl .mbr-text_2,
.cid-v7pmvPzbwl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pmvPzbwl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmvPzbwl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pmvPzbwl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pmvPzbwl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pmvPzbwl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmvPzbwl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pmvPzbwl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pmvPzbwl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmvPzbwl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pmvPzbwl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pmvPzbwl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pmvPzbwl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pmvPzbwl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4CjrkEIau {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4CjrkEIau .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CjrkEIau .section-text {
  padding: 2rem 0;
}
.cid-s4CjrkEIau .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CjrkEIau .inner-container {
    width: 100% !important;
  }
}
.cid-s4Cjrl6HDL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4Cjrl6HDL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Cjrl6HDL .section-text {
  padding: 2rem 0;
}
.cid-s4Cjrl6HDL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Cjrl6HDL .inner-container {
    width: 100% !important;
  }
}
.cid-twfyToiIRH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twfyToiIRH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twfyToiIRH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twfyToiIRH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twfyToiIRH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twfyToiIRH .row > .row {
  display: block;
}
.cid-twfyToiIRH .mbr-gallery-item {
  width: 100%;
}
.cid-twfyToiIRH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twfyToiIRH .mbr-gallery-item > div {
  position: relative;
}
.cid-twfyToiIRH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twfyToiIRH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twfyToiIRH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twfyToiIRH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4Cjrm1S8P {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4Cjrm1S8P .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4Cjrm1S8P div.b {
  padding-top: 2rem;
}
.cid-s4Cjrm1S8P H5 {
  color: #232323;
}
.cid-s4CjY9dnDa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4CjY9dnDa .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CjY9dnDa .section-text {
  padding: 2rem 0;
}
.cid-s4CjY9dnDa .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CjY9dnDa .inner-container {
    width: 100% !important;
  }
}
.cid-v7pmIof6xa {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pmIof6xa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pmIof6xa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pmIof6xa .row {
  justify-content: center;
}
.cid-v7pmIof6xa .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pmIof6xa .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pmIof6xa .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pmIof6xa .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pmIof6xa .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pmIof6xa .mbr-text_1,
.cid-v7pmIof6xa .mbr-text_2,
.cid-v7pmIof6xa .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pmIof6xa .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmIof6xa .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pmIof6xa .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pmIof6xa .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pmIof6xa .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmIof6xa .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pmIof6xa .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pmIof6xa .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmIof6xa .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pmIof6xa .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pmIof6xa .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pmIof6xa .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pmIof6xa .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pmJlxXL5 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7pmJlxXL5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pmJlxXL5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pmJlxXL5 .row {
  justify-content: center;
}
.cid-v7pmJlxXL5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pmJlxXL5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pmJlxXL5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pmJlxXL5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pmJlxXL5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pmJlxXL5 .mbr-text_1,
.cid-v7pmJlxXL5 .mbr-text_2,
.cid-v7pmJlxXL5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pmJlxXL5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmJlxXL5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pmJlxXL5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pmJlxXL5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pmJlxXL5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmJlxXL5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pmJlxXL5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pmJlxXL5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmJlxXL5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pmJlxXL5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pmJlxXL5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pmJlxXL5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pmJlxXL5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4CjY9J5EH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4CjY9J5EH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CjY9J5EH .section-text {
  padding: 2rem 0;
}
.cid-s4CjY9J5EH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CjY9J5EH .inner-container {
    width: 100% !important;
  }
}
.cid-s4CjYa9SlI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4CjYa9SlI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CjYa9SlI .section-text {
  padding: 2rem 0;
}
.cid-s4CjYa9SlI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CjYa9SlI .inner-container {
    width: 100% !important;
  }
}
.cid-twfzzwMayr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twfzzwMayr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twfzzwMayr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twfzzwMayr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twfzzwMayr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twfzzwMayr .row > .row {
  display: block;
}
.cid-twfzzwMayr .mbr-gallery-item {
  width: 100%;
}
.cid-twfzzwMayr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twfzzwMayr .mbr-gallery-item > div {
  position: relative;
}
.cid-twfzzwMayr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twfzzwMayr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twfzzwMayr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twfzzwMayr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4CjYaYPmI {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4CjYaYPmI .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4CjYaYPmI div.b {
  padding-top: 2rem;
}
.cid-s4CjYaYPmI H5 {
  color: #232323;
}
.cid-s4Ck9OPEz4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4Ck9OPEz4 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Ck9OPEz4 .section-text {
  padding: 2rem 0;
}
.cid-s4Ck9OPEz4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Ck9OPEz4 .inner-container {
    width: 100% !important;
  }
}
.cid-v7pmUBHBIt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pmUBHBIt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pmUBHBIt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pmUBHBIt .row {
  justify-content: center;
}
.cid-v7pmUBHBIt .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pmUBHBIt .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pmUBHBIt .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pmUBHBIt .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pmUBHBIt .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pmUBHBIt .mbr-text_1,
.cid-v7pmUBHBIt .mbr-text_2,
.cid-v7pmUBHBIt .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pmUBHBIt .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmUBHBIt .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pmUBHBIt .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pmUBHBIt .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pmUBHBIt .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmUBHBIt .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pmUBHBIt .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pmUBHBIt .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmUBHBIt .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pmUBHBIt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pmUBHBIt .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pmUBHBIt .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pmUBHBIt .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pmVCxUxZ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7pmVCxUxZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pmVCxUxZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pmVCxUxZ .row {
  justify-content: center;
}
.cid-v7pmVCxUxZ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pmVCxUxZ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pmVCxUxZ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pmVCxUxZ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pmVCxUxZ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pmVCxUxZ .mbr-text_1,
.cid-v7pmVCxUxZ .mbr-text_2,
.cid-v7pmVCxUxZ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pmVCxUxZ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmVCxUxZ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pmVCxUxZ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pmVCxUxZ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pmVCxUxZ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmVCxUxZ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pmVCxUxZ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pmVCxUxZ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pmVCxUxZ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pmVCxUxZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pmVCxUxZ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pmVCxUxZ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pmVCxUxZ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4Ck9PkpBc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4Ck9PkpBc .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Ck9PkpBc .section-text {
  padding: 2rem 0;
}
.cid-s4Ck9PkpBc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Ck9PkpBc .inner-container {
    width: 100% !important;
  }
}
.cid-s4Ck9Q0DVd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4Ck9Q0DVd .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Ck9Q0DVd .section-text {
  padding: 2rem 0;
}
.cid-s4Ck9Q0DVd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Ck9Q0DVd .inner-container {
    width: 100% !important;
  }
}
.cid-twfA1Qi36k {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twfA1Qi36k .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twfA1Qi36k .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twfA1Qi36k .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twfA1Qi36k .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twfA1Qi36k .row > .row {
  display: block;
}
.cid-twfA1Qi36k .mbr-gallery-item {
  width: 100%;
}
.cid-twfA1Qi36k .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twfA1Qi36k .mbr-gallery-item > div {
  position: relative;
}
.cid-twfA1Qi36k .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twfA1Qi36k .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twfA1Qi36k .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twfA1Qi36k .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4Ck9QIeTi {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4Ck9QIeTi .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4Ck9QIeTi div.b {
  padding-top: 2rem;
}
.cid-s4Ck9QIeTi H5 {
  color: #232323;
}
.cid-s4CkjcWFI7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4CkjcWFI7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CkjcWFI7 .section-text {
  padding: 2rem 0;
}
.cid-s4CkjcWFI7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CkjcWFI7 .inner-container {
    width: 100% !important;
  }
}
.cid-v7pn5BdLh3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v7pn5BdLh3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pn5BdLh3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pn5BdLh3 .row {
  justify-content: center;
}
.cid-v7pn5BdLh3 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pn5BdLh3 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pn5BdLh3 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pn5BdLh3 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pn5BdLh3 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pn5BdLh3 .mbr-text_1,
.cid-v7pn5BdLh3 .mbr-text_2,
.cid-v7pn5BdLh3 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pn5BdLh3 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pn5BdLh3 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pn5BdLh3 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pn5BdLh3 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pn5BdLh3 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pn5BdLh3 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pn5BdLh3 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pn5BdLh3 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pn5BdLh3 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pn5BdLh3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pn5BdLh3 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pn5BdLh3 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pn5BdLh3 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pn6tkujz {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v7pn6tkujz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pn6tkujz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pn6tkujz .row {
  justify-content: center;
}
.cid-v7pn6tkujz .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pn6tkujz .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pn6tkujz .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pn6tkujz .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pn6tkujz .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pn6tkujz .mbr-text_1,
.cid-v7pn6tkujz .mbr-text_2,
.cid-v7pn6tkujz .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pn6tkujz .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pn6tkujz .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pn6tkujz .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pn6tkujz .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pn6tkujz .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pn6tkujz .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pn6tkujz .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pn6tkujz .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pn6tkujz .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7pn6tkujz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pn6tkujz .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pn6tkujz .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pn6tkujz .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4CkjdqBgK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4CkjdqBgK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CkjdqBgK .section-text {
  padding: 2rem 0;
}
.cid-s4CkjdqBgK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CkjdqBgK .inner-container {
    width: 100% !important;
  }
}
.cid-s4Ckje4GF6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-s4Ckje4GF6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Ckje4GF6 .section-text {
  padding: 2rem 0;
}
.cid-s4Ckje4GF6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Ckje4GF6 .inner-container {
    width: 100% !important;
  }
}
.cid-twfAwre2wm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-twfAwre2wm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-twfAwre2wm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twfAwre2wm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twfAwre2wm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-twfAwre2wm .row > .row {
  display: block;
}
.cid-twfAwre2wm .mbr-gallery-item {
  width: 100%;
}
.cid-twfAwre2wm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-twfAwre2wm .mbr-gallery-item > div {
  position: relative;
}
.cid-twfAwre2wm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-twfAwre2wm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-twfAwre2wm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-twfAwre2wm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4CkjeMm4T {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-s4CkjeMm4T .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4CkjeMm4T div.b {
  padding-top: 2rem;
}
.cid-s4CkjeMm4T H5 {
  color: #232323;
}
.cid-s4CnhDOQ4w {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CnhDOQ4w .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CnhDOQ4w .section-text {
  padding: 2rem 0;
}
.cid-s4CnhDOQ4w .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CnhDOQ4w .inner-container {
    width: 100% !important;
  }
}
.cid-v7pnxigpHR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7pnxigpHR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pnxigpHR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pnxigpHR .row {
  justify-content: center;
}
.cid-v7pnxigpHR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pnxigpHR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pnxigpHR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pnxigpHR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pnxigpHR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pnxigpHR .mbr-text_1,
.cid-v7pnxigpHR .mbr-text_2,
.cid-v7pnxigpHR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pnxigpHR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pnxigpHR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pnxigpHR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pnxigpHR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pnxigpHR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pnxigpHR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pnxigpHR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pnxigpHR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pnxigpHR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pnxigpHR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pnxigpHR .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pnxigpHR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pnxigpHR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pnya69PU {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7pnya69PU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pnya69PU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pnya69PU .row {
  justify-content: center;
}
.cid-v7pnya69PU .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pnya69PU .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pnya69PU .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pnya69PU .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pnya69PU .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pnya69PU .mbr-text_1,
.cid-v7pnya69PU .mbr-text_2,
.cid-v7pnya69PU .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pnya69PU .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pnya69PU .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pnya69PU .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pnya69PU .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pnya69PU .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pnya69PU .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pnya69PU .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pnya69PU .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pnya69PU .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pnya69PU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pnya69PU .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pnya69PU .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pnya69PU .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4CnhEhXlS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CnhEhXlS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CnhEhXlS .section-text {
  padding: 2rem 0;
}
.cid-s4CnhEhXlS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CnhEhXlS .inner-container {
    width: 100% !important;
  }
}
.cid-s4CnhEY1yQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CnhEY1yQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CnhEY1yQ .section-text {
  padding: 2rem 0;
}
.cid-s4CnhEY1yQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CnhEY1yQ .inner-container {
    width: 100% !important;
  }
}
.cid-sua7l33xTh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sua7l33xTh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sua7l33xTh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sua7l33xTh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sua7l33xTh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sua7l33xTh .row > .row {
  display: block;
}
.cid-sua7l33xTh .mbr-gallery-item {
  width: 100%;
}
.cid-sua7l33xTh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sua7l33xTh .mbr-gallery-item > div {
  position: relative;
}
.cid-sua7l33xTh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sua7l33xTh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sua7l33xTh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sua7l33xTh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4CnhFHptX {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4CnhFHptX .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4CnhFHptX div.b {
  padding-top: 2rem;
}
.cid-s4CnhFHptX H5 {
  color: #232323;
}
.cid-s4Cpp3qnBJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Cpp3qnBJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Cpp3qnBJ .section-text {
  padding: 2rem 0;
}
.cid-s4Cpp3qnBJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Cpp3qnBJ .inner-container {
    width: 100% !important;
  }
}
.cid-v7po5P7tI2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7po5P7tI2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7po5P7tI2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7po5P7tI2 .row {
  justify-content: center;
}
.cid-v7po5P7tI2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7po5P7tI2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7po5P7tI2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7po5P7tI2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7po5P7tI2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7po5P7tI2 .mbr-text_1,
.cid-v7po5P7tI2 .mbr-text_2,
.cid-v7po5P7tI2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7po5P7tI2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7po5P7tI2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7po5P7tI2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7po5P7tI2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7po5P7tI2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7po5P7tI2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7po5P7tI2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7po5P7tI2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7po5P7tI2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7po5P7tI2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7po5P7tI2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7po5P7tI2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7po5P7tI2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7po6SwDDo {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7po6SwDDo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7po6SwDDo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7po6SwDDo .row {
  justify-content: center;
}
.cid-v7po6SwDDo .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7po6SwDDo .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7po6SwDDo .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7po6SwDDo .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7po6SwDDo .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7po6SwDDo .mbr-text_1,
.cid-v7po6SwDDo .mbr-text_2,
.cid-v7po6SwDDo .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7po6SwDDo .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7po6SwDDo .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7po6SwDDo .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7po6SwDDo .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7po6SwDDo .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7po6SwDDo .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7po6SwDDo .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7po6SwDDo .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7po6SwDDo .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7po6SwDDo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7po6SwDDo .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7po6SwDDo .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7po6SwDDo .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4Cpp3XtVX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Cpp3XtVX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Cpp3XtVX .section-text {
  padding: 2rem 0;
}
.cid-s4Cpp3XtVX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Cpp3XtVX .inner-container {
    width: 100% !important;
  }
}
.cid-s4Cpp4lUCy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Cpp4lUCy .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Cpp4lUCy .section-text {
  padding: 2rem 0;
}
.cid-s4Cpp4lUCy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Cpp4lUCy .inner-container {
    width: 100% !important;
  }
}
.cid-suadGWlP3d {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suadGWlP3d .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suadGWlP3d .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suadGWlP3d .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suadGWlP3d .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suadGWlP3d .row > .row {
  display: block;
}
.cid-suadGWlP3d .mbr-gallery-item {
  width: 100%;
}
.cid-suadGWlP3d .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suadGWlP3d .mbr-gallery-item > div {
  position: relative;
}
.cid-suadGWlP3d .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suadGWlP3d .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suadGWlP3d .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suadGWlP3d .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4Cpp9fcZB {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4Cpp9fcZB .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4Cpp9fcZB div.b {
  padding-top: 2rem;
}
.cid-s4Cpp9fcZB H5 {
  color: #232323;
}
.cid-s4CpGRnxoq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CpGRnxoq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CpGRnxoq .section-text {
  padding: 2rem 0;
}
.cid-s4CpGRnxoq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CpGRnxoq .inner-container {
    width: 100% !important;
  }
}
.cid-v7pomexrpB {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7pomexrpB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pomexrpB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pomexrpB .row {
  justify-content: center;
}
.cid-v7pomexrpB .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pomexrpB .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pomexrpB .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pomexrpB .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pomexrpB .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pomexrpB .mbr-text_1,
.cid-v7pomexrpB .mbr-text_2,
.cid-v7pomexrpB .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pomexrpB .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pomexrpB .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pomexrpB .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pomexrpB .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pomexrpB .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pomexrpB .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pomexrpB .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pomexrpB .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pomexrpB .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pomexrpB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pomexrpB .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pomexrpB .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pomexrpB .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pon7UpWk {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7pon7UpWk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pon7UpWk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pon7UpWk .row {
  justify-content: center;
}
.cid-v7pon7UpWk .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pon7UpWk .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pon7UpWk .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pon7UpWk .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pon7UpWk .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pon7UpWk .mbr-text_1,
.cid-v7pon7UpWk .mbr-text_2,
.cid-v7pon7UpWk .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pon7UpWk .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pon7UpWk .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pon7UpWk .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pon7UpWk .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pon7UpWk .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pon7UpWk .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pon7UpWk .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pon7UpWk .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pon7UpWk .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pon7UpWk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pon7UpWk .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pon7UpWk .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pon7UpWk .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4CpGRSXhL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CpGRSXhL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CpGRSXhL .section-text {
  padding: 2rem 0;
}
.cid-s4CpGRSXhL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CpGRSXhL .inner-container {
    width: 100% !important;
  }
}
.cid-s4CpGShg3h {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CpGShg3h .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CpGShg3h .section-text {
  padding: 2rem 0;
}
.cid-s4CpGShg3h .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CpGShg3h .inner-container {
    width: 100% !important;
  }
}
.cid-suagXBs334 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suagXBs334 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suagXBs334 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suagXBs334 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suagXBs334 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suagXBs334 .row > .row {
  display: block;
}
.cid-suagXBs334 .mbr-gallery-item {
  width: 100%;
}
.cid-suagXBs334 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suagXBs334 .mbr-gallery-item > div {
  position: relative;
}
.cid-suagXBs334 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suagXBs334 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suagXBs334 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suagXBs334 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4CpGSWY6c {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4CpGSWY6c .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4CpGSWY6c div.b {
  padding-top: 2rem;
}
.cid-s4CpGSWY6c H5 {
  color: #232323;
}
.cid-s4CpSc3Mmn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CpSc3Mmn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CpSc3Mmn .section-text {
  padding: 2rem 0;
}
.cid-s4CpSc3Mmn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CpSc3Mmn .inner-container {
    width: 100% !important;
  }
}
.cid-v7poBjWdM0 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7poBjWdM0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7poBjWdM0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7poBjWdM0 .row {
  justify-content: center;
}
.cid-v7poBjWdM0 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7poBjWdM0 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7poBjWdM0 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7poBjWdM0 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7poBjWdM0 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7poBjWdM0 .mbr-text_1,
.cid-v7poBjWdM0 .mbr-text_2,
.cid-v7poBjWdM0 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7poBjWdM0 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7poBjWdM0 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7poBjWdM0 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7poBjWdM0 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7poBjWdM0 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7poBjWdM0 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7poBjWdM0 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7poBjWdM0 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7poBjWdM0 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7poBjWdM0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7poBjWdM0 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7poBjWdM0 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7poBjWdM0 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7poCdT1gi {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7poCdT1gi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7poCdT1gi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7poCdT1gi .row {
  justify-content: center;
}
.cid-v7poCdT1gi .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7poCdT1gi .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7poCdT1gi .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7poCdT1gi .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7poCdT1gi .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7poCdT1gi .mbr-text_1,
.cid-v7poCdT1gi .mbr-text_2,
.cid-v7poCdT1gi .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7poCdT1gi .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7poCdT1gi .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7poCdT1gi .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7poCdT1gi .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7poCdT1gi .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7poCdT1gi .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7poCdT1gi .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7poCdT1gi .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7poCdT1gi .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7poCdT1gi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7poCdT1gi .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7poCdT1gi .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7poCdT1gi .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4CpScukLA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CpScukLA .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CpScukLA .section-text {
  padding: 2rem 0;
}
.cid-s4CpScukLA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CpScukLA .inner-container {
    width: 100% !important;
  }
}
.cid-s4CpScVsOY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CpScVsOY .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CpScVsOY .section-text {
  padding: 2rem 0;
}
.cid-s4CpScVsOY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CpScVsOY .inner-container {
    width: 100% !important;
  }
}
.cid-suaim5Njg3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suaim5Njg3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suaim5Njg3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suaim5Njg3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suaim5Njg3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suaim5Njg3 .row > .row {
  display: block;
}
.cid-suaim5Njg3 .mbr-gallery-item {
  width: 100%;
}
.cid-suaim5Njg3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suaim5Njg3 .mbr-gallery-item > div {
  position: relative;
}
.cid-suaim5Njg3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suaim5Njg3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suaim5Njg3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suaim5Njg3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4CpSdRNGi {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4CpSdRNGi .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4CpSdRNGi div.b {
  padding-top: 2rem;
}
.cid-s4CpSdRNGi H5 {
  color: #232323;
}
.cid-s4CqawVfDf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CqawVfDf .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CqawVfDf .section-text {
  padding: 2rem 0;
}
.cid-s4CqawVfDf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CqawVfDf .inner-container {
    width: 100% !important;
  }
}
.cid-v7poMzGcLS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7poMzGcLS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7poMzGcLS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7poMzGcLS .row {
  justify-content: center;
}
.cid-v7poMzGcLS .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7poMzGcLS .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7poMzGcLS .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7poMzGcLS .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7poMzGcLS .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7poMzGcLS .mbr-text_1,
.cid-v7poMzGcLS .mbr-text_2,
.cid-v7poMzGcLS .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7poMzGcLS .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7poMzGcLS .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7poMzGcLS .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7poMzGcLS .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7poMzGcLS .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7poMzGcLS .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7poMzGcLS .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7poMzGcLS .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7poMzGcLS .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7poMzGcLS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7poMzGcLS .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7poMzGcLS .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7poMzGcLS .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7poNpxSTG {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7poNpxSTG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7poNpxSTG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7poNpxSTG .row {
  justify-content: center;
}
.cid-v7poNpxSTG .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7poNpxSTG .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7poNpxSTG .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7poNpxSTG .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7poNpxSTG .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7poNpxSTG .mbr-text_1,
.cid-v7poNpxSTG .mbr-text_2,
.cid-v7poNpxSTG .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7poNpxSTG .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7poNpxSTG .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7poNpxSTG .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7poNpxSTG .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7poNpxSTG .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7poNpxSTG .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7poNpxSTG .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7poNpxSTG .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7poNpxSTG .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7poNpxSTG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7poNpxSTG .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7poNpxSTG .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7poNpxSTG .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4Cqaxub74 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Cqaxub74 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Cqaxub74 .section-text {
  padding: 2rem 0;
}
.cid-s4Cqaxub74 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Cqaxub74 .inner-container {
    width: 100% !important;
  }
}
.cid-s4CqaxUden {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CqaxUden .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CqaxUden .section-text {
  padding: 2rem 0;
}
.cid-s4CqaxUden .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CqaxUden .inner-container {
    width: 100% !important;
  }
}
.cid-suakawK0Pr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suakawK0Pr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suakawK0Pr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suakawK0Pr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suakawK0Pr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suakawK0Pr .row > .row {
  display: block;
}
.cid-suakawK0Pr .mbr-gallery-item {
  width: 100%;
}
.cid-suakawK0Pr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suakawK0Pr .mbr-gallery-item > div {
  position: relative;
}
.cid-suakawK0Pr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suakawK0Pr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suakawK0Pr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suakawK0Pr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4CqayyxG2 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4CqayyxG2 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4CqayyxG2 div.b {
  padding-top: 2rem;
}
.cid-s4CqayyxG2 H5 {
  color: #232323;
}
.cid-s4CqmrPf76 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CqmrPf76 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CqmrPf76 .section-text {
  padding: 2rem 0;
}
.cid-s4CqmrPf76 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CqmrPf76 .inner-container {
    width: 100% !important;
  }
}
.cid-v7pp732K5Y {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7pp732K5Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pp732K5Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pp732K5Y .row {
  justify-content: center;
}
.cid-v7pp732K5Y .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pp732K5Y .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pp732K5Y .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pp732K5Y .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pp732K5Y .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pp732K5Y .mbr-text_1,
.cid-v7pp732K5Y .mbr-text_2,
.cid-v7pp732K5Y .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pp732K5Y .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pp732K5Y .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pp732K5Y .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pp732K5Y .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pp732K5Y .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pp732K5Y .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pp732K5Y .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pp732K5Y .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pp732K5Y .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pp732K5Y .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pp732K5Y .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pp732K5Y .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pp732K5Y .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pp7Zqmxs {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7pp7Zqmxs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pp7Zqmxs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pp7Zqmxs .row {
  justify-content: center;
}
.cid-v7pp7Zqmxs .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pp7Zqmxs .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pp7Zqmxs .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pp7Zqmxs .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pp7Zqmxs .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pp7Zqmxs .mbr-text_1,
.cid-v7pp7Zqmxs .mbr-text_2,
.cid-v7pp7Zqmxs .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pp7Zqmxs .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pp7Zqmxs .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pp7Zqmxs .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pp7Zqmxs .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pp7Zqmxs .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pp7Zqmxs .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pp7Zqmxs .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pp7Zqmxs .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pp7Zqmxs .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pp7Zqmxs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pp7Zqmxs .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pp7Zqmxs .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pp7Zqmxs .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4CqmsmHM0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CqmsmHM0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CqmsmHM0 .section-text {
  padding: 2rem 0;
}
.cid-s4CqmsmHM0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CqmsmHM0 .inner-container {
    width: 100% !important;
  }
}
.cid-s4CqmsNIFb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CqmsNIFb .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CqmsNIFb .section-text {
  padding: 2rem 0;
}
.cid-s4CqmsNIFb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CqmsNIFb .inner-container {
    width: 100% !important;
  }
}
.cid-suakNWJUCT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suakNWJUCT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suakNWJUCT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suakNWJUCT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suakNWJUCT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suakNWJUCT .row > .row {
  display: block;
}
.cid-suakNWJUCT .mbr-gallery-item {
  width: 100%;
}
.cid-suakNWJUCT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suakNWJUCT .mbr-gallery-item > div {
  position: relative;
}
.cid-suakNWJUCT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suakNWJUCT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suakNWJUCT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suakNWJUCT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4Cqmtr6dW {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4Cqmtr6dW .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4Cqmtr6dW div.b {
  padding-top: 2rem;
}
.cid-s4Cqmtr6dW H5 {
  color: #232323;
}
.cid-s4CqzsI24f {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CqzsI24f .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CqzsI24f .section-text {
  padding: 2rem 0;
}
.cid-s4CqzsI24f .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CqzsI24f .inner-container {
    width: 100% !important;
  }
}
.cid-v7ppSRfTpG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7ppSRfTpG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ppSRfTpG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ppSRfTpG .row {
  justify-content: center;
}
.cid-v7ppSRfTpG .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ppSRfTpG .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ppSRfTpG .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ppSRfTpG .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ppSRfTpG .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ppSRfTpG .mbr-text_1,
.cid-v7ppSRfTpG .mbr-text_2,
.cid-v7ppSRfTpG .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ppSRfTpG .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppSRfTpG .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ppSRfTpG .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ppSRfTpG .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ppSRfTpG .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppSRfTpG .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ppSRfTpG .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ppSRfTpG .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppSRfTpG .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ppSRfTpG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ppSRfTpG .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ppSRfTpG .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ppSRfTpG .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7ppU0mEsL {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7ppU0mEsL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ppU0mEsL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ppU0mEsL .row {
  justify-content: center;
}
.cid-v7ppU0mEsL .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ppU0mEsL .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ppU0mEsL .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ppU0mEsL .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ppU0mEsL .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ppU0mEsL .mbr-text_1,
.cid-v7ppU0mEsL .mbr-text_2,
.cid-v7ppU0mEsL .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ppU0mEsL .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppU0mEsL .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ppU0mEsL .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ppU0mEsL .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ppU0mEsL .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppU0mEsL .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ppU0mEsL .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ppU0mEsL .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppU0mEsL .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ppU0mEsL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ppU0mEsL .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ppU0mEsL .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ppU0mEsL .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4Cqzt7uoP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Cqzt7uoP .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Cqzt7uoP .section-text {
  padding: 2rem 0;
}
.cid-s4Cqzt7uoP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Cqzt7uoP .inner-container {
    width: 100% !important;
  }
}
.cid-s4CqztvYPk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CqztvYPk .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CqztvYPk .section-text {
  padding: 2rem 0;
}
.cid-s4CqztvYPk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CqztvYPk .inner-container {
    width: 100% !important;
  }
}
.cid-suallP9JXB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suallP9JXB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suallP9JXB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suallP9JXB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suallP9JXB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suallP9JXB .row > .row {
  display: block;
}
.cid-suallP9JXB .mbr-gallery-item {
  width: 100%;
}
.cid-suallP9JXB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suallP9JXB .mbr-gallery-item > div {
  position: relative;
}
.cid-suallP9JXB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suallP9JXB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suallP9JXB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suallP9JXB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4Cqzu8Gf8 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4Cqzu8Gf8 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4Cqzu8Gf8 div.b {
  padding-top: 2rem;
}
.cid-s4Cqzu8Gf8 H5 {
  color: #232323;
}
.cid-s4CqMjmN2G {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CqMjmN2G .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CqMjmN2G .section-text {
  padding: 2rem 0;
}
.cid-s4CqMjmN2G .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CqMjmN2G .inner-container {
    width: 100% !important;
  }
}
.cid-v7pqMmBC02 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7pqMmBC02 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pqMmBC02 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pqMmBC02 .row {
  justify-content: center;
}
.cid-v7pqMmBC02 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pqMmBC02 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pqMmBC02 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pqMmBC02 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pqMmBC02 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pqMmBC02 .mbr-text_1,
.cid-v7pqMmBC02 .mbr-text_2,
.cid-v7pqMmBC02 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pqMmBC02 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqMmBC02 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pqMmBC02 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pqMmBC02 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pqMmBC02 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqMmBC02 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pqMmBC02 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pqMmBC02 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqMmBC02 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pqMmBC02 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pqMmBC02 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pqMmBC02 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pqMmBC02 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pqNm8rQn {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7pqNm8rQn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pqNm8rQn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pqNm8rQn .row {
  justify-content: center;
}
.cid-v7pqNm8rQn .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pqNm8rQn .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pqNm8rQn .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pqNm8rQn .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pqNm8rQn .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pqNm8rQn .mbr-text_1,
.cid-v7pqNm8rQn .mbr-text_2,
.cid-v7pqNm8rQn .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pqNm8rQn .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqNm8rQn .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pqNm8rQn .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pqNm8rQn .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pqNm8rQn .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqNm8rQn .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pqNm8rQn .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pqNm8rQn .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqNm8rQn .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pqNm8rQn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pqNm8rQn .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pqNm8rQn .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pqNm8rQn .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4CqMjPJ6A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CqMjPJ6A .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CqMjPJ6A .section-text {
  padding: 2rem 0;
}
.cid-s4CqMjPJ6A .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CqMjPJ6A .inner-container {
    width: 100% !important;
  }
}
.cid-s4CqMkzx5p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CqMkzx5p .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CqMkzx5p .section-text {
  padding: 2rem 0;
}
.cid-s4CqMkzx5p .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CqMkzx5p .inner-container {
    width: 100% !important;
  }
}
.cid-sualQc5bg8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sualQc5bg8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sualQc5bg8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sualQc5bg8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sualQc5bg8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sualQc5bg8 .row > .row {
  display: block;
}
.cid-sualQc5bg8 .mbr-gallery-item {
  width: 100%;
}
.cid-sualQc5bg8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sualQc5bg8 .mbr-gallery-item > div {
  position: relative;
}
.cid-sualQc5bg8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sualQc5bg8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sualQc5bg8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sualQc5bg8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4CqMlb6SY {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4CqMlb6SY .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4CqMlb6SY div.b {
  padding-top: 2rem;
}
.cid-s4CqMlb6SY H5 {
  color: #232323;
}
.cid-s4Cr5vnbPN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Cr5vnbPN .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Cr5vnbPN .section-text {
  padding: 2rem 0;
}
.cid-s4Cr5vnbPN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Cr5vnbPN .inner-container {
    width: 100% !important;
  }
}
.cid-v7pqYeyMlz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7pqYeyMlz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pqYeyMlz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pqYeyMlz .row {
  justify-content: center;
}
.cid-v7pqYeyMlz .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pqYeyMlz .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pqYeyMlz .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pqYeyMlz .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pqYeyMlz .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pqYeyMlz .mbr-text_1,
.cid-v7pqYeyMlz .mbr-text_2,
.cid-v7pqYeyMlz .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pqYeyMlz .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqYeyMlz .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pqYeyMlz .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pqYeyMlz .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pqYeyMlz .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqYeyMlz .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pqYeyMlz .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pqYeyMlz .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqYeyMlz .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pqYeyMlz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pqYeyMlz .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pqYeyMlz .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pqYeyMlz .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pqZhqCle {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7pqZhqCle .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pqZhqCle .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pqZhqCle .row {
  justify-content: center;
}
.cid-v7pqZhqCle .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pqZhqCle .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pqZhqCle .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pqZhqCle .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pqZhqCle .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pqZhqCle .mbr-text_1,
.cid-v7pqZhqCle .mbr-text_2,
.cid-v7pqZhqCle .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pqZhqCle .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqZhqCle .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pqZhqCle .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pqZhqCle .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pqZhqCle .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqZhqCle .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pqZhqCle .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pqZhqCle .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqZhqCle .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pqZhqCle .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pqZhqCle .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pqZhqCle .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pqZhqCle .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4Cr5vNTIK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Cr5vNTIK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Cr5vNTIK .section-text {
  padding: 2rem 0;
}
.cid-s4Cr5vNTIK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Cr5vNTIK .inner-container {
    width: 100% !important;
  }
}
.cid-s4Cr5wcVV4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Cr5wcVV4 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Cr5wcVV4 .section-text {
  padding: 2rem 0;
}
.cid-s4Cr5wcVV4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Cr5wcVV4 .inner-container {
    width: 100% !important;
  }
}
.cid-suazizLzMp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suazizLzMp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suazizLzMp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suazizLzMp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suazizLzMp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suazizLzMp .row > .row {
  display: block;
}
.cid-suazizLzMp .mbr-gallery-item {
  width: 100%;
}
.cid-suazizLzMp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suazizLzMp .mbr-gallery-item > div {
  position: relative;
}
.cid-suazizLzMp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suazizLzMp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suazizLzMp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suazizLzMp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4Cr5wPB32 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4Cr5wPB32 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4Cr5wPB32 div.b {
  padding-top: 2rem;
}
.cid-s4Cr5wPB32 H5 {
  color: #232323;
}
.cid-s4CrsVkVq1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CrsVkVq1 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CrsVkVq1 .section-text {
  padding: 2rem 0;
}
.cid-s4CrsVkVq1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CrsVkVq1 .inner-container {
    width: 100% !important;
  }
}
.cid-v7psuoXinX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7psuoXinX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7psuoXinX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7psuoXinX .row {
  justify-content: center;
}
.cid-v7psuoXinX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7psuoXinX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7psuoXinX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7psuoXinX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7psuoXinX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7psuoXinX .mbr-text_1,
.cid-v7psuoXinX .mbr-text_2,
.cid-v7psuoXinX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7psuoXinX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7psuoXinX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7psuoXinX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7psuoXinX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7psuoXinX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7psuoXinX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7psuoXinX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7psuoXinX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7psuoXinX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7psuoXinX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7psuoXinX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7psuoXinX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7psuoXinX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7psvua4ps {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7psvua4ps .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7psvua4ps .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7psvua4ps .row {
  justify-content: center;
}
.cid-v7psvua4ps .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7psvua4ps .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7psvua4ps .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7psvua4ps .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7psvua4ps .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7psvua4ps .mbr-text_1,
.cid-v7psvua4ps .mbr-text_2,
.cid-v7psvua4ps .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7psvua4ps .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7psvua4ps .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7psvua4ps .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7psvua4ps .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7psvua4ps .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7psvua4ps .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7psvua4ps .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7psvua4ps .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7psvua4ps .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7psvua4ps .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7psvua4ps .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7psvua4ps .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7psvua4ps .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4CrsVONma {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CrsVONma .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CrsVONma .section-text {
  padding: 2rem 0;
}
.cid-s4CrsVONma .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CrsVONma .inner-container {
    width: 100% !important;
  }
}
.cid-s4CrsWgmE3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CrsWgmE3 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CrsWgmE3 .section-text {
  padding: 2rem 0;
}
.cid-s4CrsWgmE3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CrsWgmE3 .inner-container {
    width: 100% !important;
  }
}
.cid-suamjqUzvY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suamjqUzvY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suamjqUzvY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suamjqUzvY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suamjqUzvY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suamjqUzvY .row > .row {
  display: block;
}
.cid-suamjqUzvY .mbr-gallery-item {
  width: 100%;
}
.cid-suamjqUzvY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suamjqUzvY .mbr-gallery-item > div {
  position: relative;
}
.cid-suamjqUzvY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suamjqUzvY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suamjqUzvY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suamjqUzvY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4CrsXhjU5 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4CrsXhjU5 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4CrsXhjU5 div.b {
  padding-top: 2rem;
}
.cid-s4CrsXhjU5 H5 {
  color: #232323;
}
.cid-s4CrU3zzE0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CrU3zzE0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CrU3zzE0 .section-text {
  padding: 2rem 0;
}
.cid-s4CrU3zzE0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CrU3zzE0 .inner-container {
    width: 100% !important;
  }
}
.cid-v7psYRLMIK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7psYRLMIK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7psYRLMIK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7psYRLMIK .row {
  justify-content: center;
}
.cid-v7psYRLMIK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7psYRLMIK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7psYRLMIK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7psYRLMIK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7psYRLMIK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7psYRLMIK .mbr-text_1,
.cid-v7psYRLMIK .mbr-text_2,
.cid-v7psYRLMIK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7psYRLMIK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7psYRLMIK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7psYRLMIK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7psYRLMIK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7psYRLMIK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7psYRLMIK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7psYRLMIK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7psYRLMIK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7psYRLMIK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7psYRLMIK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7psYRLMIK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7psYRLMIK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7psYRLMIK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7psZKXIVd {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7psZKXIVd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7psZKXIVd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7psZKXIVd .row {
  justify-content: center;
}
.cid-v7psZKXIVd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7psZKXIVd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7psZKXIVd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7psZKXIVd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7psZKXIVd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7psZKXIVd .mbr-text_1,
.cid-v7psZKXIVd .mbr-text_2,
.cid-v7psZKXIVd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7psZKXIVd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7psZKXIVd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7psZKXIVd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7psZKXIVd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7psZKXIVd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7psZKXIVd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7psZKXIVd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7psZKXIVd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7psZKXIVd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7psZKXIVd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7psZKXIVd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7psZKXIVd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7psZKXIVd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4CrU435Dn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CrU435Dn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CrU435Dn .section-text {
  padding: 2rem 0;
}
.cid-s4CrU435Dn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CrU435Dn .inner-container {
    width: 100% !important;
  }
}
.cid-s4CrU4vJhb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4CrU4vJhb .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4CrU4vJhb .section-text {
  padding: 2rem 0;
}
.cid-s4CrU4vJhb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4CrU4vJhb .inner-container {
    width: 100% !important;
  }
}
.cid-suanLNUyOE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suanLNUyOE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suanLNUyOE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suanLNUyOE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suanLNUyOE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suanLNUyOE .row > .row {
  display: block;
}
.cid-suanLNUyOE .mbr-gallery-item {
  width: 100%;
}
.cid-suanLNUyOE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suanLNUyOE .mbr-gallery-item > div {
  position: relative;
}
.cid-suanLNUyOE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suanLNUyOE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suanLNUyOE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suanLNUyOE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4CrU5uop1 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4CrU5uop1 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4CrU5uop1 div.b {
  padding-top: 2rem;
}
.cid-s4CrU5uop1 H5 {
  color: #232323;
}
.cid-s4Dj2ObG6g {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Dj2ObG6g .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Dj2ObG6g .section-text {
  padding: 2rem 0;
}
.cid-s4Dj2ObG6g .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Dj2ObG6g .inner-container {
    width: 100% !important;
  }
}
.cid-v7ptwu52vD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7ptwu52vD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ptwu52vD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ptwu52vD .row {
  justify-content: center;
}
.cid-v7ptwu52vD .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ptwu52vD .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ptwu52vD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ptwu52vD .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ptwu52vD .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ptwu52vD .mbr-text_1,
.cid-v7ptwu52vD .mbr-text_2,
.cid-v7ptwu52vD .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ptwu52vD .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptwu52vD .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ptwu52vD .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ptwu52vD .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ptwu52vD .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptwu52vD .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ptwu52vD .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ptwu52vD .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptwu52vD .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ptwu52vD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ptwu52vD .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ptwu52vD .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ptwu52vD .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7ptxkuBL9 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7ptxkuBL9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ptxkuBL9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ptxkuBL9 .row {
  justify-content: center;
}
.cid-v7ptxkuBL9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ptxkuBL9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ptxkuBL9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ptxkuBL9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ptxkuBL9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ptxkuBL9 .mbr-text_1,
.cid-v7ptxkuBL9 .mbr-text_2,
.cid-v7ptxkuBL9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ptxkuBL9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptxkuBL9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ptxkuBL9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ptxkuBL9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ptxkuBL9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptxkuBL9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ptxkuBL9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ptxkuBL9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptxkuBL9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ptxkuBL9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ptxkuBL9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ptxkuBL9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ptxkuBL9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4Dj2OGNb8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Dj2OGNb8 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Dj2OGNb8 .section-text {
  padding: 2rem 0;
}
.cid-s4Dj2OGNb8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Dj2OGNb8 .inner-container {
    width: 100% !important;
  }
}
.cid-s4Dj2PXwGW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Dj2PXwGW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Dj2PXwGW .section-text {
  padding: 2rem 0;
}
.cid-s4Dj2PXwGW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Dj2PXwGW .inner-container {
    width: 100% !important;
  }
}
.cid-suaqBbzFY1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suaqBbzFY1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suaqBbzFY1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suaqBbzFY1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suaqBbzFY1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suaqBbzFY1 .row > .row {
  display: block;
}
.cid-suaqBbzFY1 .mbr-gallery-item {
  width: 100%;
}
.cid-suaqBbzFY1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suaqBbzFY1 .mbr-gallery-item > div {
  position: relative;
}
.cid-suaqBbzFY1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suaqBbzFY1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suaqBbzFY1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suaqBbzFY1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4Dj2RekWM {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4Dj2RekWM .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4Dj2RekWM div.b {
  padding-top: 2rem;
}
.cid-s4Dj2RekWM H5 {
  color: #232323;
}
.cid-s4DilGw4bS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4DilGw4bS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4DilGw4bS .section-text {
  padding: 2rem 0;
}
.cid-s4DilGw4bS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4DilGw4bS .inner-container {
    width: 100% !important;
  }
}
.cid-v7ptgV5UPT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7ptgV5UPT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ptgV5UPT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ptgV5UPT .row {
  justify-content: center;
}
.cid-v7ptgV5UPT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ptgV5UPT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ptgV5UPT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ptgV5UPT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ptgV5UPT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ptgV5UPT .mbr-text_1,
.cid-v7ptgV5UPT .mbr-text_2,
.cid-v7ptgV5UPT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ptgV5UPT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptgV5UPT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ptgV5UPT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ptgV5UPT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ptgV5UPT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptgV5UPT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ptgV5UPT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ptgV5UPT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptgV5UPT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ptgV5UPT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ptgV5UPT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ptgV5UPT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ptgV5UPT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pthRTeA4 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7pthRTeA4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pthRTeA4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pthRTeA4 .row {
  justify-content: center;
}
.cid-v7pthRTeA4 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pthRTeA4 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pthRTeA4 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pthRTeA4 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pthRTeA4 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pthRTeA4 .mbr-text_1,
.cid-v7pthRTeA4 .mbr-text_2,
.cid-v7pthRTeA4 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pthRTeA4 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pthRTeA4 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pthRTeA4 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pthRTeA4 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pthRTeA4 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pthRTeA4 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pthRTeA4 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pthRTeA4 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pthRTeA4 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pthRTeA4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pthRTeA4 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pthRTeA4 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pthRTeA4 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4DilHhsNu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4DilHhsNu .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4DilHhsNu .section-text {
  padding: 2rem 0;
}
.cid-s4DilHhsNu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4DilHhsNu .inner-container {
    width: 100% !important;
  }
}
.cid-s4DilHUKii {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4DilHUKii .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4DilHUKii .section-text {
  padding: 2rem 0;
}
.cid-s4DilHUKii .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4DilHUKii .inner-container {
    width: 100% !important;
  }
}
.cid-s4DilI8Ok8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4DilI8Ok8 .item {
  padding-bottom: 2rem;
}
.cid-s4DilI8Ok8 .item-wrapper {
  height: 100%;
}
.cid-s4DilI8Ok8 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4DilI8Ok8 .carousel-control,
.cid-s4DilI8Ok8 .close {
  background: #1b1b1b;
}
.cid-s4DilI8Ok8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4DilI8Ok8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4DilI8Ok8 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4DilI8Ok8 .close::before {
  content: '\e91a';
}
.cid-s4DilI8Ok8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4DilI8Ok8 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4DilI8Ok8 .carousel-inner > .active {
  display: block;
}
.cid-s4DilI8Ok8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4DilI8Ok8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4DilI8Ok8 .carousel-control .icon-next,
.cid-s4DilI8Ok8 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4DilI8Ok8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4DilI8Ok8 .carousel-control,
  .cid-s4DilI8Ok8 .carousel-indicators,
  .cid-s4DilI8Ok8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4DilI8Ok8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4DilI8Ok8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4DilI8Ok8 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4DilI8Ok8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4DilI8Ok8 .carousel-indicators {
    display: none;
  }
}
.cid-s4DilI8Ok8 .carousel-indicators .active,
.cid-s4DilI8Ok8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4DilI8Ok8 .carousel-indicators .active {
  background: #fff;
}
.cid-s4DilI8Ok8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4DilI8Ok8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4DilI8Ok8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4DilI8Ok8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4DilI8Ok8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4DilI8Ok8 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4DilI8Ok8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4DilI8Ok8 .carousel {
  width: 100%;
}
.cid-s4DilI8Ok8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4DilI8Ok8 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4DilI8Ok8 .modal.fade .modal-dialog,
.cid-s4DilI8Ok8 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4DilI8Ok8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4DilI8Ok8 a {
  display: block;
}
.cid-s4DilI8Ok8 a.img {
  pointer-events: none;
}
.cid-s4DilJNZie {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4DilJNZie .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4DilJNZie div.b {
  padding-top: 2rem;
}
.cid-s4DilJNZie H5 {
  color: #232323;
}
.cid-s4DospTxUD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4DospTxUD .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4DospTxUD .section-text {
  padding: 2rem 0;
}
.cid-s4DospTxUD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4DospTxUD .inner-container {
    width: 100% !important;
  }
}
.cid-v7puq2g1me {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7puq2g1me .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7puq2g1me .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7puq2g1me .row {
  justify-content: center;
}
.cid-v7puq2g1me .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7puq2g1me .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7puq2g1me .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7puq2g1me .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7puq2g1me .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7puq2g1me .mbr-text_1,
.cid-v7puq2g1me .mbr-text_2,
.cid-v7puq2g1me .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7puq2g1me .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7puq2g1me .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7puq2g1me .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7puq2g1me .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7puq2g1me .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7puq2g1me .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7puq2g1me .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7puq2g1me .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7puq2g1me .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7puq2g1me .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7puq2g1me .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7puq2g1me .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7puq2g1me .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7puqUS8Ms {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7puqUS8Ms .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7puqUS8Ms .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7puqUS8Ms .row {
  justify-content: center;
}
.cid-v7puqUS8Ms .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7puqUS8Ms .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7puqUS8Ms .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7puqUS8Ms .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7puqUS8Ms .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7puqUS8Ms .mbr-text_1,
.cid-v7puqUS8Ms .mbr-text_2,
.cid-v7puqUS8Ms .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7puqUS8Ms .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7puqUS8Ms .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7puqUS8Ms .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7puqUS8Ms .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7puqUS8Ms .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7puqUS8Ms .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7puqUS8Ms .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7puqUS8Ms .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7puqUS8Ms .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7puqUS8Ms .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7puqUS8Ms .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7puqUS8Ms .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7puqUS8Ms .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4Dosrdtia {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Dosrdtia .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Dosrdtia .section-text {
  padding: 2rem 0;
}
.cid-s4Dosrdtia .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Dosrdtia .inner-container {
    width: 100% !important;
  }
}
.cid-s4DosrX0OR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4DosrX0OR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4DosrX0OR .section-text {
  padding: 2rem 0;
}
.cid-s4DosrX0OR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4DosrX0OR .inner-container {
    width: 100% !important;
  }
}
.cid-suaoAKhSdK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suaoAKhSdK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suaoAKhSdK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suaoAKhSdK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suaoAKhSdK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suaoAKhSdK .row > .row {
  display: block;
}
.cid-suaoAKhSdK .mbr-gallery-item {
  width: 100%;
}
.cid-suaoAKhSdK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suaoAKhSdK .mbr-gallery-item > div {
  position: relative;
}
.cid-suaoAKhSdK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suaoAKhSdK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suaoAKhSdK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suaoAKhSdK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4DostkBsG {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4DostkBsG .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4DostkBsG div.b {
  padding-top: 2rem;
}
.cid-s4DostkBsG H5 {
  color: #232323;
}
.cid-s4DpYquLoD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4DpYquLoD .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4DpYquLoD .section-text {
  padding: 2rem 0;
}
.cid-s4DpYquLoD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4DpYquLoD .inner-container {
    width: 100% !important;
  }
}
.cid-v7pub267kN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7pub267kN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pub267kN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pub267kN .row {
  justify-content: center;
}
.cid-v7pub267kN .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pub267kN .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pub267kN .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pub267kN .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pub267kN .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pub267kN .mbr-text_1,
.cid-v7pub267kN .mbr-text_2,
.cid-v7pub267kN .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pub267kN .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pub267kN .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pub267kN .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pub267kN .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pub267kN .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pub267kN .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pub267kN .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pub267kN .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pub267kN .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pub267kN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pub267kN .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pub267kN .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pub267kN .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pubUepbE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7pubUepbE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pubUepbE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pubUepbE .row {
  justify-content: center;
}
.cid-v7pubUepbE .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pubUepbE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pubUepbE .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pubUepbE .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pubUepbE .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pubUepbE .mbr-text_1,
.cid-v7pubUepbE .mbr-text_2,
.cid-v7pubUepbE .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pubUepbE .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pubUepbE .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pubUepbE .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pubUepbE .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pubUepbE .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pubUepbE .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pubUepbE .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pubUepbE .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pubUepbE .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pubUepbE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pubUepbE .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pubUepbE .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pubUepbE .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4DpYqY2wq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4DpYqY2wq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4DpYqY2wq .section-text {
  padding: 2rem 0;
}
.cid-s4DpYqY2wq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4DpYqY2wq .inner-container {
    width: 100% !important;
  }
}
.cid-s4DpYrwnJY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4DpYrwnJY .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4DpYrwnJY .section-text {
  padding: 2rem 0;
}
.cid-s4DpYrwnJY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4DpYrwnJY .inner-container {
    width: 100% !important;
  }
}
.cid-suarHULoqJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suarHULoqJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suarHULoqJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suarHULoqJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suarHULoqJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suarHULoqJ .row > .row {
  display: block;
}
.cid-suarHULoqJ .mbr-gallery-item {
  width: 100%;
}
.cid-suarHULoqJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suarHULoqJ .mbr-gallery-item > div {
  position: relative;
}
.cid-suarHULoqJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suarHULoqJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suarHULoqJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suarHULoqJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4DpYsCLla {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4DpYsCLla .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4DpYsCLla div.b {
  padding-top: 2rem;
}
.cid-s4DpYsCLla H5 {
  color: #232323;
}
.cid-s4DqIX7ojY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4DqIX7ojY .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4DqIX7ojY .section-text {
  padding: 2rem 0;
}
.cid-s4DqIX7ojY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4DqIX7ojY .inner-container {
    width: 100% !important;
  }
}
.cid-v7pvSl21NX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7pvSl21NX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pvSl21NX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pvSl21NX .row {
  justify-content: center;
}
.cid-v7pvSl21NX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pvSl21NX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pvSl21NX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pvSl21NX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pvSl21NX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pvSl21NX .mbr-text_1,
.cid-v7pvSl21NX .mbr-text_2,
.cid-v7pvSl21NX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pvSl21NX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pvSl21NX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pvSl21NX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pvSl21NX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pvSl21NX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pvSl21NX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pvSl21NX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pvSl21NX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pvSl21NX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pvSl21NX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pvSl21NX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pvSl21NX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pvSl21NX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pvTcuPku {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7pvTcuPku .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pvTcuPku .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pvTcuPku .row {
  justify-content: center;
}
.cid-v7pvTcuPku .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pvTcuPku .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pvTcuPku .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pvTcuPku .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pvTcuPku .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pvTcuPku .mbr-text_1,
.cid-v7pvTcuPku .mbr-text_2,
.cid-v7pvTcuPku .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pvTcuPku .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pvTcuPku .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pvTcuPku .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pvTcuPku .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pvTcuPku .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pvTcuPku .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pvTcuPku .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pvTcuPku .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pvTcuPku .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pvTcuPku .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pvTcuPku .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pvTcuPku .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pvTcuPku .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4DqIY37Gw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4DqIY37Gw .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4DqIY37Gw .section-text {
  padding: 2rem 0;
}
.cid-s4DqIY37Gw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4DqIY37Gw .inner-container {
    width: 100% !important;
  }
}
.cid-s4DqIYvxih {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4DqIYvxih .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4DqIYvxih .section-text {
  padding: 2rem 0;
}
.cid-s4DqIYvxih .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4DqIYvxih .inner-container {
    width: 100% !important;
  }
}
.cid-suast6mVon {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suast6mVon .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suast6mVon .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suast6mVon .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suast6mVon .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suast6mVon .row > .row {
  display: block;
}
.cid-suast6mVon .mbr-gallery-item {
  width: 100%;
}
.cid-suast6mVon .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suast6mVon .mbr-gallery-item > div {
  position: relative;
}
.cid-suast6mVon .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suast6mVon .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suast6mVon .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suast6mVon .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4DqIZxX7N {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4DqIZxX7N .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4DqIZxX7N div.b {
  padding-top: 2rem;
}
.cid-s4DqIZxX7N H5 {
  color: #232323;
}
.cid-s4Drr7Auxn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Drr7Auxn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Drr7Auxn .section-text {
  padding: 2rem 0;
}
.cid-s4Drr7Auxn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Drr7Auxn .inner-container {
    width: 100% !important;
  }
}
.cid-v7rw9q47l8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rw9q47l8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rw9q47l8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rw9q47l8 .row {
  justify-content: center;
}
.cid-v7rw9q47l8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rw9q47l8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rw9q47l8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rw9q47l8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rw9q47l8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rw9q47l8 .mbr-text_1,
.cid-v7rw9q47l8 .mbr-text_2,
.cid-v7rw9q47l8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rw9q47l8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rw9q47l8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rw9q47l8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rw9q47l8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rw9q47l8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rw9q47l8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rw9q47l8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rw9q47l8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rw9q47l8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rw9q47l8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rw9q47l8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rw9q47l8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rw9q47l8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rwasamLA {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rwasamLA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rwasamLA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rwasamLA .row {
  justify-content: center;
}
.cid-v7rwasamLA .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rwasamLA .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rwasamLA .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rwasamLA .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rwasamLA .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rwasamLA .mbr-text_1,
.cid-v7rwasamLA .mbr-text_2,
.cid-v7rwasamLA .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rwasamLA .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwasamLA .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rwasamLA .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rwasamLA .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rwasamLA .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwasamLA .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rwasamLA .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rwasamLA .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwasamLA .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rwasamLA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rwasamLA .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rwasamLA .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rwasamLA .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4Drr85OFV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Drr85OFV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Drr85OFV .section-text {
  padding: 2rem 0;
}
.cid-s4Drr85OFV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Drr85OFV .inner-container {
    width: 100% !important;
  }
}
.cid-s4Drr8wfiq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Drr8wfiq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Drr8wfiq .section-text {
  padding: 2rem 0;
}
.cid-s4Drr8wfiq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Drr8wfiq .inner-container {
    width: 100% !important;
  }
}
.cid-suap1obQja {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suap1obQja .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suap1obQja .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suap1obQja .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suap1obQja .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suap1obQja .row > .row {
  display: block;
}
.cid-suap1obQja .mbr-gallery-item {
  width: 100%;
}
.cid-suap1obQja .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suap1obQja .mbr-gallery-item > div {
  position: relative;
}
.cid-suap1obQja .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suap1obQja .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suap1obQja .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suap1obQja .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4Drr9SkPl {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4Drr9SkPl .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4Drr9SkPl div.b {
  padding-top: 2rem;
}
.cid-s4Drr9SkPl H5 {
  color: #232323;
}
.cid-s4DsatOGqF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4DsatOGqF .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4DsatOGqF .section-text {
  padding: 2rem 0;
}
.cid-s4DsatOGqF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4DsatOGqF .inner-container {
    width: 100% !important;
  }
}
.cid-v7rwrGrEWm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rwrGrEWm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rwrGrEWm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rwrGrEWm .row {
  justify-content: center;
}
.cid-v7rwrGrEWm .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rwrGrEWm .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rwrGrEWm .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rwrGrEWm .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rwrGrEWm .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rwrGrEWm .mbr-text_1,
.cid-v7rwrGrEWm .mbr-text_2,
.cid-v7rwrGrEWm .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rwrGrEWm .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwrGrEWm .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rwrGrEWm .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rwrGrEWm .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rwrGrEWm .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwrGrEWm .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rwrGrEWm .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rwrGrEWm .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwrGrEWm .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rwrGrEWm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rwrGrEWm .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rwrGrEWm .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rwrGrEWm .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rwuN6Nuz {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rwuN6Nuz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rwuN6Nuz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rwuN6Nuz .row {
  justify-content: center;
}
.cid-v7rwuN6Nuz .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rwuN6Nuz .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rwuN6Nuz .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rwuN6Nuz .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rwuN6Nuz .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rwuN6Nuz .mbr-text_1,
.cid-v7rwuN6Nuz .mbr-text_2,
.cid-v7rwuN6Nuz .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rwuN6Nuz .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwuN6Nuz .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rwuN6Nuz .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rwuN6Nuz .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rwuN6Nuz .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwuN6Nuz .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rwuN6Nuz .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rwuN6Nuz .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwuN6Nuz .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rwuN6Nuz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rwuN6Nuz .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rwuN6Nuz .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rwuN6Nuz .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4Dsauhro7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Dsauhro7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Dsauhro7 .section-text {
  padding: 2rem 0;
}
.cid-s4Dsauhro7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Dsauhro7 .inner-container {
    width: 100% !important;
  }
}
.cid-s4DsauJVX7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4DsauJVX7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4DsauJVX7 .section-text {
  padding: 2rem 0;
}
.cid-s4DsauJVX7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4DsauJVX7 .inner-container {
    width: 100% !important;
  }
}
.cid-suat4Ocn18 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suat4Ocn18 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suat4Ocn18 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suat4Ocn18 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suat4Ocn18 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suat4Ocn18 .row > .row {
  display: block;
}
.cid-suat4Ocn18 .mbr-gallery-item {
  width: 100%;
}
.cid-suat4Ocn18 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suat4Ocn18 .mbr-gallery-item > div {
  position: relative;
}
.cid-suat4Ocn18 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suat4Ocn18 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suat4Ocn18 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suat4Ocn18 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4DsavpHzx {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4DsavpHzx .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4DsavpHzx div.b {
  padding-top: 2rem;
}
.cid-s4DsavpHzx H5 {
  color: #232323;
}
.cid-s4GD8zEScu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GD8zEScu .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GD8zEScu .section-text {
  padding: 2rem 0;
}
.cid-s4GD8zEScu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GD8zEScu .inner-container {
    width: 100% !important;
  }
}
.cid-v7rwQyRw8N {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rwQyRw8N .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rwQyRw8N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rwQyRw8N .row {
  justify-content: center;
}
.cid-v7rwQyRw8N .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rwQyRw8N .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rwQyRw8N .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rwQyRw8N .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rwQyRw8N .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rwQyRw8N .mbr-text_1,
.cid-v7rwQyRw8N .mbr-text_2,
.cid-v7rwQyRw8N .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rwQyRw8N .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwQyRw8N .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rwQyRw8N .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rwQyRw8N .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rwQyRw8N .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwQyRw8N .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rwQyRw8N .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rwQyRw8N .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwQyRw8N .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rwQyRw8N .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rwQyRw8N .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rwQyRw8N .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rwQyRw8N .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rwRz67nT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rwRz67nT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rwRz67nT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rwRz67nT .row {
  justify-content: center;
}
.cid-v7rwRz67nT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rwRz67nT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rwRz67nT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rwRz67nT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rwRz67nT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rwRz67nT .mbr-text_1,
.cid-v7rwRz67nT .mbr-text_2,
.cid-v7rwRz67nT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rwRz67nT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwRz67nT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rwRz67nT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rwRz67nT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rwRz67nT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwRz67nT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rwRz67nT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rwRz67nT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rwRz67nT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rwRz67nT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rwRz67nT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rwRz67nT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rwRz67nT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4GD8A8Dvc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GD8A8Dvc .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GD8A8Dvc .section-text {
  padding: 2rem 0;
}
.cid-s4GD8A8Dvc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GD8A8Dvc .inner-container {
    width: 100% !important;
  }
}
.cid-s4GD8APvJo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GD8APvJo .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GD8APvJo .section-text {
  padding: 2rem 0;
}
.cid-s4GD8APvJo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GD8APvJo .inner-container {
    width: 100% !important;
  }
}
.cid-suau0ITIWL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suau0ITIWL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suau0ITIWL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suau0ITIWL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suau0ITIWL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suau0ITIWL .row > .row {
  display: block;
}
.cid-suau0ITIWL .mbr-gallery-item {
  width: 100%;
}
.cid-suau0ITIWL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suau0ITIWL .mbr-gallery-item > div {
  position: relative;
}
.cid-suau0ITIWL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suau0ITIWL .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suau0ITIWL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suau0ITIWL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4GD8ByzDM {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4GD8ByzDM .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4GD8ByzDM div.b {
  padding-top: 2rem;
}
.cid-s4GD8ByzDM H5 {
  color: #232323;
}
.cid-s4GDMc7H7t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GDMc7H7t .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GDMc7H7t .section-text {
  padding: 2rem 0;
}
.cid-s4GDMc7H7t .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GDMc7H7t .inner-container {
    width: 100% !important;
  }
}
.cid-v7ppiOKeK8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7ppiOKeK8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ppiOKeK8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ppiOKeK8 .row {
  justify-content: center;
}
.cid-v7ppiOKeK8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ppiOKeK8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ppiOKeK8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ppiOKeK8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ppiOKeK8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ppiOKeK8 .mbr-text_1,
.cid-v7ppiOKeK8 .mbr-text_2,
.cid-v7ppiOKeK8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ppiOKeK8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppiOKeK8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ppiOKeK8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ppiOKeK8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ppiOKeK8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppiOKeK8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ppiOKeK8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ppiOKeK8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppiOKeK8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ppiOKeK8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ppiOKeK8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ppiOKeK8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ppiOKeK8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7ppjJ6UbV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7ppjJ6UbV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ppjJ6UbV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ppjJ6UbV .row {
  justify-content: center;
}
.cid-v7ppjJ6UbV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ppjJ6UbV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ppjJ6UbV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ppjJ6UbV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ppjJ6UbV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ppjJ6UbV .mbr-text_1,
.cid-v7ppjJ6UbV .mbr-text_2,
.cid-v7ppjJ6UbV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ppjJ6UbV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppjJ6UbV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ppjJ6UbV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ppjJ6UbV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ppjJ6UbV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppjJ6UbV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ppjJ6UbV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ppjJ6UbV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppjJ6UbV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ppjJ6UbV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ppjJ6UbV .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ppjJ6UbV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ppjJ6UbV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4GDMcCoIq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GDMcCoIq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GDMcCoIq .section-text {
  padding: 2rem 0;
}
.cid-s4GDMcCoIq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GDMcCoIq .inner-container {
    width: 100% !important;
  }
}
.cid-s4GDMd0iQD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GDMd0iQD .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GDMd0iQD .section-text {
  padding: 2rem 0;
}
.cid-s4GDMd0iQD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GDMd0iQD .inner-container {
    width: 100% !important;
  }
}
.cid-suavTrYeSD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suavTrYeSD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suavTrYeSD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suavTrYeSD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suavTrYeSD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suavTrYeSD .row > .row {
  display: block;
}
.cid-suavTrYeSD .mbr-gallery-item {
  width: 100%;
}
.cid-suavTrYeSD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suavTrYeSD .mbr-gallery-item > div {
  position: relative;
}
.cid-suavTrYeSD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suavTrYeSD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suavTrYeSD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suavTrYeSD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4GDMdPWCn {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4GDMdPWCn .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4GDMdPWCn div.b {
  padding-top: 2rem;
}
.cid-s4GDMdPWCn H5 {
  color: #232323;
}
.cid-s4GEdhW6aM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GEdhW6aM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GEdhW6aM .section-text {
  padding: 2rem 0;
}
.cid-s4GEdhW6aM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GEdhW6aM .inner-container {
    width: 100% !important;
  }
}
.cid-v7puThCCw8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7puThCCw8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7puThCCw8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7puThCCw8 .row {
  justify-content: center;
}
.cid-v7puThCCw8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7puThCCw8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7puThCCw8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7puThCCw8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7puThCCw8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7puThCCw8 .mbr-text_1,
.cid-v7puThCCw8 .mbr-text_2,
.cid-v7puThCCw8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7puThCCw8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7puThCCw8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7puThCCw8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7puThCCw8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7puThCCw8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7puThCCw8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7puThCCw8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7puThCCw8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7puThCCw8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7puThCCw8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7puThCCw8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7puThCCw8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7puThCCw8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7puUcbTS2 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7puUcbTS2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7puUcbTS2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7puUcbTS2 .row {
  justify-content: center;
}
.cid-v7puUcbTS2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7puUcbTS2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7puUcbTS2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7puUcbTS2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7puUcbTS2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7puUcbTS2 .mbr-text_1,
.cid-v7puUcbTS2 .mbr-text_2,
.cid-v7puUcbTS2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7puUcbTS2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7puUcbTS2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7puUcbTS2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7puUcbTS2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7puUcbTS2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7puUcbTS2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7puUcbTS2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7puUcbTS2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7puUcbTS2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7puUcbTS2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7puUcbTS2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7puUcbTS2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7puUcbTS2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4GEdirJ9U {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GEdirJ9U .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GEdirJ9U .section-text {
  padding: 2rem 0;
}
.cid-s4GEdirJ9U .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GEdirJ9U .inner-container {
    width: 100% !important;
  }
}
.cid-s4GEdj3q5A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GEdj3q5A .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GEdj3q5A .section-text {
  padding: 2rem 0;
}
.cid-s4GEdj3q5A .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GEdj3q5A .inner-container {
    width: 100% !important;
  }
}
.cid-suawmrPRFY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suawmrPRFY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suawmrPRFY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suawmrPRFY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suawmrPRFY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suawmrPRFY .row > .row {
  display: block;
}
.cid-suawmrPRFY .mbr-gallery-item {
  width: 100%;
}
.cid-suawmrPRFY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suawmrPRFY .mbr-gallery-item > div {
  position: relative;
}
.cid-suawmrPRFY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suawmrPRFY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suawmrPRFY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suawmrPRFY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4GEdjHU6r {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4GEdjHU6r .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4GEdjHU6r div.b {
  padding-top: 2rem;
}
.cid-s4GEdjHU6r H5 {
  color: #232323;
}
.cid-s4GEzqsCmG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GEzqsCmG .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GEzqsCmG .section-text {
  padding: 2rem 0;
}
.cid-s4GEzqsCmG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GEzqsCmG .inner-container {
    width: 100% !important;
  }
}
.cid-v7rzgnCMxd {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rzgnCMxd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rzgnCMxd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rzgnCMxd .row {
  justify-content: center;
}
.cid-v7rzgnCMxd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rzgnCMxd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rzgnCMxd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rzgnCMxd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rzgnCMxd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rzgnCMxd .mbr-text_1,
.cid-v7rzgnCMxd .mbr-text_2,
.cid-v7rzgnCMxd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rzgnCMxd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rzgnCMxd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rzgnCMxd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rzgnCMxd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rzgnCMxd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rzgnCMxd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rzgnCMxd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rzgnCMxd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rzgnCMxd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rzgnCMxd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rzgnCMxd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rzgnCMxd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rzgnCMxd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rzhIpInT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rzhIpInT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rzhIpInT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rzhIpInT .row {
  justify-content: center;
}
.cid-v7rzhIpInT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rzhIpInT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rzhIpInT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rzhIpInT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rzhIpInT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rzhIpInT .mbr-text_1,
.cid-v7rzhIpInT .mbr-text_2,
.cid-v7rzhIpInT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rzhIpInT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rzhIpInT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rzhIpInT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rzhIpInT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rzhIpInT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rzhIpInT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rzhIpInT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rzhIpInT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rzhIpInT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rzhIpInT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rzhIpInT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rzhIpInT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rzhIpInT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4GEzqXt48 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GEzqXt48 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GEzqXt48 .section-text {
  padding: 2rem 0;
}
.cid-s4GEzqXt48 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GEzqXt48 .inner-container {
    width: 100% !important;
  }
}
.cid-s4GEzrqCsq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GEzrqCsq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GEzrqCsq .section-text {
  padding: 2rem 0;
}
.cid-s4GEzrqCsq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GEzrqCsq .inner-container {
    width: 100% !important;
  }
}
.cid-suay1d2EUU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suay1d2EUU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suay1d2EUU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suay1d2EUU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suay1d2EUU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suay1d2EUU .row > .row {
  display: block;
}
.cid-suay1d2EUU .mbr-gallery-item {
  width: 100%;
}
.cid-suay1d2EUU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suay1d2EUU .mbr-gallery-item > div {
  position: relative;
}
.cid-suay1d2EUU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suay1d2EUU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suay1d2EUU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suay1d2EUU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4GEzsh384 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4GEzsh384 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4GEzsh384 div.b {
  padding-top: 2rem;
}
.cid-s4GEzsh384 H5 {
  color: #232323;
}
.cid-s4GJ1o2szW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GJ1o2szW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GJ1o2szW .section-text {
  padding: 2rem 0;
}
.cid-s4GJ1o2szW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GJ1o2szW .inner-container {
    width: 100% !important;
  }
}
.cid-v7ppC0ViES {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7ppC0ViES .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ppC0ViES .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ppC0ViES .row {
  justify-content: center;
}
.cid-v7ppC0ViES .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ppC0ViES .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ppC0ViES .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ppC0ViES .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ppC0ViES .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ppC0ViES .mbr-text_1,
.cid-v7ppC0ViES .mbr-text_2,
.cid-v7ppC0ViES .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ppC0ViES .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppC0ViES .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ppC0ViES .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ppC0ViES .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ppC0ViES .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppC0ViES .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ppC0ViES .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ppC0ViES .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppC0ViES .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ppC0ViES .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ppC0ViES .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ppC0ViES .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ppC0ViES .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7ppDc0dNi {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7ppDc0dNi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ppDc0dNi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ppDc0dNi .row {
  justify-content: center;
}
.cid-v7ppDc0dNi .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ppDc0dNi .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ppDc0dNi .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ppDc0dNi .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ppDc0dNi .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ppDc0dNi .mbr-text_1,
.cid-v7ppDc0dNi .mbr-text_2,
.cid-v7ppDc0dNi .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ppDc0dNi .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppDc0dNi .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ppDc0dNi .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ppDc0dNi .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ppDc0dNi .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppDc0dNi .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ppDc0dNi .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ppDc0dNi .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ppDc0dNi .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ppDc0dNi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ppDc0dNi .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ppDc0dNi .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ppDc0dNi .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4GJ1oxAA0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GJ1oxAA0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GJ1oxAA0 .section-text {
  padding: 2rem 0;
}
.cid-s4GJ1oxAA0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GJ1oxAA0 .inner-container {
    width: 100% !important;
  }
}
.cid-s4GJ1p0JyN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GJ1p0JyN .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GJ1p0JyN .section-text {
  padding: 2rem 0;
}
.cid-s4GJ1p0JyN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GJ1p0JyN .inner-container {
    width: 100% !important;
  }
}
.cid-sug4FrpKTn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sug4FrpKTn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sug4FrpKTn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sug4FrpKTn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sug4FrpKTn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sug4FrpKTn .row > .row {
  display: block;
}
.cid-sug4FrpKTn .mbr-gallery-item {
  width: 100%;
}
.cid-sug4FrpKTn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sug4FrpKTn .mbr-gallery-item > div {
  position: relative;
}
.cid-sug4FrpKTn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sug4FrpKTn .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sug4FrpKTn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sug4FrpKTn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4GJ1pIclD {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4GJ1pIclD .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4GJ1pIclD div.b {
  padding-top: 2rem;
}
.cid-s4GJ1pIclD H5 {
  color: #232323;
}
.cid-s4GJl8MWLd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GJl8MWLd .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GJl8MWLd .section-text {
  padding: 2rem 0;
}
.cid-s4GJl8MWLd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GJl8MWLd .inner-container {
    width: 100% !important;
  }
}
.cid-v7pqnDtUAp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7pqnDtUAp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pqnDtUAp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pqnDtUAp .row {
  justify-content: center;
}
.cid-v7pqnDtUAp .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pqnDtUAp .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pqnDtUAp .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pqnDtUAp .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pqnDtUAp .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pqnDtUAp .mbr-text_1,
.cid-v7pqnDtUAp .mbr-text_2,
.cid-v7pqnDtUAp .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pqnDtUAp .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqnDtUAp .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pqnDtUAp .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pqnDtUAp .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pqnDtUAp .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqnDtUAp .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pqnDtUAp .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pqnDtUAp .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqnDtUAp .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7pqnDtUAp .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pqnDtUAp .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pqnDtUAp .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pqnDtUAp .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7pqovAR4J {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7pqovAR4J .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7pqovAR4J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7pqovAR4J .row {
  justify-content: center;
}
.cid-v7pqovAR4J .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7pqovAR4J .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7pqovAR4J .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7pqovAR4J .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7pqovAR4J .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7pqovAR4J .mbr-text_1,
.cid-v7pqovAR4J .mbr-text_2,
.cid-v7pqovAR4J .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7pqovAR4J .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqovAR4J .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7pqovAR4J .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pqovAR4J .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pqovAR4J .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqovAR4J .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7pqovAR4J .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7pqovAR4J .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7pqovAR4J .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7pqovAR4J .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7pqovAR4J .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7pqovAR4J .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7pqovAR4J .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4GJl9f1HJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GJl9f1HJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GJl9f1HJ .section-text {
  padding: 2rem 0;
}
.cid-s4GJl9f1HJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GJl9f1HJ .inner-container {
    width: 100% !important;
  }
}
.cid-s4GJl9FNIe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GJl9FNIe .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GJl9FNIe .section-text {
  padding: 2rem 0;
}
.cid-s4GJl9FNIe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GJl9FNIe .inner-container {
    width: 100% !important;
  }
}
.cid-sug6jfD3XI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sug6jfD3XI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sug6jfD3XI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sug6jfD3XI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sug6jfD3XI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sug6jfD3XI .row > .row {
  display: block;
}
.cid-sug6jfD3XI .mbr-gallery-item {
  width: 100%;
}
.cid-sug6jfD3XI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sug6jfD3XI .mbr-gallery-item > div {
  position: relative;
}
.cid-sug6jfD3XI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sug6jfD3XI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sug6jfD3XI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sug6jfD3XI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4GJlam4Xi {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4GJlam4Xi .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4GJlam4Xi div.b {
  padding-top: 2rem;
}
.cid-s4GJlam4Xi H5 {
  color: #232323;
}
.cid-s4GJAvOyvu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GJAvOyvu .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GJAvOyvu .section-text {
  padding: 2rem 0;
}
.cid-s4GJAvOyvu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GJAvOyvu .inner-container {
    width: 100% !important;
  }
}
.cid-v7proxhfEb {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7proxhfEb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7proxhfEb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7proxhfEb .row {
  justify-content: center;
}
.cid-v7proxhfEb .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7proxhfEb .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7proxhfEb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7proxhfEb .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7proxhfEb .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7proxhfEb .mbr-text_1,
.cid-v7proxhfEb .mbr-text_2,
.cid-v7proxhfEb .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7proxhfEb .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7proxhfEb .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7proxhfEb .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7proxhfEb .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7proxhfEb .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7proxhfEb .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7proxhfEb .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7proxhfEb .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7proxhfEb .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7proxhfEb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7proxhfEb .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7proxhfEb .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7proxhfEb .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7prpzyckl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7prpzyckl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7prpzyckl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7prpzyckl .row {
  justify-content: center;
}
.cid-v7prpzyckl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7prpzyckl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7prpzyckl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7prpzyckl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7prpzyckl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7prpzyckl .mbr-text_1,
.cid-v7prpzyckl .mbr-text_2,
.cid-v7prpzyckl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7prpzyckl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7prpzyckl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7prpzyckl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7prpzyckl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7prpzyckl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7prpzyckl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7prpzyckl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7prpzyckl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7prpzyckl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7prpzyckl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7prpzyckl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7prpzyckl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7prpzyckl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4GJAwhLxN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GJAwhLxN .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GJAwhLxN .section-text {
  padding: 2rem 0;
}
.cid-s4GJAwhLxN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GJAwhLxN .inner-container {
    width: 100% !important;
  }
}
.cid-s4GJAwIbak {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GJAwIbak .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GJAwIbak .section-text {
  padding: 2rem 0;
}
.cid-s4GJAwIbak .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GJAwIbak .inner-container {
    width: 100% !important;
  }
}
.cid-sug71XSeVy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sug71XSeVy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sug71XSeVy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sug71XSeVy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sug71XSeVy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sug71XSeVy .row > .row {
  display: block;
}
.cid-sug71XSeVy .mbr-gallery-item {
  width: 100%;
}
.cid-sug71XSeVy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sug71XSeVy .mbr-gallery-item > div {
  position: relative;
}
.cid-sug71XSeVy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sug71XSeVy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sug71XSeVy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sug71XSeVy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4GJAxqwpG {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4GJAxqwpG .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4GJAxqwpG div.b {
  padding-top: 2rem;
}
.cid-s4GJAxqwpG H5 {
  color: #232323;
}
.cid-s4GLfi1FJA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GLfi1FJA .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GLfi1FJA .section-text {
  padding: 2rem 0;
}
.cid-s4GLfi1FJA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GLfi1FJA .inner-container {
    width: 100% !important;
  }
}
.cid-v7ptMnKXxJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7ptMnKXxJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ptMnKXxJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ptMnKXxJ .row {
  justify-content: center;
}
.cid-v7ptMnKXxJ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ptMnKXxJ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ptMnKXxJ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ptMnKXxJ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ptMnKXxJ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ptMnKXxJ .mbr-text_1,
.cid-v7ptMnKXxJ .mbr-text_2,
.cid-v7ptMnKXxJ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ptMnKXxJ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptMnKXxJ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ptMnKXxJ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ptMnKXxJ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ptMnKXxJ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptMnKXxJ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ptMnKXxJ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ptMnKXxJ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptMnKXxJ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ptMnKXxJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ptMnKXxJ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ptMnKXxJ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ptMnKXxJ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7ptNnaaNv {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7ptNnaaNv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ptNnaaNv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ptNnaaNv .row {
  justify-content: center;
}
.cid-v7ptNnaaNv .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ptNnaaNv .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ptNnaaNv .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ptNnaaNv .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ptNnaaNv .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ptNnaaNv .mbr-text_1,
.cid-v7ptNnaaNv .mbr-text_2,
.cid-v7ptNnaaNv .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ptNnaaNv .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptNnaaNv .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ptNnaaNv .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ptNnaaNv .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ptNnaaNv .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptNnaaNv .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ptNnaaNv .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ptNnaaNv .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ptNnaaNv .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ptNnaaNv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ptNnaaNv .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ptNnaaNv .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ptNnaaNv .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4GLfixseH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GLfixseH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GLfixseH .section-text {
  padding: 2rem 0;
}
.cid-s4GLfixseH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GLfixseH .inner-container {
    width: 100% !important;
  }
}
.cid-s4GLfiVmCv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GLfiVmCv .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GLfiVmCv .section-text {
  padding: 2rem 0;
}
.cid-s4GLfiVmCv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GLfiVmCv .inner-container {
    width: 100% !important;
  }
}
.cid-sug7Wzmsc9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sug7Wzmsc9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sug7Wzmsc9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sug7Wzmsc9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sug7Wzmsc9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sug7Wzmsc9 .row > .row {
  display: block;
}
.cid-sug7Wzmsc9 .mbr-gallery-item {
  width: 100%;
}
.cid-sug7Wzmsc9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sug7Wzmsc9 .mbr-gallery-item > div {
  position: relative;
}
.cid-sug7Wzmsc9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sug7Wzmsc9 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sug7Wzmsc9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sug7Wzmsc9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4GLfjAbuJ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4GLfjAbuJ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4GLfjAbuJ div.b {
  padding-top: 2rem;
}
.cid-s4GLfjAbuJ H5 {
  color: #232323;
}
.cid-s4GLYz9Fka {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GLYz9Fka .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GLYz9Fka .section-text {
  padding: 2rem 0;
}
.cid-s4GLYz9Fka .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GLYz9Fka .inner-container {
    width: 100% !important;
  }
}
.cid-v7rBaOiHxM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rBaOiHxM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rBaOiHxM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rBaOiHxM .row {
  justify-content: center;
}
.cid-v7rBaOiHxM .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rBaOiHxM .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rBaOiHxM .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rBaOiHxM .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rBaOiHxM .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rBaOiHxM .mbr-text_1,
.cid-v7rBaOiHxM .mbr-text_2,
.cid-v7rBaOiHxM .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rBaOiHxM .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rBaOiHxM .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rBaOiHxM .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rBaOiHxM .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rBaOiHxM .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rBaOiHxM .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rBaOiHxM .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rBaOiHxM .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rBaOiHxM .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rBaOiHxM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rBaOiHxM .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rBaOiHxM .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rBaOiHxM .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rBbGU2qo {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rBbGU2qo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rBbGU2qo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rBbGU2qo .row {
  justify-content: center;
}
.cid-v7rBbGU2qo .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rBbGU2qo .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rBbGU2qo .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rBbGU2qo .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rBbGU2qo .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rBbGU2qo .mbr-text_1,
.cid-v7rBbGU2qo .mbr-text_2,
.cid-v7rBbGU2qo .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rBbGU2qo .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rBbGU2qo .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rBbGU2qo .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rBbGU2qo .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rBbGU2qo .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rBbGU2qo .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rBbGU2qo .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rBbGU2qo .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rBbGU2qo .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rBbGU2qo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rBbGU2qo .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rBbGU2qo .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rBbGU2qo .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4GLYzGdRp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GLYzGdRp .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GLYzGdRp .section-text {
  padding: 2rem 0;
}
.cid-s4GLYzGdRp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GLYzGdRp .inner-container {
    width: 100% !important;
  }
}
.cid-s4GLYA3Gaj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GLYA3Gaj .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GLYA3Gaj .section-text {
  padding: 2rem 0;
}
.cid-s4GLYA3Gaj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GLYA3Gaj .inner-container {
    width: 100% !important;
  }
}
.cid-sug8S4zC88 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sug8S4zC88 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sug8S4zC88 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sug8S4zC88 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sug8S4zC88 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sug8S4zC88 .row > .row {
  display: block;
}
.cid-sug8S4zC88 .mbr-gallery-item {
  width: 100%;
}
.cid-sug8S4zC88 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sug8S4zC88 .mbr-gallery-item > div {
  position: relative;
}
.cid-sug8S4zC88 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sug8S4zC88 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sug8S4zC88 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sug8S4zC88 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4GLYAFdYW {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4GLYAFdYW .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4GLYAFdYW div.b {
  padding-top: 2rem;
}
.cid-s4GLYAFdYW H5 {
  color: #232323;
}
.cid-s4GMUw3v7Y {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GMUw3v7Y .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GMUw3v7Y .section-text {
  padding: 2rem 0;
}
.cid-s4GMUw3v7Y .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GMUw3v7Y .inner-container {
    width: 100% !important;
  }
}
.cid-v7prc4H5RZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7prc4H5RZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7prc4H5RZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7prc4H5RZ .row {
  justify-content: center;
}
.cid-v7prc4H5RZ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7prc4H5RZ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7prc4H5RZ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7prc4H5RZ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7prc4H5RZ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7prc4H5RZ .mbr-text_1,
.cid-v7prc4H5RZ .mbr-text_2,
.cid-v7prc4H5RZ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7prc4H5RZ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7prc4H5RZ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7prc4H5RZ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7prc4H5RZ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7prc4H5RZ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7prc4H5RZ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7prc4H5RZ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7prc4H5RZ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7prc4H5RZ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7prc4H5RZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7prc4H5RZ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7prc4H5RZ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7prc4H5RZ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7prd79FDI {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7prd79FDI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7prd79FDI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7prd79FDI .row {
  justify-content: center;
}
.cid-v7prd79FDI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7prd79FDI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7prd79FDI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7prd79FDI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7prd79FDI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7prd79FDI .mbr-text_1,
.cid-v7prd79FDI .mbr-text_2,
.cid-v7prd79FDI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7prd79FDI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7prd79FDI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7prd79FDI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7prd79FDI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7prd79FDI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7prd79FDI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7prd79FDI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7prd79FDI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7prd79FDI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7prd79FDI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7prd79FDI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7prd79FDI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7prd79FDI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4GMUwAfAl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GMUwAfAl .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GMUwAfAl .section-text {
  padding: 2rem 0;
}
.cid-s4GMUwAfAl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GMUwAfAl .inner-container {
    width: 100% !important;
  }
}
.cid-s4GMUwXwtr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4GMUwXwtr .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4GMUwXwtr .section-text {
  padding: 2rem 0;
}
.cid-s4GMUwXwtr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4GMUwXwtr .inner-container {
    width: 100% !important;
  }
}
.cid-suga7lDlkq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suga7lDlkq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suga7lDlkq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suga7lDlkq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suga7lDlkq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suga7lDlkq .row > .row {
  display: block;
}
.cid-suga7lDlkq .mbr-gallery-item {
  width: 100%;
}
.cid-suga7lDlkq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suga7lDlkq .mbr-gallery-item > div {
  position: relative;
}
.cid-suga7lDlkq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suga7lDlkq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suga7lDlkq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suga7lDlkq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4GMUxB0qw {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4GMUxB0qw .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4GMUxB0qw div.b {
  padding-top: 2rem;
}
.cid-s4GMUxB0qw H5 {
  color: #232323;
}
.cid-s4I1p9HCzI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I1p9HCzI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I1p9HCzI .section-text {
  padding: 2rem 0;
}
.cid-s4I1p9HCzI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I1p9HCzI .inner-container {
    width: 100% !important;
  }
}
.cid-v7rvTM8dMq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rvTM8dMq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rvTM8dMq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rvTM8dMq .row {
  justify-content: center;
}
.cid-v7rvTM8dMq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rvTM8dMq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rvTM8dMq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rvTM8dMq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rvTM8dMq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rvTM8dMq .mbr-text_1,
.cid-v7rvTM8dMq .mbr-text_2,
.cid-v7rvTM8dMq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rvTM8dMq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rvTM8dMq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rvTM8dMq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rvTM8dMq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rvTM8dMq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rvTM8dMq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rvTM8dMq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rvTM8dMq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rvTM8dMq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rvTM8dMq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rvTM8dMq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rvTM8dMq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rvTM8dMq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rvUDglxF {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rvUDglxF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rvUDglxF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rvUDglxF .row {
  justify-content: center;
}
.cid-v7rvUDglxF .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rvUDglxF .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rvUDglxF .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rvUDglxF .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rvUDglxF .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rvUDglxF .mbr-text_1,
.cid-v7rvUDglxF .mbr-text_2,
.cid-v7rvUDglxF .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rvUDglxF .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rvUDglxF .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rvUDglxF .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rvUDglxF .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rvUDglxF .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rvUDglxF .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rvUDglxF .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rvUDglxF .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rvUDglxF .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rvUDglxF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rvUDglxF .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rvUDglxF .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rvUDglxF .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4I1pabvW0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I1pabvW0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I1pabvW0 .section-text {
  padding: 2rem 0;
}
.cid-s4I1pabvW0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I1pabvW0 .inner-container {
    width: 100% !important;
  }
}
.cid-s4I1paB9Gu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I1paB9Gu .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I1paB9Gu .section-text {
  padding: 2rem 0;
}
.cid-s4I1paB9Gu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I1paB9Gu .inner-container {
    width: 100% !important;
  }
}
.cid-sugbHHreNC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sugbHHreNC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sugbHHreNC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sugbHHreNC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sugbHHreNC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sugbHHreNC .row > .row {
  display: block;
}
.cid-sugbHHreNC .mbr-gallery-item {
  width: 100%;
}
.cid-sugbHHreNC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sugbHHreNC .mbr-gallery-item > div {
  position: relative;
}
.cid-sugbHHreNC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sugbHHreNC .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sugbHHreNC .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sugbHHreNC .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4I1pbeGXY {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4I1pbeGXY .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4I1pbeGXY div.b {
  padding-top: 2rem;
}
.cid-s4I1pbeGXY H5 {
  color: #232323;
}
.cid-s4I2hVsFeH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I2hVsFeH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I2hVsFeH .section-text {
  padding: 2rem 0;
}
.cid-s4I2hVsFeH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I2hVsFeH .inner-container {
    width: 100% !important;
  }
}
.cid-v7rxqzK9X7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rxqzK9X7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rxqzK9X7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rxqzK9X7 .row {
  justify-content: center;
}
.cid-v7rxqzK9X7 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rxqzK9X7 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rxqzK9X7 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rxqzK9X7 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rxqzK9X7 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rxqzK9X7 .mbr-text_1,
.cid-v7rxqzK9X7 .mbr-text_2,
.cid-v7rxqzK9X7 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rxqzK9X7 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rxqzK9X7 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rxqzK9X7 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rxqzK9X7 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rxqzK9X7 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rxqzK9X7 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rxqzK9X7 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rxqzK9X7 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rxqzK9X7 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rxqzK9X7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rxqzK9X7 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rxqzK9X7 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rxqzK9X7 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rxsBUQva {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rxsBUQva .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rxsBUQva .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rxsBUQva .row {
  justify-content: center;
}
.cid-v7rxsBUQva .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rxsBUQva .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rxsBUQva .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rxsBUQva .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rxsBUQva .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rxsBUQva .mbr-text_1,
.cid-v7rxsBUQva .mbr-text_2,
.cid-v7rxsBUQva .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rxsBUQva .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rxsBUQva .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rxsBUQva .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rxsBUQva .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rxsBUQva .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rxsBUQva .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rxsBUQva .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rxsBUQva .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rxsBUQva .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rxsBUQva .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rxsBUQva .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rxsBUQva .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rxsBUQva .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4I2hWjGE7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I2hWjGE7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I2hWjGE7 .section-text {
  padding: 2rem 0;
}
.cid-s4I2hWjGE7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I2hWjGE7 .inner-container {
    width: 100% !important;
  }
}
.cid-s4I2hWISy8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I2hWISy8 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I2hWISy8 .section-text {
  padding: 2rem 0;
}
.cid-s4I2hWISy8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I2hWISy8 .inner-container {
    width: 100% !important;
  }
}
.cid-sugcq6iS22 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sugcq6iS22 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sugcq6iS22 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sugcq6iS22 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sugcq6iS22 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sugcq6iS22 .row > .row {
  display: block;
}
.cid-sugcq6iS22 .mbr-gallery-item {
  width: 100%;
}
.cid-sugcq6iS22 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sugcq6iS22 .mbr-gallery-item > div {
  position: relative;
}
.cid-sugcq6iS22 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sugcq6iS22 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sugcq6iS22 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sugcq6iS22 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4I2hXnEpB {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4I2hXnEpB .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4I2hXnEpB div.b {
  padding-top: 2rem;
}
.cid-s4I2hXnEpB H5 {
  color: #232323;
}
.cid-s4I2NVP3KD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I2NVP3KD .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I2NVP3KD .section-text {
  padding: 2rem 0;
}
.cid-s4I2NVP3KD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I2NVP3KD .inner-container {
    width: 100% !important;
  }
}
.cid-v7rys5A2X9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rys5A2X9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rys5A2X9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rys5A2X9 .row {
  justify-content: center;
}
.cid-v7rys5A2X9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rys5A2X9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rys5A2X9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rys5A2X9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rys5A2X9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rys5A2X9 .mbr-text_1,
.cid-v7rys5A2X9 .mbr-text_2,
.cid-v7rys5A2X9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rys5A2X9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rys5A2X9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rys5A2X9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rys5A2X9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rys5A2X9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rys5A2X9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rys5A2X9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rys5A2X9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rys5A2X9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rys5A2X9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rys5A2X9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rys5A2X9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rys5A2X9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rysXUjj5 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rysXUjj5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rysXUjj5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rysXUjj5 .row {
  justify-content: center;
}
.cid-v7rysXUjj5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rysXUjj5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rysXUjj5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rysXUjj5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rysXUjj5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rysXUjj5 .mbr-text_1,
.cid-v7rysXUjj5 .mbr-text_2,
.cid-v7rysXUjj5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rysXUjj5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rysXUjj5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rysXUjj5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rysXUjj5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rysXUjj5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rysXUjj5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rysXUjj5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rysXUjj5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rysXUjj5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rysXUjj5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rysXUjj5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rysXUjj5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rysXUjj5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4I2NWiFJo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I2NWiFJo .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I2NWiFJo .section-text {
  padding: 2rem 0;
}
.cid-s4I2NWiFJo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I2NWiFJo .inner-container {
    width: 100% !important;
  }
}
.cid-s4I2NWLIjS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I2NWLIjS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I2NWLIjS .section-text {
  padding: 2rem 0;
}
.cid-s4I2NWLIjS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I2NWLIjS .inner-container {
    width: 100% !important;
  }
}
.cid-suauz4fJeO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suauz4fJeO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suauz4fJeO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suauz4fJeO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suauz4fJeO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suauz4fJeO .row > .row {
  display: block;
}
.cid-suauz4fJeO .mbr-gallery-item {
  width: 100%;
}
.cid-suauz4fJeO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suauz4fJeO .mbr-gallery-item > div {
  position: relative;
}
.cid-suauz4fJeO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suauz4fJeO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suauz4fJeO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suauz4fJeO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4I2NXtDL2 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4I2NXtDL2 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4I2NXtDL2 div.b {
  padding-top: 2rem;
}
.cid-s4I2NXtDL2 H5 {
  color: #232323;
}
.cid-s4I3iccISz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I3iccISz .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I3iccISz .section-text {
  padding: 2rem 0;
}
.cid-s4I3iccISz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I3iccISz .inner-container {
    width: 100% !important;
  }
}
.cid-v7rzQtURgT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rzQtURgT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rzQtURgT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rzQtURgT .row {
  justify-content: center;
}
.cid-v7rzQtURgT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rzQtURgT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rzQtURgT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rzQtURgT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rzQtURgT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rzQtURgT .mbr-text_1,
.cid-v7rzQtURgT .mbr-text_2,
.cid-v7rzQtURgT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rzQtURgT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rzQtURgT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rzQtURgT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rzQtURgT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rzQtURgT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rzQtURgT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rzQtURgT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rzQtURgT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rzQtURgT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rzQtURgT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rzQtURgT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rzQtURgT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rzQtURgT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rzRqwFzs {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rzRqwFzs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rzRqwFzs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rzRqwFzs .row {
  justify-content: center;
}
.cid-v7rzRqwFzs .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rzRqwFzs .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rzRqwFzs .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rzRqwFzs .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rzRqwFzs .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rzRqwFzs .mbr-text_1,
.cid-v7rzRqwFzs .mbr-text_2,
.cid-v7rzRqwFzs .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rzRqwFzs .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rzRqwFzs .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rzRqwFzs .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rzRqwFzs .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rzRqwFzs .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rzRqwFzs .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rzRqwFzs .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rzRqwFzs .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rzRqwFzs .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rzRqwFzs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rzRqwFzs .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rzRqwFzs .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rzRqwFzs .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4I3icKfPv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I3icKfPv .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I3icKfPv .section-text {
  padding: 2rem 0;
}
.cid-s4I3icKfPv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I3icKfPv .inner-container {
    width: 100% !important;
  }
}
.cid-s4I3ideyBs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I3ideyBs .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I3ideyBs .section-text {
  padding: 2rem 0;
}
.cid-s4I3ideyBs .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I3ideyBs .inner-container {
    width: 100% !important;
  }
}
.cid-sugdYFxPob {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sugdYFxPob .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sugdYFxPob .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sugdYFxPob .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sugdYFxPob .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sugdYFxPob .row > .row {
  display: block;
}
.cid-sugdYFxPob .mbr-gallery-item {
  width: 100%;
}
.cid-sugdYFxPob .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sugdYFxPob .mbr-gallery-item > div {
  position: relative;
}
.cid-sugdYFxPob .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sugdYFxPob .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sugdYFxPob .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sugdYFxPob .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4I3idVqXl {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4I3idVqXl .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4I3idVqXl div.b {
  padding-top: 2rem;
}
.cid-s4I3idVqXl H5 {
  color: #232323;
}
.cid-s4I3AVoVLh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I3AVoVLh .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I3AVoVLh .section-text {
  padding: 2rem 0;
}
.cid-s4I3AVoVLh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I3AVoVLh .inner-container {
    width: 100% !important;
  }
}
.cid-v7rAh9dRxb {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rAh9dRxb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rAh9dRxb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rAh9dRxb .row {
  justify-content: center;
}
.cid-v7rAh9dRxb .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rAh9dRxb .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rAh9dRxb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rAh9dRxb .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rAh9dRxb .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rAh9dRxb .mbr-text_1,
.cid-v7rAh9dRxb .mbr-text_2,
.cid-v7rAh9dRxb .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rAh9dRxb .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rAh9dRxb .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rAh9dRxb .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rAh9dRxb .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rAh9dRxb .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rAh9dRxb .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rAh9dRxb .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rAh9dRxb .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rAh9dRxb .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rAh9dRxb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rAh9dRxb .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rAh9dRxb .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rAh9dRxb .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rAi1daUb {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rAi1daUb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rAi1daUb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rAi1daUb .row {
  justify-content: center;
}
.cid-v7rAi1daUb .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rAi1daUb .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rAi1daUb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rAi1daUb .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rAi1daUb .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rAi1daUb .mbr-text_1,
.cid-v7rAi1daUb .mbr-text_2,
.cid-v7rAi1daUb .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rAi1daUb .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rAi1daUb .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rAi1daUb .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rAi1daUb .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rAi1daUb .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rAi1daUb .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rAi1daUb .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rAi1daUb .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rAi1daUb .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rAi1daUb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rAi1daUb .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rAi1daUb .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rAi1daUb .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4I3AVS2hI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I3AVS2hI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I3AVS2hI .section-text {
  padding: 2rem 0;
}
.cid-s4I3AVS2hI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I3AVS2hI .inner-container {
    width: 100% !important;
  }
}
.cid-s4I3AWwnXU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I3AWwnXU .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I3AWwnXU .section-text {
  padding: 2rem 0;
}
.cid-s4I3AWwnXU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I3AWwnXU .inner-container {
    width: 100% !important;
  }
}
.cid-sugfa52Riv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sugfa52Riv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sugfa52Riv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sugfa52Riv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sugfa52Riv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sugfa52Riv .row > .row {
  display: block;
}
.cid-sugfa52Riv .mbr-gallery-item {
  width: 100%;
}
.cid-sugfa52Riv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sugfa52Riv .mbr-gallery-item > div {
  position: relative;
}
.cid-sugfa52Riv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sugfa52Riv .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sugfa52Riv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sugfa52Riv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4I3AXetX8 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4I3AXetX8 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4I3AXetX8 div.b {
  padding-top: 2rem;
}
.cid-s4I3AXetX8 H5 {
  color: #232323;
}
.cid-s4I5qpasbi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I5qpasbi .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I5qpasbi .section-text {
  padding: 2rem 0;
}
.cid-s4I5qpasbi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I5qpasbi .inner-container {
    width: 100% !important;
  }
}
.cid-v7rAxCb8ra {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rAxCb8ra .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rAxCb8ra .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rAxCb8ra .row {
  justify-content: center;
}
.cid-v7rAxCb8ra .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rAxCb8ra .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rAxCb8ra .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rAxCb8ra .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rAxCb8ra .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rAxCb8ra .mbr-text_1,
.cid-v7rAxCb8ra .mbr-text_2,
.cid-v7rAxCb8ra .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rAxCb8ra .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rAxCb8ra .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rAxCb8ra .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rAxCb8ra .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rAxCb8ra .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rAxCb8ra .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rAxCb8ra .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rAxCb8ra .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rAxCb8ra .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rAxCb8ra .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rAxCb8ra .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rAxCb8ra .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rAxCb8ra .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rAyA1afE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rAyA1afE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rAyA1afE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rAyA1afE .row {
  justify-content: center;
}
.cid-v7rAyA1afE .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rAyA1afE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rAyA1afE .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rAyA1afE .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rAyA1afE .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rAyA1afE .mbr-text_1,
.cid-v7rAyA1afE .mbr-text_2,
.cid-v7rAyA1afE .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rAyA1afE .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rAyA1afE .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rAyA1afE .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rAyA1afE .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rAyA1afE .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rAyA1afE .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rAyA1afE .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rAyA1afE .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rAyA1afE .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rAyA1afE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rAyA1afE .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rAyA1afE .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rAyA1afE .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4I5qpE7Xv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I5qpE7Xv .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I5qpE7Xv .section-text {
  padding: 2rem 0;
}
.cid-s4I5qpE7Xv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I5qpE7Xv .inner-container {
    width: 100% !important;
  }
}
.cid-s4I5qq9epS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I5qq9epS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I5qq9epS .section-text {
  padding: 2rem 0;
}
.cid-s4I5qq9epS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I5qq9epS .inner-container {
    width: 100% !important;
  }
}
.cid-suggbJwpEt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-suggbJwpEt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suggbJwpEt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suggbJwpEt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suggbJwpEt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suggbJwpEt .row > .row {
  display: block;
}
.cid-suggbJwpEt .mbr-gallery-item {
  width: 100%;
}
.cid-suggbJwpEt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suggbJwpEt .mbr-gallery-item > div {
  position: relative;
}
.cid-suggbJwpEt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suggbJwpEt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suggbJwpEt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suggbJwpEt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4I5qr66Qp {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4I5qr66Qp .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4I5qr66Qp div.b {
  padding-top: 2rem;
}
.cid-s4I5qr66Qp H5 {
  color: #232323;
}
.cid-s4I8zAOWpM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I8zAOWpM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I8zAOWpM .section-text {
  padding: 2rem 0;
}
.cid-s4I8zAOWpM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I8zAOWpM .inner-container {
    width: 100% !important;
  }
}
.cid-v7ryLDxOqd {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7ryLDxOqd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ryLDxOqd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ryLDxOqd .row {
  justify-content: center;
}
.cid-v7ryLDxOqd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ryLDxOqd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ryLDxOqd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ryLDxOqd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ryLDxOqd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ryLDxOqd .mbr-text_1,
.cid-v7ryLDxOqd .mbr-text_2,
.cid-v7ryLDxOqd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ryLDxOqd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ryLDxOqd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ryLDxOqd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ryLDxOqd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ryLDxOqd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ryLDxOqd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ryLDxOqd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ryLDxOqd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ryLDxOqd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ryLDxOqd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ryLDxOqd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ryLDxOqd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ryLDxOqd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7ryMAf88H {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7ryMAf88H .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ryMAf88H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ryMAf88H .row {
  justify-content: center;
}
.cid-v7ryMAf88H .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ryMAf88H .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ryMAf88H .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ryMAf88H .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ryMAf88H .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ryMAf88H .mbr-text_1,
.cid-v7ryMAf88H .mbr-text_2,
.cid-v7ryMAf88H .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ryMAf88H .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ryMAf88H .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ryMAf88H .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ryMAf88H .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ryMAf88H .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ryMAf88H .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ryMAf88H .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ryMAf88H .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ryMAf88H .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ryMAf88H .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ryMAf88H .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ryMAf88H .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ryMAf88H .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4I8zBlgz3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I8zBlgz3 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I8zBlgz3 .section-text {
  padding: 2rem 0;
}
.cid-s4I8zBlgz3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I8zBlgz3 .inner-container {
    width: 100% !important;
  }
}
.cid-s4I8zBOmGW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I8zBOmGW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I8zBOmGW .section-text {
  padding: 2rem 0;
}
.cid-s4I8zBOmGW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I8zBOmGW .inner-container {
    width: 100% !important;
  }
}
.cid-sugjAvJU8p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sugjAvJU8p .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sugjAvJU8p .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sugjAvJU8p .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sugjAvJU8p .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sugjAvJU8p .row > .row {
  display: block;
}
.cid-sugjAvJU8p .mbr-gallery-item {
  width: 100%;
}
.cid-sugjAvJU8p .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sugjAvJU8p .mbr-gallery-item > div {
  position: relative;
}
.cid-sugjAvJU8p .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sugjAvJU8p .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sugjAvJU8p .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sugjAvJU8p .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4I8zCvJX8 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4I8zCvJX8 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4I8zCvJX8 div.b {
  padding-top: 2rem;
}
.cid-s4I8zCvJX8 H5 {
  color: #232323;
}
.cid-s4I98zlS0X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I98zlS0X .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I98zlS0X .section-text {
  padding: 2rem 0;
}
.cid-s4I98zlS0X .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I98zlS0X .inner-container {
    width: 100% !important;
  }
}
.cid-v7rulQZt75 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rulQZt75 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rulQZt75 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rulQZt75 .row {
  justify-content: center;
}
.cid-v7rulQZt75 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rulQZt75 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rulQZt75 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rulQZt75 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rulQZt75 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rulQZt75 .mbr-text_1,
.cid-v7rulQZt75 .mbr-text_2,
.cid-v7rulQZt75 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rulQZt75 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rulQZt75 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rulQZt75 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rulQZt75 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rulQZt75 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rulQZt75 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rulQZt75 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rulQZt75 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rulQZt75 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rulQZt75 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rulQZt75 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rulQZt75 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rulQZt75 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rudm8Y0F {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rudm8Y0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rudm8Y0F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rudm8Y0F .row {
  justify-content: center;
}
.cid-v7rudm8Y0F .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rudm8Y0F .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rudm8Y0F .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rudm8Y0F .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rudm8Y0F .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rudm8Y0F .mbr-text_1,
.cid-v7rudm8Y0F .mbr-text_2,
.cid-v7rudm8Y0F .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rudm8Y0F .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rudm8Y0F .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rudm8Y0F .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rudm8Y0F .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rudm8Y0F .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rudm8Y0F .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rudm8Y0F .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rudm8Y0F .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rudm8Y0F .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rudm8Y0F .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rudm8Y0F .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rudm8Y0F .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rudm8Y0F .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4I98zNEsy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I98zNEsy .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I98zNEsy .section-text {
  padding: 2rem 0;
}
.cid-s4I98zNEsy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I98zNEsy .inner-container {
    width: 100% !important;
  }
}
.cid-s4I98Abfv4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4I98Abfv4 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4I98Abfv4 .section-text {
  padding: 2rem 0;
}
.cid-s4I98Abfv4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4I98Abfv4 .inner-container {
    width: 100% !important;
  }
}
.cid-sugkB2vZpd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sugkB2vZpd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sugkB2vZpd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sugkB2vZpd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sugkB2vZpd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sugkB2vZpd .row > .row {
  display: block;
}
.cid-sugkB2vZpd .mbr-gallery-item {
  width: 100%;
}
.cid-sugkB2vZpd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sugkB2vZpd .mbr-gallery-item > div {
  position: relative;
}
.cid-sugkB2vZpd .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sugkB2vZpd .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sugkB2vZpd .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sugkB2vZpd .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4I98APhOh {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4I98APhOh .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4I98APhOh div.b {
  padding-top: 2rem;
}
.cid-s4I98APhOh H5 {
  color: #232323;
}
.cid-s4Ia2hmf4M {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Ia2hmf4M .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Ia2hmf4M .section-text {
  padding: 2rem 0;
}
.cid-s4Ia2hmf4M .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Ia2hmf4M .inner-container {
    width: 100% !important;
  }
}
.cid-v7ruKPfIQD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7ruKPfIQD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ruKPfIQD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ruKPfIQD .row {
  justify-content: center;
}
.cid-v7ruKPfIQD .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ruKPfIQD .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ruKPfIQD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ruKPfIQD .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ruKPfIQD .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ruKPfIQD .mbr-text_1,
.cid-v7ruKPfIQD .mbr-text_2,
.cid-v7ruKPfIQD .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ruKPfIQD .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ruKPfIQD .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ruKPfIQD .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ruKPfIQD .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ruKPfIQD .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ruKPfIQD .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ruKPfIQD .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ruKPfIQD .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ruKPfIQD .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ruKPfIQD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ruKPfIQD .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ruKPfIQD .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ruKPfIQD .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7ruP2hYiw {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7ruP2hYiw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ruP2hYiw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ruP2hYiw .row {
  justify-content: center;
}
.cid-v7ruP2hYiw .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ruP2hYiw .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ruP2hYiw .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ruP2hYiw .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ruP2hYiw .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ruP2hYiw .mbr-text_1,
.cid-v7ruP2hYiw .mbr-text_2,
.cid-v7ruP2hYiw .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ruP2hYiw .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ruP2hYiw .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ruP2hYiw .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ruP2hYiw .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ruP2hYiw .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ruP2hYiw .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ruP2hYiw .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ruP2hYiw .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ruP2hYiw .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7ruP2hYiw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ruP2hYiw .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ruP2hYiw .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ruP2hYiw .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4Ia2hSfzf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Ia2hSfzf .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Ia2hSfzf .section-text {
  padding: 2rem 0;
}
.cid-s4Ia2hSfzf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Ia2hSfzf .inner-container {
    width: 100% !important;
  }
}
.cid-s4Ia2igNzj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Ia2igNzj .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Ia2igNzj .section-text {
  padding: 2rem 0;
}
.cid-s4Ia2igNzj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Ia2igNzj .inner-container {
    width: 100% !important;
  }
}
.cid-sugsthm2Fl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sugsthm2Fl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sugsthm2Fl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sugsthm2Fl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sugsthm2Fl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sugsthm2Fl .row > .row {
  display: block;
}
.cid-sugsthm2Fl .mbr-gallery-item {
  width: 100%;
}
.cid-sugsthm2Fl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sugsthm2Fl .mbr-gallery-item > div {
  position: relative;
}
.cid-sugsthm2Fl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sugsthm2Fl .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sugsthm2Fl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sugsthm2Fl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4Ia2iTyJ0 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4Ia2iTyJ0 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4Ia2iTyJ0 div.b {
  padding-top: 2rem;
}
.cid-s4Ia2iTyJ0 H5 {
  color: #232323;
}
.cid-s4Iax4U8i3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Iax4U8i3 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Iax4U8i3 .section-text {
  padding: 2rem 0;
}
.cid-s4Iax4U8i3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Iax4U8i3 .inner-container {
    width: 100% !important;
  }
}
.cid-v7rxOhcOzP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rxOhcOzP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rxOhcOzP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rxOhcOzP .row {
  justify-content: center;
}
.cid-v7rxOhcOzP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rxOhcOzP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rxOhcOzP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rxOhcOzP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rxOhcOzP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rxOhcOzP .mbr-text_1,
.cid-v7rxOhcOzP .mbr-text_2,
.cid-v7rxOhcOzP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rxOhcOzP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rxOhcOzP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rxOhcOzP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rxOhcOzP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rxOhcOzP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rxOhcOzP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rxOhcOzP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rxOhcOzP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rxOhcOzP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rxOhcOzP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rxOhcOzP .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rxOhcOzP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rxOhcOzP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rxP3P8Js {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rxP3P8Js .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rxP3P8Js .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rxP3P8Js .row {
  justify-content: center;
}
.cid-v7rxP3P8Js .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rxP3P8Js .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rxP3P8Js .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rxP3P8Js .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rxP3P8Js .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rxP3P8Js .mbr-text_1,
.cid-v7rxP3P8Js .mbr-text_2,
.cid-v7rxP3P8Js .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rxP3P8Js .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rxP3P8Js .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rxP3P8Js .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rxP3P8Js .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rxP3P8Js .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rxP3P8Js .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rxP3P8Js .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rxP3P8Js .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rxP3P8Js .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rxP3P8Js .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rxP3P8Js .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rxP3P8Js .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rxP3P8Js .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4Iax5rSFL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Iax5rSFL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Iax5rSFL .section-text {
  padding: 2rem 0;
}
.cid-s4Iax5rSFL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Iax5rSFL .inner-container {
    width: 100% !important;
  }
}
.cid-s4Iax5QGP5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-s4Iax5QGP5 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4Iax5QGP5 .section-text {
  padding: 2rem 0;
}
.cid-s4Iax5QGP5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4Iax5QGP5 .inner-container {
    width: 100% !important;
  }
}
.cid-sugtjNLGCN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-sugtjNLGCN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sugtjNLGCN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sugtjNLGCN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sugtjNLGCN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sugtjNLGCN .row > .row {
  display: block;
}
.cid-sugtjNLGCN .mbr-gallery-item {
  width: 100%;
}
.cid-sugtjNLGCN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sugtjNLGCN .mbr-gallery-item > div {
  position: relative;
}
.cid-sugtjNLGCN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sugtjNLGCN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sugtjNLGCN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sugtjNLGCN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4Iax6wNs1 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-s4Iax6wNs1 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4Iax6wNs1 div.b {
  padding-top: 2rem;
}
.cid-s4Iax6wNs1 H5 {
  color: #232323;
}
.cid-s4ZFAy7hFt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4ZFAy7hFt .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4ZFAy7hFt .section-text {
  padding: 2rem 0;
}
.cid-s4ZFAy7hFt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4ZFAy7hFt .inner-container {
    width: 100% !important;
  }
}
.cid-v7rQb35i8W {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rQb35i8W .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rQb35i8W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rQb35i8W .row {
  justify-content: center;
}
.cid-v7rQb35i8W .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rQb35i8W .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rQb35i8W .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rQb35i8W .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rQb35i8W .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rQb35i8W .mbr-text_1,
.cid-v7rQb35i8W .mbr-text_2,
.cid-v7rQb35i8W .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rQb35i8W .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQb35i8W .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rQb35i8W .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rQb35i8W .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rQb35i8W .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQb35i8W .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rQb35i8W .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rQb35i8W .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQb35i8W .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rQb35i8W .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rQb35i8W .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rQb35i8W .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rQb35i8W .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rQc5RrQy {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rQc5RrQy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rQc5RrQy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rQc5RrQy .row {
  justify-content: center;
}
.cid-v7rQc5RrQy .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rQc5RrQy .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rQc5RrQy .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rQc5RrQy .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rQc5RrQy .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rQc5RrQy .mbr-text_1,
.cid-v7rQc5RrQy .mbr-text_2,
.cid-v7rQc5RrQy .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rQc5RrQy .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQc5RrQy .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rQc5RrQy .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rQc5RrQy .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rQc5RrQy .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQc5RrQy .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rQc5RrQy .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rQc5RrQy .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQc5RrQy .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rQc5RrQy .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rQc5RrQy .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rQc5RrQy .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rQc5RrQy .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4ZFAz129Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4ZFAz129Q .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4ZFAz129Q .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4ZFAz129Q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4ZFAz129Q .inner-container {
    width: 100% !important;
  }
}
.cid-svurN6QyMA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svurOUQuDY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svurOUQuDY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svurOUQuDY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svurOUQuDY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svurOUQuDY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svurOUQuDY .row > .row {
  display: block;
}
.cid-svurOUQuDY .mbr-gallery-item {
  width: 100%;
}
.cid-svurOUQuDY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svurOUQuDY .mbr-gallery-item > div {
  position: relative;
}
.cid-svurOUQuDY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svurOUQuDY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svurOUQuDY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svurOUQuDY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4ZFAzEoij {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4ZFAzEoij .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4ZFAzEoij div.b {
  padding-top: 2rem;
}
.cid-s4ZFAzEoij H5 {
  color: #232323;
}
.cid-s4ZGL69Ul6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4ZGL69Ul6 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4ZGL69Ul6 .section-text {
  padding: 2rem 0;
}
.cid-s4ZGL69Ul6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4ZGL69Ul6 .inner-container {
    width: 100% !important;
  }
}
.cid-v7rQoC4a9Y {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rQoC4a9Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rQoC4a9Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rQoC4a9Y .row {
  justify-content: center;
}
.cid-v7rQoC4a9Y .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rQoC4a9Y .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rQoC4a9Y .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rQoC4a9Y .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rQoC4a9Y .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rQoC4a9Y .mbr-text_1,
.cid-v7rQoC4a9Y .mbr-text_2,
.cid-v7rQoC4a9Y .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rQoC4a9Y .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQoC4a9Y .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rQoC4a9Y .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rQoC4a9Y .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rQoC4a9Y .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQoC4a9Y .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rQoC4a9Y .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rQoC4a9Y .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQoC4a9Y .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rQoC4a9Y .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rQoC4a9Y .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rQoC4a9Y .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rQoC4a9Y .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rQpPtkuj {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rQpPtkuj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rQpPtkuj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rQpPtkuj .row {
  justify-content: center;
}
.cid-v7rQpPtkuj .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rQpPtkuj .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rQpPtkuj .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rQpPtkuj .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rQpPtkuj .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rQpPtkuj .mbr-text_1,
.cid-v7rQpPtkuj .mbr-text_2,
.cid-v7rQpPtkuj .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rQpPtkuj .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQpPtkuj .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rQpPtkuj .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rQpPtkuj .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rQpPtkuj .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQpPtkuj .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rQpPtkuj .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rQpPtkuj .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQpPtkuj .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rQpPtkuj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rQpPtkuj .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rQpPtkuj .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rQpPtkuj .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4ZGL6LAwS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4ZGL6LAwS .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4ZGL6LAwS .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4ZGL6LAwS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4ZGL6LAwS .inner-container {
    width: 100% !important;
  }
}
.cid-s4ZGL6Yy0q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4ZGL6Yy0q .item {
  padding-bottom: 2rem;
}
.cid-s4ZGL6Yy0q .item-wrapper {
  height: 100%;
}
.cid-s4ZGL6Yy0q .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4ZGL6Yy0q .carousel-control,
.cid-s4ZGL6Yy0q .close {
  background: #1b1b1b;
}
.cid-s4ZGL6Yy0q .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4ZGL6Yy0q .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4ZGL6Yy0q .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4ZGL6Yy0q .close::before {
  content: '\e91a';
}
.cid-s4ZGL6Yy0q .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4ZGL6Yy0q .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4ZGL6Yy0q .carousel-inner > .active {
  display: block;
}
.cid-s4ZGL6Yy0q .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4ZGL6Yy0q .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4ZGL6Yy0q .carousel-control .icon-next,
.cid-s4ZGL6Yy0q .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4ZGL6Yy0q .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4ZGL6Yy0q .carousel-control,
  .cid-s4ZGL6Yy0q .carousel-indicators,
  .cid-s4ZGL6Yy0q .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4ZGL6Yy0q .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4ZGL6Yy0q .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4ZGL6Yy0q .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4ZGL6Yy0q .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4ZGL6Yy0q .carousel-indicators {
    display: none;
  }
}
.cid-s4ZGL6Yy0q .carousel-indicators .active,
.cid-s4ZGL6Yy0q .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4ZGL6Yy0q .carousel-indicators .active {
  background: #fff;
}
.cid-s4ZGL6Yy0q .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4ZGL6Yy0q .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4ZGL6Yy0q .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4ZGL6Yy0q .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4ZGL6Yy0q .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4ZGL6Yy0q .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4ZGL6Yy0q .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4ZGL6Yy0q .carousel {
  width: 100%;
}
.cid-s4ZGL6Yy0q .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4ZGL6Yy0q .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4ZGL6Yy0q .modal.fade .modal-dialog,
.cid-s4ZGL6Yy0q .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4ZGL6Yy0q .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4ZGL6Yy0q a {
  display: block;
}
.cid-s4ZGL6Yy0q a.img {
  pointer-events: none;
}
.cid-s4ZGL6Yy0q H3 {
  color: #232323;
}
.cid-s4ZGL7pYY4 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4ZGL7pYY4 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4ZGL7pYY4 div.b {
  padding-top: 2rem;
}
.cid-s4ZGL7pYY4 H5 {
  color: #232323;
}
.cid-s4ZIbV9yig {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4ZIbV9yig .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4ZIbV9yig .section-text {
  padding: 2rem 0;
}
.cid-s4ZIbV9yig .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4ZIbV9yig .inner-container {
    width: 100% !important;
  }
}
.cid-v7rQF513Uj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rQF513Uj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rQF513Uj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rQF513Uj .row {
  justify-content: center;
}
.cid-v7rQF513Uj .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rQF513Uj .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rQF513Uj .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rQF513Uj .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rQF513Uj .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rQF513Uj .mbr-text_1,
.cid-v7rQF513Uj .mbr-text_2,
.cid-v7rQF513Uj .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rQF513Uj .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQF513Uj .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rQF513Uj .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rQF513Uj .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rQF513Uj .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQF513Uj .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rQF513Uj .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rQF513Uj .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQF513Uj .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rQF513Uj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rQF513Uj .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rQF513Uj .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rQF513Uj .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rQFVKduL {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rQFVKduL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rQFVKduL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rQFVKduL .row {
  justify-content: center;
}
.cid-v7rQFVKduL .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rQFVKduL .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rQFVKduL .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rQFVKduL .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rQFVKduL .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rQFVKduL .mbr-text_1,
.cid-v7rQFVKduL .mbr-text_2,
.cid-v7rQFVKduL .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rQFVKduL .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQFVKduL .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rQFVKduL .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rQFVKduL .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rQFVKduL .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQFVKduL .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rQFVKduL .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rQFVKduL .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQFVKduL .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rQFVKduL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rQFVKduL .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rQFVKduL .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rQFVKduL .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4ZIbVFwSL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4ZIbVFwSL .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4ZIbVFwSL .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4ZIbVFwSL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4ZIbVFwSL .inner-container {
    width: 100% !important;
  }
}
.cid-s4ZIbVSrev {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4ZIbVSrev .item {
  padding-bottom: 2rem;
}
.cid-s4ZIbVSrev .item-wrapper {
  height: 100%;
}
.cid-s4ZIbVSrev .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s4ZIbVSrev .carousel-control,
.cid-s4ZIbVSrev .close {
  background: #1b1b1b;
}
.cid-s4ZIbVSrev .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s4ZIbVSrev .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s4ZIbVSrev .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s4ZIbVSrev .close::before {
  content: '\e91a';
}
.cid-s4ZIbVSrev .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s4ZIbVSrev .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s4ZIbVSrev .carousel-inner > .active {
  display: block;
}
.cid-s4ZIbVSrev .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s4ZIbVSrev .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s4ZIbVSrev .carousel-control .icon-next,
.cid-s4ZIbVSrev .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s4ZIbVSrev .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s4ZIbVSrev .carousel-control,
  .cid-s4ZIbVSrev .carousel-indicators,
  .cid-s4ZIbVSrev .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s4ZIbVSrev .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s4ZIbVSrev .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s4ZIbVSrev .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s4ZIbVSrev .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s4ZIbVSrev .carousel-indicators {
    display: none;
  }
}
.cid-s4ZIbVSrev .carousel-indicators .active,
.cid-s4ZIbVSrev .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s4ZIbVSrev .carousel-indicators .active {
  background: #fff;
}
.cid-s4ZIbVSrev .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s4ZIbVSrev .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s4ZIbVSrev .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s4ZIbVSrev .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s4ZIbVSrev .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s4ZIbVSrev .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s4ZIbVSrev .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s4ZIbVSrev .carousel {
  width: 100%;
}
.cid-s4ZIbVSrev .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s4ZIbVSrev .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s4ZIbVSrev .modal.fade .modal-dialog,
.cid-s4ZIbVSrev .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s4ZIbVSrev .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s4ZIbVSrev a {
  display: block;
}
.cid-s4ZIbVSrev a.img {
  pointer-events: none;
}
.cid-s4ZIbVSrev H3 {
  color: #232323;
}
.cid-s4ZIbWhapp {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4ZIbWhapp .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4ZIbWhapp div.b {
  padding-top: 2rem;
}
.cid-s4ZIbWhapp H5 {
  color: #232323;
}
.cid-s4ZJgCdEvA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4ZJgCdEvA .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4ZJgCdEvA .section-text {
  padding: 2rem 0;
}
.cid-s4ZJgCdEvA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4ZJgCdEvA .inner-container {
    width: 100% !important;
  }
}
.cid-v7rQZr4ke8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rQZr4ke8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rQZr4ke8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rQZr4ke8 .row {
  justify-content: center;
}
.cid-v7rQZr4ke8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rQZr4ke8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rQZr4ke8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rQZr4ke8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rQZr4ke8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rQZr4ke8 .mbr-text_1,
.cid-v7rQZr4ke8 .mbr-text_2,
.cid-v7rQZr4ke8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rQZr4ke8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQZr4ke8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rQZr4ke8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rQZr4ke8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rQZr4ke8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQZr4ke8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rQZr4ke8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rQZr4ke8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rQZr4ke8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rQZr4ke8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rQZr4ke8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rQZr4ke8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rQZr4ke8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rR08wM2M {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rR08wM2M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rR08wM2M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rR08wM2M .row {
  justify-content: center;
}
.cid-v7rR08wM2M .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rR08wM2M .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rR08wM2M .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rR08wM2M .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rR08wM2M .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rR08wM2M .mbr-text_1,
.cid-v7rR08wM2M .mbr-text_2,
.cid-v7rR08wM2M .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rR08wM2M .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rR08wM2M .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rR08wM2M .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rR08wM2M .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rR08wM2M .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rR08wM2M .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rR08wM2M .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rR08wM2M .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rR08wM2M .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rR08wM2M .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rR08wM2M .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rR08wM2M .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rR08wM2M .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s4ZJgCUKUl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s4ZJgCUKUl .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s4ZJgCUKUl .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s4ZJgCUKUl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s4ZJgCUKUl .inner-container {
    width: 100% !important;
  }
}
.cid-svutoYg6vw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svutpxFlIi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svutpxFlIi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svutpxFlIi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svutpxFlIi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svutpxFlIi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svutpxFlIi .row > .row {
  display: block;
}
.cid-svutpxFlIi .mbr-gallery-item {
  width: 100%;
}
.cid-svutpxFlIi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svutpxFlIi .mbr-gallery-item > div {
  position: relative;
}
.cid-svutpxFlIi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svutpxFlIi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svutpxFlIi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svutpxFlIi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svutq5hR0o {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svutqD4IYA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svutqD4IYA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svutqD4IYA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svutqD4IYA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svutqD4IYA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svutqD4IYA .row > .row {
  display: block;
}
.cid-svutqD4IYA .mbr-gallery-item {
  width: 100%;
}
.cid-svutqD4IYA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svutqD4IYA .mbr-gallery-item > div {
  position: relative;
}
.cid-svutqD4IYA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svutqD4IYA .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svutqD4IYA .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svutqD4IYA .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s4ZJgDIYTK {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s4ZJgDIYTK .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s4ZJgDIYTK div.b {
  padding-top: 2rem;
}
.cid-s4ZJgDIYTK H5 {
  color: #232323;
}
.cid-s50Upw73Y6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s50Upw73Y6 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s50Upw73Y6 .section-text {
  padding: 2rem 0;
}
.cid-s50Upw73Y6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s50Upw73Y6 .inner-container {
    width: 100% !important;
  }
}
.cid-v7rS9Ln3MF {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rS9Ln3MF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rS9Ln3MF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rS9Ln3MF .row {
  justify-content: center;
}
.cid-v7rS9Ln3MF .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rS9Ln3MF .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rS9Ln3MF .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rS9Ln3MF .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rS9Ln3MF .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rS9Ln3MF .mbr-text_1,
.cid-v7rS9Ln3MF .mbr-text_2,
.cid-v7rS9Ln3MF .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rS9Ln3MF .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rS9Ln3MF .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rS9Ln3MF .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rS9Ln3MF .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rS9Ln3MF .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rS9Ln3MF .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rS9Ln3MF .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rS9Ln3MF .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rS9Ln3MF .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rS9Ln3MF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rS9Ln3MF .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rS9Ln3MF .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rS9Ln3MF .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rSaOEuWC {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rSaOEuWC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rSaOEuWC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rSaOEuWC .row {
  justify-content: center;
}
.cid-v7rSaOEuWC .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rSaOEuWC .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rSaOEuWC .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rSaOEuWC .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rSaOEuWC .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rSaOEuWC .mbr-text_1,
.cid-v7rSaOEuWC .mbr-text_2,
.cid-v7rSaOEuWC .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rSaOEuWC .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rSaOEuWC .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rSaOEuWC .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rSaOEuWC .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rSaOEuWC .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rSaOEuWC .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rSaOEuWC .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rSaOEuWC .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rSaOEuWC .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rSaOEuWC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rSaOEuWC .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rSaOEuWC .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rSaOEuWC .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s50Upxg1In {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s50Upxg1In .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s50Upxg1In .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s50Upxg1In .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s50Upxg1In .inner-container {
    width: 100% !important;
  }
}
.cid-svuuTa3N3x {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svuuTI8JuB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuuTI8JuB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svuuTI8JuB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svuuTI8JuB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svuuTI8JuB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svuuTI8JuB .row > .row {
  display: block;
}
.cid-svuuTI8JuB .mbr-gallery-item {
  width: 100%;
}
.cid-svuuTI8JuB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svuuTI8JuB .mbr-gallery-item > div {
  position: relative;
}
.cid-svuuTI8JuB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svuuTI8JuB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svuuTI8JuB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svuuTI8JuB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svuCUJtpQC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuCUJtpQC .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svuCUJtpQC .section-text {
  padding: 2rem 0;
}
.cid-svuCUJtpQC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svuCUJtpQC .inner-container {
    width: 100% !important;
  }
}
.cid-svuCUJtpQC .section-text DIV {
  text-align: center;
}
.cid-s50Upzglif {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s50Upzglif .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s50Upzglif div.b {
  padding-top: 2rem;
}
.cid-s50Upzglif H5 {
  color: #232323;
}
.cid-s50VVy6OuL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s50VVy6OuL .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s50VVy6OuL .section-text {
  padding: 2rem 0;
}
.cid-s50VVy6OuL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s50VVy6OuL .inner-container {
    width: 100% !important;
  }
}
.cid-v7rSr1JcBa {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rSr1JcBa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rSr1JcBa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rSr1JcBa .row {
  justify-content: center;
}
.cid-v7rSr1JcBa .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rSr1JcBa .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rSr1JcBa .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rSr1JcBa .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rSr1JcBa .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rSr1JcBa .mbr-text_1,
.cid-v7rSr1JcBa .mbr-text_2,
.cid-v7rSr1JcBa .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rSr1JcBa .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rSr1JcBa .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rSr1JcBa .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rSr1JcBa .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rSr1JcBa .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rSr1JcBa .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rSr1JcBa .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rSr1JcBa .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rSr1JcBa .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rSr1JcBa .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rSr1JcBa .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rSr1JcBa .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rSr1JcBa .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rSrLBs0L {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rSrLBs0L .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rSrLBs0L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rSrLBs0L .row {
  justify-content: center;
}
.cid-v7rSrLBs0L .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rSrLBs0L .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rSrLBs0L .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rSrLBs0L .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rSrLBs0L .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rSrLBs0L .mbr-text_1,
.cid-v7rSrLBs0L .mbr-text_2,
.cid-v7rSrLBs0L .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rSrLBs0L .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rSrLBs0L .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rSrLBs0L .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rSrLBs0L .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rSrLBs0L .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rSrLBs0L .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rSrLBs0L .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rSrLBs0L .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rSrLBs0L .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rSrLBs0L .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rSrLBs0L .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rSrLBs0L .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rSrLBs0L .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s50VVz1nDJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s50VVz1nDJ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s50VVz1nDJ .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s50VVz1nDJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s50VVz1nDJ .inner-container {
    width: 100% !important;
  }
}
.cid-svuEJWR91Q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svuEKIhPza {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuEKIhPza .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svuEKIhPza .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svuEKIhPza .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svuEKIhPza .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svuEKIhPza .row > .row {
  display: block;
}
.cid-svuEKIhPza .mbr-gallery-item {
  width: 100%;
}
.cid-svuEKIhPza .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svuEKIhPza .mbr-gallery-item > div {
  position: relative;
}
.cid-svuEKIhPza .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svuEKIhPza .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svuEKIhPza .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svuEKIhPza .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s50VVAy1eO {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s50VVAy1eO .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s50VVAy1eO div.b {
  padding-top: 2rem;
}
.cid-s50VVAy1eO H5 {
  color: #232323;
}
.cid-s50XjVTzLT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s50XjVTzLT .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s50XjVTzLT .section-text {
  padding: 2rem 0;
}
.cid-s50XjVTzLT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s50XjVTzLT .inner-container {
    width: 100% !important;
  }
}
.cid-v7s7usIy49 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7s7usIy49 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7s7usIy49 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7s7usIy49 .row {
  justify-content: center;
}
.cid-v7s7usIy49 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7s7usIy49 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7s7usIy49 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7s7usIy49 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7s7usIy49 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7s7usIy49 .mbr-text_1,
.cid-v7s7usIy49 .mbr-text_2,
.cid-v7s7usIy49 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7s7usIy49 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s7usIy49 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7s7usIy49 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s7usIy49 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s7usIy49 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s7usIy49 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7s7usIy49 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7s7usIy49 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s7usIy49 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s7usIy49 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7s7usIy49 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7s7usIy49 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7s7usIy49 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7s7CVbXl2 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7s7CVbXl2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7s7CVbXl2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7s7CVbXl2 .row {
  justify-content: center;
}
.cid-v7s7CVbXl2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7s7CVbXl2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7s7CVbXl2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7s7CVbXl2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7s7CVbXl2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7s7CVbXl2 .mbr-text_1,
.cid-v7s7CVbXl2 .mbr-text_2,
.cid-v7s7CVbXl2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7s7CVbXl2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s7CVbXl2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7s7CVbXl2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s7CVbXl2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s7CVbXl2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s7CVbXl2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7s7CVbXl2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7s7CVbXl2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s7CVbXl2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s7CVbXl2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7s7CVbXl2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7s7CVbXl2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7s7CVbXl2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s50XjXkuST {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s50XjXkuST .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s50XjXkuST .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s50XjXkuST .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s50XjXkuST .inner-container {
    width: 100% !important;
  }
}
.cid-svuFHpc6U0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svuFHVaExJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuFHVaExJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svuFHVaExJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svuFHVaExJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svuFHVaExJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svuFHVaExJ .row > .row {
  display: block;
}
.cid-svuFHVaExJ .mbr-gallery-item {
  width: 100%;
}
.cid-svuFHVaExJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svuFHVaExJ .mbr-gallery-item > div {
  position: relative;
}
.cid-svuFHVaExJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svuFHVaExJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svuFHVaExJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svuFHVaExJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svuFIUZd6j {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuFIUZd6j .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svuFIUZd6j .section-text {
  padding: 2rem 0;
}
.cid-svuFIUZd6j .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svuFIUZd6j .inner-container {
    width: 100% !important;
  }
}
.cid-svuFIUZd6j .section-text DIV {
  text-align: center;
}
.cid-s50XjYDv7d {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s50XjYDv7d .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s50XjYDv7d div.b {
  padding-top: 2rem;
}
.cid-s50XjYDv7d H5 {
  color: #232323;
}
.cid-s50YSk7S56 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s50YSk7S56 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s50YSk7S56 .section-text {
  padding: 2rem 0;
}
.cid-s50YSk7S56 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s50YSk7S56 .inner-container {
    width: 100% !important;
  }
}
.cid-v7s7Uf3KOe {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7s7Uf3KOe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7s7Uf3KOe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7s7Uf3KOe .row {
  justify-content: center;
}
.cid-v7s7Uf3KOe .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7s7Uf3KOe .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7s7Uf3KOe .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7s7Uf3KOe .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7s7Uf3KOe .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7s7Uf3KOe .mbr-text_1,
.cid-v7s7Uf3KOe .mbr-text_2,
.cid-v7s7Uf3KOe .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7s7Uf3KOe .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s7Uf3KOe .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7s7Uf3KOe .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s7Uf3KOe .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s7Uf3KOe .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s7Uf3KOe .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7s7Uf3KOe .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7s7Uf3KOe .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s7Uf3KOe .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s7Uf3KOe .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7s7Uf3KOe .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7s7Uf3KOe .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7s7Uf3KOe .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7s7VkUbBI {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7s7VkUbBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7s7VkUbBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7s7VkUbBI .row {
  justify-content: center;
}
.cid-v7s7VkUbBI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7s7VkUbBI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7s7VkUbBI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7s7VkUbBI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7s7VkUbBI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7s7VkUbBI .mbr-text_1,
.cid-v7s7VkUbBI .mbr-text_2,
.cid-v7s7VkUbBI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7s7VkUbBI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s7VkUbBI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7s7VkUbBI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s7VkUbBI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s7VkUbBI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s7VkUbBI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7s7VkUbBI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7s7VkUbBI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s7VkUbBI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s7VkUbBI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7s7VkUbBI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7s7VkUbBI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7s7VkUbBI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s50YSlpvgR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s50YSlpvgR .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s50YSlpvgR .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s50YSlpvgR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s50YSlpvgR .inner-container {
    width: 100% !important;
  }
}
.cid-svuGN3yVHn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svuGOWBix0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuGOWBix0 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svuGOWBix0 .section-text {
  padding: 2rem 0;
}
.cid-svuGOWBix0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svuGOWBix0 .inner-container {
    width: 100% !important;
  }
}
.cid-svuGOWBix0 .section-text DIV {
  text-align: center;
}
.cid-svuGQ82NST {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuGQ82NST .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svuGQ82NST .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svuGQ82NST .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svuGQ82NST .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svuGQ82NST .row > .row {
  display: block;
}
.cid-svuGQ82NST .mbr-gallery-item {
  width: 100%;
}
.cid-svuGQ82NST .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svuGQ82NST .mbr-gallery-item > div {
  position: relative;
}
.cid-svuGQ82NST .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svuGQ82NST .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svuGQ82NST .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svuGQ82NST .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s50YSmLdu0 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s50YSmLdu0 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s50YSmLdu0 div.b {
  padding-top: 2rem;
}
.cid-s50YSmLdu0 H5 {
  color: #232323;
}
.cid-s57c3HaT3y {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s57c3HaT3y .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s57c3HaT3y .section-text {
  padding: 2rem 0;
}
.cid-s57c3HaT3y .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s57c3HaT3y .inner-container {
    width: 100% !important;
  }
}
.cid-v7s9gmDDxt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7s9gmDDxt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7s9gmDDxt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7s9gmDDxt .row {
  justify-content: center;
}
.cid-v7s9gmDDxt .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7s9gmDDxt .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7s9gmDDxt .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7s9gmDDxt .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7s9gmDDxt .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7s9gmDDxt .mbr-text_1,
.cid-v7s9gmDDxt .mbr-text_2,
.cid-v7s9gmDDxt .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7s9gmDDxt .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9gmDDxt .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7s9gmDDxt .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s9gmDDxt .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s9gmDDxt .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9gmDDxt .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7s9gmDDxt .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7s9gmDDxt .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9gmDDxt .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s9gmDDxt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7s9gmDDxt .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7s9gmDDxt .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7s9gmDDxt .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7s9hbzaPR {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7s9hbzaPR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7s9hbzaPR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7s9hbzaPR .row {
  justify-content: center;
}
.cid-v7s9hbzaPR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7s9hbzaPR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7s9hbzaPR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7s9hbzaPR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7s9hbzaPR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7s9hbzaPR .mbr-text_1,
.cid-v7s9hbzaPR .mbr-text_2,
.cid-v7s9hbzaPR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7s9hbzaPR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9hbzaPR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7s9hbzaPR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s9hbzaPR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s9hbzaPR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9hbzaPR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7s9hbzaPR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7s9hbzaPR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9hbzaPR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s9hbzaPR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7s9hbzaPR .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7s9hbzaPR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7s9hbzaPR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s57c3HUEAJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s57c3HUEAJ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s57c3HUEAJ .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s57c3HUEAJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s57c3HUEAJ .inner-container {
    width: 100% !important;
  }
}
.cid-s57c3I6lV2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s57c3I6lV2 .item {
  padding-bottom: 2rem;
}
.cid-s57c3I6lV2 .item-wrapper {
  height: 100%;
}
.cid-s57c3I6lV2 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s57c3I6lV2 .carousel-control,
.cid-s57c3I6lV2 .close {
  background: #1b1b1b;
}
.cid-s57c3I6lV2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s57c3I6lV2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s57c3I6lV2 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s57c3I6lV2 .close::before {
  content: '\e91a';
}
.cid-s57c3I6lV2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s57c3I6lV2 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s57c3I6lV2 .carousel-inner > .active {
  display: block;
}
.cid-s57c3I6lV2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s57c3I6lV2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s57c3I6lV2 .carousel-control .icon-next,
.cid-s57c3I6lV2 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s57c3I6lV2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s57c3I6lV2 .carousel-control,
  .cid-s57c3I6lV2 .carousel-indicators,
  .cid-s57c3I6lV2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s57c3I6lV2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s57c3I6lV2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s57c3I6lV2 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s57c3I6lV2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s57c3I6lV2 .carousel-indicators {
    display: none;
  }
}
.cid-s57c3I6lV2 .carousel-indicators .active,
.cid-s57c3I6lV2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s57c3I6lV2 .carousel-indicators .active {
  background: #fff;
}
.cid-s57c3I6lV2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s57c3I6lV2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s57c3I6lV2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s57c3I6lV2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s57c3I6lV2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s57c3I6lV2 .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s57c3I6lV2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s57c3I6lV2 .carousel {
  width: 100%;
}
.cid-s57c3I6lV2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s57c3I6lV2 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s57c3I6lV2 .modal.fade .modal-dialog,
.cid-s57c3I6lV2 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s57c3I6lV2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s57c3I6lV2 a {
  display: block;
}
.cid-s57c3I6lV2 a.img {
  pointer-events: none;
}
.cid-s57c3I6lV2 H3 {
  color: #232323;
}
.cid-s57c3IAXou {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s57c3IAXou .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s57c3IAXou div.b {
  padding-top: 2rem;
}
.cid-s57c3IAXou H5 {
  color: #232323;
}
.cid-s57euK2Un6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s57euK2Un6 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s57euK2Un6 .section-text {
  padding: 2rem 0;
}
.cid-s57euK2Un6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s57euK2Un6 .inner-container {
    width: 100% !important;
  }
}
.cid-v7s9xlGzxn {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7s9xlGzxn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7s9xlGzxn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7s9xlGzxn .row {
  justify-content: center;
}
.cid-v7s9xlGzxn .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7s9xlGzxn .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7s9xlGzxn .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7s9xlGzxn .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7s9xlGzxn .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7s9xlGzxn .mbr-text_1,
.cid-v7s9xlGzxn .mbr-text_2,
.cid-v7s9xlGzxn .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7s9xlGzxn .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9xlGzxn .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7s9xlGzxn .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s9xlGzxn .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s9xlGzxn .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9xlGzxn .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7s9xlGzxn .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7s9xlGzxn .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9xlGzxn .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s9xlGzxn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7s9xlGzxn .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7s9xlGzxn .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7s9xlGzxn .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7s9yhkLzI {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7s9yhkLzI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7s9yhkLzI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7s9yhkLzI .row {
  justify-content: center;
}
.cid-v7s9yhkLzI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7s9yhkLzI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7s9yhkLzI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7s9yhkLzI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7s9yhkLzI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7s9yhkLzI .mbr-text_1,
.cid-v7s9yhkLzI .mbr-text_2,
.cid-v7s9yhkLzI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7s9yhkLzI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9yhkLzI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7s9yhkLzI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s9yhkLzI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s9yhkLzI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9yhkLzI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7s9yhkLzI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7s9yhkLzI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9yhkLzI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s9yhkLzI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7s9yhkLzI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7s9yhkLzI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7s9yhkLzI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s57euKM8yC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s57euKM8yC .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s57euKM8yC .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s57euKM8yC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s57euKM8yC .inner-container {
    width: 100% !important;
  }
}
.cid-svuKg8kwC3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svuKgKa219 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuKgKa219 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svuKgKa219 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svuKgKa219 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svuKgKa219 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svuKgKa219 .row > .row {
  display: block;
}
.cid-svuKgKa219 .mbr-gallery-item {
  width: 100%;
}
.cid-svuKgKa219 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svuKgKa219 .mbr-gallery-item > div {
  position: relative;
}
.cid-svuKgKa219 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svuKgKa219 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svuKgKa219 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svuKgKa219 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s57euLBNxr {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s57euLBNxr .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s57euLBNxr div.b {
  padding-top: 2rem;
}
.cid-s57euLBNxr H5 {
  color: #232323;
}
.cid-s57f1qGMMe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s57f1qGMMe .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s57f1qGMMe .section-text {
  padding: 2rem 0;
}
.cid-s57f1qGMMe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s57f1qGMMe .inner-container {
    width: 100% !important;
  }
}
.cid-v7s9LRap9M {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7s9LRap9M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7s9LRap9M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7s9LRap9M .row {
  justify-content: center;
}
.cid-v7s9LRap9M .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7s9LRap9M .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7s9LRap9M .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7s9LRap9M .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7s9LRap9M .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7s9LRap9M .mbr-text_1,
.cid-v7s9LRap9M .mbr-text_2,
.cid-v7s9LRap9M .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7s9LRap9M .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9LRap9M .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7s9LRap9M .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s9LRap9M .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s9LRap9M .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9LRap9M .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7s9LRap9M .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7s9LRap9M .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9LRap9M .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7s9LRap9M .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7s9LRap9M .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7s9LRap9M .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7s9LRap9M .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7s9MKX8z5 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7s9MKX8z5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7s9MKX8z5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7s9MKX8z5 .row {
  justify-content: center;
}
.cid-v7s9MKX8z5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7s9MKX8z5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7s9MKX8z5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7s9MKX8z5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7s9MKX8z5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7s9MKX8z5 .mbr-text_1,
.cid-v7s9MKX8z5 .mbr-text_2,
.cid-v7s9MKX8z5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7s9MKX8z5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9MKX8z5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7s9MKX8z5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s9MKX8z5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s9MKX8z5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9MKX8z5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7s9MKX8z5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7s9MKX8z5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7s9MKX8z5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7s9MKX8z5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7s9MKX8z5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7s9MKX8z5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7s9MKX8z5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s57f1riMo0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s57f1riMo0 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s57f1riMo0 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s57f1riMo0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s57f1riMo0 .inner-container {
    width: 100% !important;
  }
}
.cid-svuLd7PS1K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svuLdJEBku {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuLdJEBku .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svuLdJEBku .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svuLdJEBku .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svuLdJEBku .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svuLdJEBku .row > .row {
  display: block;
}
.cid-svuLdJEBku .mbr-gallery-item {
  width: 100%;
}
.cid-svuLdJEBku .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svuLdJEBku .mbr-gallery-item > div {
  position: relative;
}
.cid-svuLdJEBku .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svuLdJEBku .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svuLdJEBku .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svuLdJEBku .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s57f1s2FsT {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s57f1s2FsT .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s57f1s2FsT div.b {
  padding-top: 2rem;
}
.cid-s57f1s2FsT H5 {
  color: #232323;
}
.cid-s57fzWDtvH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s57fzWDtvH .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s57fzWDtvH .section-text {
  padding: 2rem 0;
}
.cid-s57fzWDtvH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s57fzWDtvH .inner-container {
    width: 100% !important;
  }
}
.cid-v7sboxwJAK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7sboxwJAK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sboxwJAK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sboxwJAK .row {
  justify-content: center;
}
.cid-v7sboxwJAK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sboxwJAK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sboxwJAK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sboxwJAK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sboxwJAK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sboxwJAK .mbr-text_1,
.cid-v7sboxwJAK .mbr-text_2,
.cid-v7sboxwJAK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sboxwJAK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sboxwJAK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sboxwJAK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sboxwJAK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sboxwJAK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sboxwJAK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sboxwJAK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sboxwJAK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sboxwJAK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sboxwJAK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sboxwJAK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sboxwJAK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sboxwJAK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7sbpz2sq2 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7sbpz2sq2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sbpz2sq2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sbpz2sq2 .row {
  justify-content: center;
}
.cid-v7sbpz2sq2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sbpz2sq2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sbpz2sq2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sbpz2sq2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sbpz2sq2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sbpz2sq2 .mbr-text_1,
.cid-v7sbpz2sq2 .mbr-text_2,
.cid-v7sbpz2sq2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sbpz2sq2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sbpz2sq2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sbpz2sq2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sbpz2sq2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sbpz2sq2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sbpz2sq2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sbpz2sq2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sbpz2sq2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sbpz2sq2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sbpz2sq2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sbpz2sq2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sbpz2sq2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sbpz2sq2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s57fzXehSR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s57fzXehSR .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s57fzXehSR .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s57fzXehSR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s57fzXehSR .inner-container {
    width: 100% !important;
  }
}
.cid-svuOtV1Ghj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svuOuD2BOt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuOuD2BOt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svuOuD2BOt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svuOuD2BOt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svuOuD2BOt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svuOuD2BOt .row > .row {
  display: block;
}
.cid-svuOuD2BOt .mbr-gallery-item {
  width: 100%;
}
.cid-svuOuD2BOt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svuOuD2BOt .mbr-gallery-item > div {
  position: relative;
}
.cid-svuOuD2BOt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svuOuD2BOt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svuOuD2BOt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svuOuD2BOt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s57fzXYOo8 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s57fzXYOo8 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s57fzXYOo8 div.b {
  padding-top: 2rem;
}
.cid-s57fzXYOo8 H5 {
  color: #232323;
}
.cid-s57hbnN1RR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s57hbnN1RR .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s57hbnN1RR .section-text {
  padding: 2rem 0;
}
.cid-s57hbnN1RR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s57hbnN1RR .inner-container {
    width: 100% !important;
  }
}
.cid-v7sbQ7Cy3Y {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7sbQ7Cy3Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sbQ7Cy3Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sbQ7Cy3Y .row {
  justify-content: center;
}
.cid-v7sbQ7Cy3Y .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sbQ7Cy3Y .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sbQ7Cy3Y .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sbQ7Cy3Y .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sbQ7Cy3Y .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sbQ7Cy3Y .mbr-text_1,
.cid-v7sbQ7Cy3Y .mbr-text_2,
.cid-v7sbQ7Cy3Y .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sbQ7Cy3Y .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sbQ7Cy3Y .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sbQ7Cy3Y .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sbQ7Cy3Y .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sbQ7Cy3Y .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sbQ7Cy3Y .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sbQ7Cy3Y .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sbQ7Cy3Y .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sbQ7Cy3Y .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sbQ7Cy3Y .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sbQ7Cy3Y .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sbQ7Cy3Y .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sbQ7Cy3Y .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7sbR4st4Y {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7sbR4st4Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sbR4st4Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sbR4st4Y .row {
  justify-content: center;
}
.cid-v7sbR4st4Y .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sbR4st4Y .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sbR4st4Y .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sbR4st4Y .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sbR4st4Y .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sbR4st4Y .mbr-text_1,
.cid-v7sbR4st4Y .mbr-text_2,
.cid-v7sbR4st4Y .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sbR4st4Y .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sbR4st4Y .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sbR4st4Y .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sbR4st4Y .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sbR4st4Y .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sbR4st4Y .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sbR4st4Y .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sbR4st4Y .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sbR4st4Y .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sbR4st4Y .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sbR4st4Y .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sbR4st4Y .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sbR4st4Y .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s57hboxWsJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s57hboxWsJ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s57hboxWsJ .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s57hboxWsJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s57hboxWsJ .inner-container {
    width: 100% !important;
  }
}
.cid-s6kjbw0s7K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6kjbw0s7K .mbr-section-subtitle {
  color: #232323;
}
.cid-s6kk4mR3XX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6kk4mR3XX .mbr-section-subtitle {
  color: #232323;
}
.cid-s57hbpxCs5 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s57hbpxCs5 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s57hbpxCs5 div.b {
  padding-top: 2rem;
}
.cid-s57hbpxCs5 H5 {
  color: #232323;
}
.cid-s59UW82Jcp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s59UW82Jcp .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s59UW82Jcp .section-text {
  padding: 2rem 0;
}
.cid-s59UW82Jcp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s59UW82Jcp .inner-container {
    width: 100% !important;
  }
}
.cid-v7scxjjSOQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7scxjjSOQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7scxjjSOQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7scxjjSOQ .row {
  justify-content: center;
}
.cid-v7scxjjSOQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7scxjjSOQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7scxjjSOQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7scxjjSOQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7scxjjSOQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7scxjjSOQ .mbr-text_1,
.cid-v7scxjjSOQ .mbr-text_2,
.cid-v7scxjjSOQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7scxjjSOQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7scxjjSOQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7scxjjSOQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7scxjjSOQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7scxjjSOQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7scxjjSOQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7scxjjSOQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7scxjjSOQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7scxjjSOQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7scxjjSOQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7scxjjSOQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7scxjjSOQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7scxjjSOQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7scy5kYkd {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7scy5kYkd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7scy5kYkd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7scy5kYkd .row {
  justify-content: center;
}
.cid-v7scy5kYkd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7scy5kYkd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7scy5kYkd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7scy5kYkd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7scy5kYkd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7scy5kYkd .mbr-text_1,
.cid-v7scy5kYkd .mbr-text_2,
.cid-v7scy5kYkd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7scy5kYkd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7scy5kYkd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7scy5kYkd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7scy5kYkd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7scy5kYkd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7scy5kYkd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7scy5kYkd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7scy5kYkd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7scy5kYkd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7scy5kYkd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7scy5kYkd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7scy5kYkd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7scy5kYkd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s59UW8LU3D {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s59UW8LU3D .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s59UW8LU3D .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s59UW8LU3D .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s59UW8LU3D .inner-container {
    width: 100% !important;
  }
}
.cid-svuQNCc0lt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svuQPMDhj6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuQPMDhj6 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svuQPMDhj6 .section-text {
  padding: 2rem 0;
}
.cid-svuQPMDhj6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svuQPMDhj6 .inner-container {
    width: 100% !important;
  }
}
.cid-svuQPMDhj6 .section-text DIV {
  text-align: center;
}
.cid-s59UW9Cqa1 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s59UW9Cqa1 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s59UW9Cqa1 div.b {
  padding-top: 2rem;
}
.cid-s59UW9Cqa1 H5 {
  color: #232323;
}
.cid-s59VtQoTaR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s59VtQoTaR .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s59VtQoTaR .section-text {
  padding: 2rem 0;
}
.cid-s59VtQoTaR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s59VtQoTaR .inner-container {
    width: 100% !important;
  }
}
.cid-v7scI3B1Kw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7scI3B1Kw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7scI3B1Kw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7scI3B1Kw .row {
  justify-content: center;
}
.cid-v7scI3B1Kw .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7scI3B1Kw .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7scI3B1Kw .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7scI3B1Kw .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7scI3B1Kw .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7scI3B1Kw .mbr-text_1,
.cid-v7scI3B1Kw .mbr-text_2,
.cid-v7scI3B1Kw .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7scI3B1Kw .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7scI3B1Kw .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7scI3B1Kw .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7scI3B1Kw .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7scI3B1Kw .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7scI3B1Kw .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7scI3B1Kw .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7scI3B1Kw .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7scI3B1Kw .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7scI3B1Kw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7scI3B1Kw .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7scI3B1Kw .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7scI3B1Kw .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7scIYHbxw {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7scIYHbxw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7scIYHbxw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7scIYHbxw .row {
  justify-content: center;
}
.cid-v7scIYHbxw .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7scIYHbxw .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7scIYHbxw .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7scIYHbxw .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7scIYHbxw .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7scIYHbxw .mbr-text_1,
.cid-v7scIYHbxw .mbr-text_2,
.cid-v7scIYHbxw .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7scIYHbxw .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7scIYHbxw .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7scIYHbxw .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7scIYHbxw .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7scIYHbxw .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7scIYHbxw .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7scIYHbxw .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7scIYHbxw .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7scIYHbxw .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7scIYHbxw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7scIYHbxw .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7scIYHbxw .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7scIYHbxw .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s59VtR6Ycj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s59VtR6Ycj .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s59VtR6Ycj .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s59VtR6Ycj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s59VtR6Ycj .inner-container {
    width: 100% !important;
  }
}
.cid-svuS3gC8cQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svuS6uwbBB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuS6uwbBB .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svuS6uwbBB .section-text {
  padding: 2rem 0;
}
.cid-svuS6uwbBB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svuS6uwbBB .inner-container {
    width: 100% !important;
  }
}
.cid-svuS6uwbBB .section-text DIV {
  text-align: center;
}
.cid-svuS4uoiAy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuS4uoiAy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svuS4uoiAy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svuS4uoiAy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svuS4uoiAy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svuS4uoiAy .row > .row {
  display: block;
}
.cid-svuS4uoiAy .mbr-gallery-item {
  width: 100%;
}
.cid-svuS4uoiAy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svuS4uoiAy .mbr-gallery-item > div {
  position: relative;
}
.cid-svuS4uoiAy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svuS4uoiAy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svuS4uoiAy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svuS4uoiAy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s59VtRRvR2 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s59VtRRvR2 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s59VtRRvR2 div.b {
  padding-top: 2rem;
}
.cid-s59VtRRvR2 H5 {
  color: #232323;
}
.cid-s59W29zmZQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s59W29zmZQ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s59W29zmZQ .section-text {
  padding: 2rem 0;
}
.cid-s59W29zmZQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s59W29zmZQ .inner-container {
    width: 100% !important;
  }
}
.cid-v7sd3K9Gu7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7sd3K9Gu7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sd3K9Gu7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sd3K9Gu7 .row {
  justify-content: center;
}
.cid-v7sd3K9Gu7 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sd3K9Gu7 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sd3K9Gu7 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sd3K9Gu7 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sd3K9Gu7 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sd3K9Gu7 .mbr-text_1,
.cid-v7sd3K9Gu7 .mbr-text_2,
.cid-v7sd3K9Gu7 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sd3K9Gu7 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sd3K9Gu7 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sd3K9Gu7 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sd3K9Gu7 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sd3K9Gu7 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sd3K9Gu7 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sd3K9Gu7 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sd3K9Gu7 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sd3K9Gu7 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sd3K9Gu7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sd3K9Gu7 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sd3K9Gu7 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sd3K9Gu7 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7sd4yPjWZ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7sd4yPjWZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sd4yPjWZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sd4yPjWZ .row {
  justify-content: center;
}
.cid-v7sd4yPjWZ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sd4yPjWZ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sd4yPjWZ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sd4yPjWZ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sd4yPjWZ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sd4yPjWZ .mbr-text_1,
.cid-v7sd4yPjWZ .mbr-text_2,
.cid-v7sd4yPjWZ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sd4yPjWZ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sd4yPjWZ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sd4yPjWZ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sd4yPjWZ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sd4yPjWZ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sd4yPjWZ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sd4yPjWZ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sd4yPjWZ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sd4yPjWZ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sd4yPjWZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sd4yPjWZ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sd4yPjWZ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sd4yPjWZ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s59W2alLI1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s59W2alLI1 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s59W2alLI1 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s59W2alLI1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s59W2alLI1 .inner-container {
    width: 100% !important;
  }
}
.cid-svuUzKdHGJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svuUAEkxh3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuUAEkxh3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svuUAEkxh3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svuUAEkxh3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svuUAEkxh3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svuUAEkxh3 .row > .row {
  display: block;
}
.cid-svuUAEkxh3 .mbr-gallery-item {
  width: 100%;
}
.cid-svuUAEkxh3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svuUAEkxh3 .mbr-gallery-item > div {
  position: relative;
}
.cid-svuUAEkxh3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svuUAEkxh3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svuUAEkxh3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svuUAEkxh3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s59W2bp6cj {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s59W2bp6cj .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s59W2bp6cj div.b {
  padding-top: 2rem;
}
.cid-s59W2bp6cj H5 {
  color: #232323;
}
.cid-s5a0WvFgAg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5a0WvFgAg .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5a0WvFgAg .section-text {
  padding: 2rem 0;
}
.cid-s5a0WvFgAg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5a0WvFgAg .inner-container {
    width: 100% !important;
  }
}
.cid-v7sdOzFmJI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7sdOzFmJI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sdOzFmJI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sdOzFmJI .row {
  justify-content: center;
}
.cid-v7sdOzFmJI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sdOzFmJI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sdOzFmJI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sdOzFmJI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sdOzFmJI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sdOzFmJI .mbr-text_1,
.cid-v7sdOzFmJI .mbr-text_2,
.cid-v7sdOzFmJI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sdOzFmJI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdOzFmJI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sdOzFmJI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sdOzFmJI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sdOzFmJI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdOzFmJI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sdOzFmJI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sdOzFmJI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdOzFmJI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sdOzFmJI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sdOzFmJI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sdOzFmJI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sdOzFmJI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7sdPyYb4v {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7sdPyYb4v .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sdPyYb4v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sdPyYb4v .row {
  justify-content: center;
}
.cid-v7sdPyYb4v .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sdPyYb4v .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sdPyYb4v .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sdPyYb4v .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sdPyYb4v .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sdPyYb4v .mbr-text_1,
.cid-v7sdPyYb4v .mbr-text_2,
.cid-v7sdPyYb4v .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sdPyYb4v .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdPyYb4v .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sdPyYb4v .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sdPyYb4v .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sdPyYb4v .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdPyYb4v .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sdPyYb4v .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sdPyYb4v .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdPyYb4v .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sdPyYb4v .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sdPyYb4v .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sdPyYb4v .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sdPyYb4v .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s5a0Wwt2KS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5a0Wwt2KS .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5a0Wwt2KS .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s5a0Wwt2KS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5a0Wwt2KS .inner-container {
    width: 100% !important;
  }
}
.cid-s5iygLK7TG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5iygLK7TG .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5iygLK7TG .section-text {
  padding: 2rem 0;
}
.cid-s5iygLK7TG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5iygLK7TG .inner-container {
    width: 100% !important;
  }
}
.cid-s5iy7PKgDu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5iy7PKgDu .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5iy7PKgDu .section-text {
  padding: 2rem 0;
}
.cid-s5iy7PKgDu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5iy7PKgDu .inner-container {
    width: 100% !important;
  }
}
.cid-s5iy7PKgDu .section-text DIV {
  text-align: center;
}
.cid-s5a0Wx6Sl4 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s5a0Wx6Sl4 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s5a0Wx6Sl4 div.b {
  padding-top: 2rem;
}
.cid-s5a0Wx6Sl4 H5 {
  color: #232323;
}
.cid-s5a1wrho30 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5a1wrho30 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5a1wrho30 .section-text {
  padding: 2rem 0;
}
.cid-s5a1wrho30 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5a1wrho30 .inner-container {
    width: 100% !important;
  }
}
.cid-v7sdZJ2Xc2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7sdZJ2Xc2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sdZJ2Xc2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sdZJ2Xc2 .row {
  justify-content: center;
}
.cid-v7sdZJ2Xc2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sdZJ2Xc2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sdZJ2Xc2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sdZJ2Xc2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sdZJ2Xc2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sdZJ2Xc2 .mbr-text_1,
.cid-v7sdZJ2Xc2 .mbr-text_2,
.cid-v7sdZJ2Xc2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sdZJ2Xc2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdZJ2Xc2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sdZJ2Xc2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sdZJ2Xc2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sdZJ2Xc2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdZJ2Xc2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sdZJ2Xc2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sdZJ2Xc2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sdZJ2Xc2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sdZJ2Xc2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sdZJ2Xc2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sdZJ2Xc2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sdZJ2Xc2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7se0wni66 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7se0wni66 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7se0wni66 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7se0wni66 .row {
  justify-content: center;
}
.cid-v7se0wni66 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7se0wni66 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7se0wni66 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7se0wni66 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7se0wni66 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7se0wni66 .mbr-text_1,
.cid-v7se0wni66 .mbr-text_2,
.cid-v7se0wni66 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7se0wni66 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7se0wni66 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7se0wni66 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7se0wni66 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7se0wni66 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7se0wni66 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7se0wni66 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7se0wni66 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7se0wni66 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7se0wni66 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7se0wni66 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7se0wni66 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7se0wni66 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s5a1ws9tTc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5a1ws9tTc .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5a1ws9tTc .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s5a1ws9tTc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5a1ws9tTc .inner-container {
    width: 100% !important;
  }
}
.cid-s5a1wskWfL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5a1wskWfL .item {
  padding-bottom: 2rem;
}
.cid-s5a1wskWfL .item-wrapper {
  height: 100%;
}
.cid-s5a1wskWfL .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s5a1wskWfL .carousel-control,
.cid-s5a1wskWfL .close {
  background: #1b1b1b;
}
.cid-s5a1wskWfL .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s5a1wskWfL .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s5a1wskWfL .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s5a1wskWfL .close::before {
  content: '\e91a';
}
.cid-s5a1wskWfL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s5a1wskWfL .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s5a1wskWfL .carousel-inner > .active {
  display: block;
}
.cid-s5a1wskWfL .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s5a1wskWfL .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s5a1wskWfL .carousel-control .icon-next,
.cid-s5a1wskWfL .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s5a1wskWfL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s5a1wskWfL .carousel-control,
  .cid-s5a1wskWfL .carousel-indicators,
  .cid-s5a1wskWfL .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s5a1wskWfL .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s5a1wskWfL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s5a1wskWfL .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s5a1wskWfL .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s5a1wskWfL .carousel-indicators {
    display: none;
  }
}
.cid-s5a1wskWfL .carousel-indicators .active,
.cid-s5a1wskWfL .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s5a1wskWfL .carousel-indicators .active {
  background: #fff;
}
.cid-s5a1wskWfL .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s5a1wskWfL .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s5a1wskWfL .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s5a1wskWfL .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s5a1wskWfL .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s5a1wskWfL .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s5a1wskWfL .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s5a1wskWfL .carousel {
  width: 100%;
}
.cid-s5a1wskWfL .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s5a1wskWfL .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s5a1wskWfL .modal.fade .modal-dialog,
.cid-s5a1wskWfL .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s5a1wskWfL .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s5a1wskWfL a {
  display: block;
}
.cid-s5a1wskWfL a.img {
  pointer-events: none;
}
.cid-s5a1wskWfL H3 {
  color: #232323;
}
.cid-s5a1wsQ7gH {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s5a1wsQ7gH .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s5a1wsQ7gH div.b {
  padding-top: 2rem;
}
.cid-s5a1wsQ7gH H5 {
  color: #232323;
}
.cid-s5fMAh2wu7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5fMAh2wu7 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5fMAh2wu7 .section-text {
  padding: 2rem 0;
}
.cid-s5fMAh2wu7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5fMAh2wu7 .inner-container {
    width: 100% !important;
  }
}
.cid-v7seANV2xD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7seANV2xD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7seANV2xD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7seANV2xD .row {
  justify-content: center;
}
.cid-v7seANV2xD .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7seANV2xD .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7seANV2xD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7seANV2xD .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7seANV2xD .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7seANV2xD .mbr-text_1,
.cid-v7seANV2xD .mbr-text_2,
.cid-v7seANV2xD .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7seANV2xD .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7seANV2xD .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7seANV2xD .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7seANV2xD .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7seANV2xD .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7seANV2xD .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7seANV2xD .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7seANV2xD .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7seANV2xD .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7seANV2xD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7seANV2xD .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7seANV2xD .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7seANV2xD .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7seBHXhV8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7seBHXhV8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7seBHXhV8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7seBHXhV8 .row {
  justify-content: center;
}
.cid-v7seBHXhV8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7seBHXhV8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7seBHXhV8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7seBHXhV8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7seBHXhV8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7seBHXhV8 .mbr-text_1,
.cid-v7seBHXhV8 .mbr-text_2,
.cid-v7seBHXhV8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7seBHXhV8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7seBHXhV8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7seBHXhV8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7seBHXhV8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7seBHXhV8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7seBHXhV8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7seBHXhV8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7seBHXhV8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7seBHXhV8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7seBHXhV8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7seBHXhV8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7seBHXhV8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7seBHXhV8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s5fMAi8AUF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5fMAi8AUF .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5fMAi8AUF .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s5fMAi8AUF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5fMAi8AUF .inner-container {
    width: 100% !important;
  }
}
.cid-svwitpKfD2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svwioJQyz4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svwioJQyz4 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svwioJQyz4 .section-text {
  padding: 2rem 0;
}
.cid-svwioJQyz4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svwioJQyz4 .inner-container {
    width: 100% !important;
  }
}
.cid-svwioJQyz4 .section-text DIV {
  text-align: center;
}
.cid-s5fMAjxLq6 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s5fMAjxLq6 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s5fMAjxLq6 div.b {
  padding-top: 2rem;
}
.cid-s5fMAjxLq6 H5 {
  color: #232323;
}
.cid-s5h7gTXOOF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5h7gTXOOF .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5h7gTXOOF .section-text {
  padding: 2rem 0;
}
.cid-s5h7gTXOOF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5h7gTXOOF .inner-container {
    width: 100% !important;
  }
}
.cid-v7seYPxyfE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7seYPxyfE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7seYPxyfE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7seYPxyfE .row {
  justify-content: center;
}
.cid-v7seYPxyfE .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7seYPxyfE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7seYPxyfE .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7seYPxyfE .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7seYPxyfE .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7seYPxyfE .mbr-text_1,
.cid-v7seYPxyfE .mbr-text_2,
.cid-v7seYPxyfE .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7seYPxyfE .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7seYPxyfE .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7seYPxyfE .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7seYPxyfE .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7seYPxyfE .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7seYPxyfE .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7seYPxyfE .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7seYPxyfE .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7seYPxyfE .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7seYPxyfE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7seYPxyfE .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7seYPxyfE .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7seYPxyfE .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7seZRl4gP {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7seZRl4gP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7seZRl4gP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7seZRl4gP .row {
  justify-content: center;
}
.cid-v7seZRl4gP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7seZRl4gP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7seZRl4gP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7seZRl4gP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7seZRl4gP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7seZRl4gP .mbr-text_1,
.cid-v7seZRl4gP .mbr-text_2,
.cid-v7seZRl4gP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7seZRl4gP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7seZRl4gP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7seZRl4gP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7seZRl4gP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7seZRl4gP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7seZRl4gP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7seZRl4gP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7seZRl4gP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7seZRl4gP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7seZRl4gP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7seZRl4gP .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7seZRl4gP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7seZRl4gP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s5h7gUGLbu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5h7gUGLbu .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5h7gUGLbu .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s5h7gUGLbu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5h7gUGLbu .inner-container {
    width: 100% !important;
  }
}
.cid-s5h7gUULTp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5h7gUULTp .item {
  padding-bottom: 2rem;
}
.cid-s5h7gUULTp .item-wrapper {
  height: 100%;
}
.cid-s5h7gUULTp .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s5h7gUULTp .carousel-control,
.cid-s5h7gUULTp .close {
  background: #1b1b1b;
}
.cid-s5h7gUULTp .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s5h7gUULTp .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s5h7gUULTp .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s5h7gUULTp .close::before {
  content: '\e91a';
}
.cid-s5h7gUULTp .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s5h7gUULTp .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s5h7gUULTp .carousel-inner > .active {
  display: block;
}
.cid-s5h7gUULTp .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s5h7gUULTp .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s5h7gUULTp .carousel-control .icon-next,
.cid-s5h7gUULTp .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s5h7gUULTp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s5h7gUULTp .carousel-control,
  .cid-s5h7gUULTp .carousel-indicators,
  .cid-s5h7gUULTp .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s5h7gUULTp .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s5h7gUULTp .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s5h7gUULTp .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s5h7gUULTp .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s5h7gUULTp .carousel-indicators {
    display: none;
  }
}
.cid-s5h7gUULTp .carousel-indicators .active,
.cid-s5h7gUULTp .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s5h7gUULTp .carousel-indicators .active {
  background: #fff;
}
.cid-s5h7gUULTp .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s5h7gUULTp .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s5h7gUULTp .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s5h7gUULTp .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s5h7gUULTp .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s5h7gUULTp .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s5h7gUULTp .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s5h7gUULTp .carousel {
  width: 100%;
}
.cid-s5h7gUULTp .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s5h7gUULTp .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s5h7gUULTp .modal.fade .modal-dialog,
.cid-s5h7gUULTp .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s5h7gUULTp .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s5h7gUULTp a {
  display: block;
}
.cid-s5h7gUULTp a.img {
  pointer-events: none;
}
.cid-s5h7gUULTp H3 {
  color: #232323;
}
.cid-s5h7gVJ6Zo {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s5h7gVJ6Zo .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s5h7gVJ6Zo div.b {
  padding-top: 2rem;
}
.cid-s5h7gVJ6Zo H5 {
  color: #232323;
}
.cid-s5h8NH119b {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5h8NH119b .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5h8NH119b .section-text {
  padding: 2rem 0;
}
.cid-s5h8NH119b .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5h8NH119b .inner-container {
    width: 100% !important;
  }
}
.cid-v7sfkUfrAZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7sfkUfrAZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sfkUfrAZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sfkUfrAZ .row {
  justify-content: center;
}
.cid-v7sfkUfrAZ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sfkUfrAZ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sfkUfrAZ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sfkUfrAZ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sfkUfrAZ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sfkUfrAZ .mbr-text_1,
.cid-v7sfkUfrAZ .mbr-text_2,
.cid-v7sfkUfrAZ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sfkUfrAZ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sfkUfrAZ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sfkUfrAZ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sfkUfrAZ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sfkUfrAZ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sfkUfrAZ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sfkUfrAZ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sfkUfrAZ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sfkUfrAZ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sfkUfrAZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sfkUfrAZ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sfkUfrAZ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sfkUfrAZ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7sflI8Gju {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7sflI8Gju .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sflI8Gju .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sflI8Gju .row {
  justify-content: center;
}
.cid-v7sflI8Gju .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sflI8Gju .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sflI8Gju .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sflI8Gju .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sflI8Gju .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sflI8Gju .mbr-text_1,
.cid-v7sflI8Gju .mbr-text_2,
.cid-v7sflI8Gju .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sflI8Gju .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sflI8Gju .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sflI8Gju .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sflI8Gju .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sflI8Gju .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sflI8Gju .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sflI8Gju .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sflI8Gju .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sflI8Gju .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sflI8Gju .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sflI8Gju .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sflI8Gju .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sflI8Gju .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s5h8NHKnBJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5h8NHKnBJ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5h8NHKnBJ .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s5h8NHKnBJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5h8NHKnBJ .inner-container {
    width: 100% !important;
  }
}
.cid-s5h8NHVE0S {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5h8NHVE0S .item {
  padding-bottom: 2rem;
}
.cid-s5h8NHVE0S .item-wrapper {
  height: 100%;
}
.cid-s5h8NHVE0S .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s5h8NHVE0S .carousel-control,
.cid-s5h8NHVE0S .close {
  background: #1b1b1b;
}
.cid-s5h8NHVE0S .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s5h8NHVE0S .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s5h8NHVE0S .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s5h8NHVE0S .close::before {
  content: '\e91a';
}
.cid-s5h8NHVE0S .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s5h8NHVE0S .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s5h8NHVE0S .carousel-inner > .active {
  display: block;
}
.cid-s5h8NHVE0S .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s5h8NHVE0S .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s5h8NHVE0S .carousel-control .icon-next,
.cid-s5h8NHVE0S .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s5h8NHVE0S .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s5h8NHVE0S .carousel-control,
  .cid-s5h8NHVE0S .carousel-indicators,
  .cid-s5h8NHVE0S .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s5h8NHVE0S .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s5h8NHVE0S .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s5h8NHVE0S .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s5h8NHVE0S .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s5h8NHVE0S .carousel-indicators {
    display: none;
  }
}
.cid-s5h8NHVE0S .carousel-indicators .active,
.cid-s5h8NHVE0S .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s5h8NHVE0S .carousel-indicators .active {
  background: #fff;
}
.cid-s5h8NHVE0S .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s5h8NHVE0S .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s5h8NHVE0S .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s5h8NHVE0S .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s5h8NHVE0S .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s5h8NHVE0S .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s5h8NHVE0S .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s5h8NHVE0S .carousel {
  width: 100%;
}
.cid-s5h8NHVE0S .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s5h8NHVE0S .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s5h8NHVE0S .modal.fade .modal-dialog,
.cid-s5h8NHVE0S .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s5h8NHVE0S .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s5h8NHVE0S a {
  display: block;
}
.cid-s5h8NHVE0S a.img {
  pointer-events: none;
}
.cid-s5h8NHVE0S H3 {
  color: #232323;
}
.cid-s5h8NIoV1B {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s5h8NIoV1B .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s5h8NIoV1B div.b {
  padding-top: 2rem;
}
.cid-s5h8NIoV1B H5 {
  color: #232323;
}
.cid-s5hd8c367h {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5hd8c367h .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5hd8c367h .section-text {
  padding: 2rem 0;
}
.cid-s5hd8c367h .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5hd8c367h .inner-container {
    width: 100% !important;
  }
}
.cid-v7tCoA12Kv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7tCoA12Kv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7tCoA12Kv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tCoA12Kv .row {
  justify-content: center;
}
.cid-v7tCoA12Kv .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7tCoA12Kv .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7tCoA12Kv .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7tCoA12Kv .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7tCoA12Kv .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7tCoA12Kv .mbr-text_1,
.cid-v7tCoA12Kv .mbr-text_2,
.cid-v7tCoA12Kv .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7tCoA12Kv .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCoA12Kv .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7tCoA12Kv .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tCoA12Kv .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tCoA12Kv .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCoA12Kv .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7tCoA12Kv .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7tCoA12Kv .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCoA12Kv .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tCoA12Kv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7tCoA12Kv .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7tCoA12Kv .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7tCoA12Kv .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7tC9GNjjl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7tC9GNjjl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7tC9GNjjl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tC9GNjjl .row {
  justify-content: center;
}
.cid-v7tC9GNjjl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7tC9GNjjl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7tC9GNjjl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7tC9GNjjl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7tC9GNjjl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7tC9GNjjl .mbr-text_1,
.cid-v7tC9GNjjl .mbr-text_2,
.cid-v7tC9GNjjl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7tC9GNjjl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tC9GNjjl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7tC9GNjjl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tC9GNjjl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tC9GNjjl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tC9GNjjl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7tC9GNjjl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7tC9GNjjl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tC9GNjjl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tC9GNjjl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7tC9GNjjl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7tC9GNjjl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7tC9GNjjl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s5hd8cLkke {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5hd8cLkke .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5hd8cLkke .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s5hd8cLkke .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5hd8cLkke .inner-container {
    width: 100% !important;
  }
}
.cid-s5hd8cWLoh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5hd8cWLoh .item {
  padding-bottom: 2rem;
}
.cid-s5hd8cWLoh .item-wrapper {
  height: 100%;
}
.cid-s5hd8cWLoh .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s5hd8cWLoh .carousel-control,
.cid-s5hd8cWLoh .close {
  background: #1b1b1b;
}
.cid-s5hd8cWLoh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s5hd8cWLoh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s5hd8cWLoh .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s5hd8cWLoh .close::before {
  content: '\e91a';
}
.cid-s5hd8cWLoh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s5hd8cWLoh .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s5hd8cWLoh .carousel-inner > .active {
  display: block;
}
.cid-s5hd8cWLoh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s5hd8cWLoh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s5hd8cWLoh .carousel-control .icon-next,
.cid-s5hd8cWLoh .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s5hd8cWLoh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s5hd8cWLoh .carousel-control,
  .cid-s5hd8cWLoh .carousel-indicators,
  .cid-s5hd8cWLoh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s5hd8cWLoh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s5hd8cWLoh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s5hd8cWLoh .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s5hd8cWLoh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s5hd8cWLoh .carousel-indicators {
    display: none;
  }
}
.cid-s5hd8cWLoh .carousel-indicators .active,
.cid-s5hd8cWLoh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s5hd8cWLoh .carousel-indicators .active {
  background: #fff;
}
.cid-s5hd8cWLoh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s5hd8cWLoh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s5hd8cWLoh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s5hd8cWLoh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s5hd8cWLoh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s5hd8cWLoh .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s5hd8cWLoh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s5hd8cWLoh .carousel {
  width: 100%;
}
.cid-s5hd8cWLoh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s5hd8cWLoh .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s5hd8cWLoh .modal.fade .modal-dialog,
.cid-s5hd8cWLoh .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s5hd8cWLoh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s5hd8cWLoh a {
  display: block;
}
.cid-s5hd8cWLoh a.img {
  pointer-events: none;
}
.cid-s5hd8cWLoh H3 {
  color: #232323;
}
.cid-s5hd8dpjGZ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s5hd8dpjGZ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s5hd8dpjGZ div.b {
  padding-top: 2rem;
}
.cid-s5hd8dpjGZ H5 {
  color: #232323;
}
.cid-s5hdTfHZjA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5hdTfHZjA .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5hdTfHZjA .section-text {
  padding: 2rem 0;
}
.cid-s5hdTfHZjA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5hdTfHZjA .inner-container {
    width: 100% !important;
  }
}
.cid-v7vwK8z0jm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vwK8z0jm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vwK8z0jm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vwK8z0jm .row {
  justify-content: center;
}
.cid-v7vwK8z0jm .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vwK8z0jm .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vwK8z0jm .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vwK8z0jm .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vwK8z0jm .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vwK8z0jm .mbr-text_1,
.cid-v7vwK8z0jm .mbr-text_2,
.cid-v7vwK8z0jm .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vwK8z0jm .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vwK8z0jm .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vwK8z0jm .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vwK8z0jm .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vwK8z0jm .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vwK8z0jm .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vwK8z0jm .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vwK8z0jm .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vwK8z0jm .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vwK8z0jm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vwK8z0jm .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vwK8z0jm .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vwK8z0jm .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vwQHch18 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vwQHch18 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vwQHch18 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vwQHch18 .row {
  justify-content: center;
}
.cid-v7vwQHch18 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vwQHch18 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vwQHch18 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vwQHch18 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vwQHch18 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vwQHch18 .mbr-text_1,
.cid-v7vwQHch18 .mbr-text_2,
.cid-v7vwQHch18 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vwQHch18 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vwQHch18 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vwQHch18 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vwQHch18 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vwQHch18 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vwQHch18 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vwQHch18 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vwQHch18 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vwQHch18 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vwQHch18 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vwQHch18 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vwQHch18 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vwQHch18 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s5hdTgOdgv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s5hdTgOdgv .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5hdTgOdgv .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s5hdTgOdgv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5hdTgOdgv .inner-container {
    width: 100% !important;
  }
}
.cid-svwlVHcvwA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svwlWuteVc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svwlWuteVc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svwlWuteVc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svwlWuteVc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svwlWuteVc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svwlWuteVc .row > .row {
  display: block;
}
.cid-svwlWuteVc .mbr-gallery-item {
  width: 100%;
}
.cid-svwlWuteVc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svwlWuteVc .mbr-gallery-item > div {
  position: relative;
}
.cid-svwlWuteVc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svwlWuteVc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svwlWuteVc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svwlWuteVc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s5hdTl9cAe {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s5hdTl9cAe .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s5hdTl9cAe div.b {
  padding-top: 2rem;
}
.cid-s5hdTl9cAe H5 {
  color: #232323;
}
.cid-s6ojgJAbVd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6ojgJAbVd .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6ojgJAbVd .section-text {
  padding: 2rem 0;
}
.cid-s6ojgJAbVd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6ojgJAbVd .inner-container {
    width: 100% !important;
  }
}
.cid-v7sacYbNDl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7sacYbNDl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sacYbNDl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sacYbNDl .row {
  justify-content: center;
}
.cid-v7sacYbNDl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sacYbNDl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sacYbNDl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sacYbNDl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sacYbNDl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sacYbNDl .mbr-text_1,
.cid-v7sacYbNDl .mbr-text_2,
.cid-v7sacYbNDl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sacYbNDl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sacYbNDl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sacYbNDl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sacYbNDl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sacYbNDl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sacYbNDl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sacYbNDl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sacYbNDl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sacYbNDl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7sacYbNDl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sacYbNDl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sacYbNDl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sacYbNDl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7sadKVjcn {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7sadKVjcn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7sadKVjcn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7sadKVjcn .row {
  justify-content: center;
}
.cid-v7sadKVjcn .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7sadKVjcn .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7sadKVjcn .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7sadKVjcn .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7sadKVjcn .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7sadKVjcn .mbr-text_1,
.cid-v7sadKVjcn .mbr-text_2,
.cid-v7sadKVjcn .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7sadKVjcn .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sadKVjcn .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7sadKVjcn .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sadKVjcn .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sadKVjcn .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sadKVjcn .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7sadKVjcn .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7sadKVjcn .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7sadKVjcn .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7sadKVjcn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7sadKVjcn .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7sadKVjcn .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7sadKVjcn .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s6ojgK8yfM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6ojgK8yfM .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6ojgK8yfM .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s6ojgK8yfM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6ojgK8yfM .inner-container {
    width: 100% !important;
  }
}
.cid-svuLTVzCLR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svuLUO5xfe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuLUO5xfe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svuLUO5xfe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svuLUO5xfe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svuLUO5xfe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svuLUO5xfe .row > .row {
  display: block;
}
.cid-svuLUO5xfe .mbr-gallery-item {
  width: 100%;
}
.cid-svuLUO5xfe .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svuLUO5xfe .mbr-gallery-item > div {
  position: relative;
}
.cid-svuLUO5xfe .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svuLUO5xfe .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svuLUO5xfe .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svuLUO5xfe .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svuM5tlQLh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svuM5tlQLh .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svuM5tlQLh .section-text {
  padding: 2rem 0;
}
.cid-svuM5tlQLh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svuM5tlQLh .inner-container {
    width: 100% !important;
  }
}
.cid-svuM5tlQLh .section-text DIV {
  text-align: center;
}
.cid-s6ojgKEhFe {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s6ojgKEhFe .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s6ojgKEhFe div.b {
  padding-top: 2rem;
}
.cid-s6ojgKEhFe H5 {
  color: #232323;
}
.cid-s6IEPxYdsM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6IEPxYdsM .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6IEPxYdsM .section-text {
  padding: 2rem 0;
}
.cid-s6IEPxYdsM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6IEPxYdsM .inner-container {
    width: 100% !important;
  }
}
.cid-v7vFDCgn2m {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vFDCgn2m .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vFDCgn2m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vFDCgn2m .row {
  justify-content: center;
}
.cid-v7vFDCgn2m .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vFDCgn2m .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vFDCgn2m .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vFDCgn2m .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vFDCgn2m .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vFDCgn2m .mbr-text_1,
.cid-v7vFDCgn2m .mbr-text_2,
.cid-v7vFDCgn2m .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vFDCgn2m .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFDCgn2m .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vFDCgn2m .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vFDCgn2m .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vFDCgn2m .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFDCgn2m .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vFDCgn2m .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vFDCgn2m .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFDCgn2m .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vFDCgn2m .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vFDCgn2m .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vFDCgn2m .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vFDCgn2m .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vFEGQZLh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vFEGQZLh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vFEGQZLh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vFEGQZLh .row {
  justify-content: center;
}
.cid-v7vFEGQZLh .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vFEGQZLh .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vFEGQZLh .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vFEGQZLh .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vFEGQZLh .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vFEGQZLh .mbr-text_1,
.cid-v7vFEGQZLh .mbr-text_2,
.cid-v7vFEGQZLh .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vFEGQZLh .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFEGQZLh .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vFEGQZLh .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vFEGQZLh .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vFEGQZLh .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFEGQZLh .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vFEGQZLh .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vFEGQZLh .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFEGQZLh .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vFEGQZLh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vFEGQZLh .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vFEGQZLh .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vFEGQZLh .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s6IEPyzL5Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6IEPyzL5Q .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6IEPyzL5Q .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s6IEPyzL5Q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6IEPyzL5Q .inner-container {
    width: 100% !important;
  }
}
.cid-v8aEp6RqO7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aEp6RqO7 .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aEp6RqO7 .container-table {
  margin: 0 auto;
}
.cid-v8aEp6RqO7 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aEp6RqO7 .dataTables_wrapper {
  display: block;
}
.cid-v8aEp6RqO7 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aEp6RqO7 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aEp6RqO7 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aEp6RqO7 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aEp6RqO7 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aEp6RqO7 table td {
  border-top: 1px solid #232323;
}
.cid-v8aEp6RqO7 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aEp6RqO7 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aEp6RqO7 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aEp6RqO7 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aEp6RqO7 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aEp6RqO7 .dataTables_filter {
    text-align: center;
  }
  .cid-v8aEp6RqO7 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aEp6RqO7 .mbr-section-title {
  color: #232323;
}
.cid-v8aEp6RqO7 .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aEp6RqO7 .body-item {
  text-align: center;
}
.cid-s6IEPyHOcQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6IEPyHOcQ .mbr-section-subtitle {
  color: #767676;
}
.cid-s6IEPyHOcQ .container-table {
  margin: 0 auto;
}
.cid-s6IEPyHOcQ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s6IEPyHOcQ .dataTables_wrapper {
  display: block;
}
.cid-s6IEPyHOcQ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s6IEPyHOcQ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s6IEPyHOcQ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s6IEPyHOcQ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s6IEPyHOcQ table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s6IEPyHOcQ table td {
  border-top: 1px solid #232323;
}
.cid-s6IEPyHOcQ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s6IEPyHOcQ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s6IEPyHOcQ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s6IEPyHOcQ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s6IEPyHOcQ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s6IEPyHOcQ .dataTables_filter {
    text-align: center;
  }
  .cid-s6IEPyHOcQ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s6IEPyHOcQ .mbr-section-title {
  color: #232323;
}
.cid-s6IEPyHOcQ .head-item {
  text-align: center;
  color: #232323;
}
.cid-s6IEPyHOcQ .body-item {
  text-align: center;
}
.cid-s6IEPzcgvb {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s6IEPzcgvb .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s6IEPzcgvb div.b {
  padding-top: 2rem;
}
.cid-s6IEPzcgvb H5 {
  color: #232323;
}
.cid-s6OowZxYUW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OowZxYUW .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6OowZxYUW .section-text {
  padding: 2rem 0;
}
.cid-s6OowZxYUW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6OowZxYUW .inner-container {
    width: 100% !important;
  }
}
.cid-v7vEtQ6fgt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vEtQ6fgt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vEtQ6fgt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vEtQ6fgt .row {
  justify-content: center;
}
.cid-v7vEtQ6fgt .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vEtQ6fgt .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vEtQ6fgt .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vEtQ6fgt .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vEtQ6fgt .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vEtQ6fgt .mbr-text_1,
.cid-v7vEtQ6fgt .mbr-text_2,
.cid-v7vEtQ6fgt .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vEtQ6fgt .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vEtQ6fgt .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vEtQ6fgt .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vEtQ6fgt .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vEtQ6fgt .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vEtQ6fgt .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vEtQ6fgt .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vEtQ6fgt .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vEtQ6fgt .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vEtQ6fgt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vEtQ6fgt .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vEtQ6fgt .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vEtQ6fgt .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vEuEJ85x {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vEuEJ85x .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vEuEJ85x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vEuEJ85x .row {
  justify-content: center;
}
.cid-v7vEuEJ85x .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vEuEJ85x .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vEuEJ85x .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vEuEJ85x .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vEuEJ85x .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vEuEJ85x .mbr-text_1,
.cid-v7vEuEJ85x .mbr-text_2,
.cid-v7vEuEJ85x .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vEuEJ85x .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vEuEJ85x .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vEuEJ85x .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vEuEJ85x .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vEuEJ85x .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vEuEJ85x .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vEuEJ85x .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vEuEJ85x .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vEuEJ85x .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vEuEJ85x .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vEuEJ85x .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vEuEJ85x .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vEuEJ85x .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s6Oox01BJl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6Oox01BJl .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6Oox01BJl .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s6Oox01BJl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6Oox01BJl .inner-container {
    width: 100% !important;
  }
}
.cid-s6Opk26Pqh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6Opk26Pqh .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6Opk26Pqh .section-text {
  padding: 2rem 0;
}
.cid-s6Opk26Pqh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6Opk26Pqh .inner-container {
    width: 100% !important;
  }
}
.cid-s6OpeFO0Fz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OpeFO0Fz .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6OpeFO0Fz .section-text {
  padding: 2rem 0;
}
.cid-s6OpeFO0Fz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6OpeFO0Fz .inner-container {
    width: 100% !important;
  }
}
.cid-s6OpeFO0Fz .section-text DIV {
  text-align: center;
}
.cid-s6Oox0tZjI {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s6Oox0tZjI .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s6Oox0tZjI div.b {
  padding-top: 2rem;
}
.cid-s6Oox0tZjI H5 {
  color: #232323;
}
.cid-s6OsHgiGQy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OsHgiGQy .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6OsHgiGQy .section-text {
  padding: 2rem 0;
}
.cid-s6OsHgiGQy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6OsHgiGQy .inner-container {
    width: 100% !important;
  }
}
.cid-v7vFmtDCLo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vFmtDCLo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vFmtDCLo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vFmtDCLo .row {
  justify-content: center;
}
.cid-v7vFmtDCLo .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vFmtDCLo .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vFmtDCLo .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vFmtDCLo .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vFmtDCLo .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vFmtDCLo .mbr-text_1,
.cid-v7vFmtDCLo .mbr-text_2,
.cid-v7vFmtDCLo .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vFmtDCLo .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFmtDCLo .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vFmtDCLo .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vFmtDCLo .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vFmtDCLo .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFmtDCLo .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vFmtDCLo .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vFmtDCLo .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFmtDCLo .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vFmtDCLo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vFmtDCLo .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vFmtDCLo .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vFmtDCLo .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vFnhxAgY {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vFnhxAgY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vFnhxAgY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vFnhxAgY .row {
  justify-content: center;
}
.cid-v7vFnhxAgY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vFnhxAgY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vFnhxAgY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vFnhxAgY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vFnhxAgY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vFnhxAgY .mbr-text_1,
.cid-v7vFnhxAgY .mbr-text_2,
.cid-v7vFnhxAgY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vFnhxAgY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFnhxAgY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vFnhxAgY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vFnhxAgY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vFnhxAgY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFnhxAgY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vFnhxAgY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vFnhxAgY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFnhxAgY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vFnhxAgY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vFnhxAgY .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vFnhxAgY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vFnhxAgY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s6OsHgENpO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OsHgENpO .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6OsHgENpO .section-text {
  padding: 2rem 0;
}
.cid-s6OsHgENpO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6OsHgENpO .inner-container {
    width: 100% !important;
  }
}
.cid-s6OsHgOKAT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OsHgOKAT .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6OsHgOKAT .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s6OsHgOKAT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6OsHgOKAT .inner-container {
    width: 100% !important;
  }
}
.cid-s6OsHgVQGw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OsHgVQGw .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6OsHgVQGw .section-text {
  padding: 2rem 0;
}
.cid-s6OsHgVQGw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6OsHgVQGw .inner-container {
    width: 100% !important;
  }
}
.cid-s6OsHh4tCE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OsHh4tCE .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6OsHh4tCE .section-text {
  padding: 2rem 0;
}
.cid-s6OsHh4tCE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6OsHh4tCE .inner-container {
    width: 100% !important;
  }
}
.cid-s6OsHh4tCE .section-text DIV {
  text-align: center;
}
.cid-s6OsHhd7cw {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s6OsHhd7cw .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s6OsHhd7cw div.b {
  padding-top: 2rem;
}
.cid-s6OsHhd7cw H5 {
  color: #232323;
}
.cid-s6OuX7QpEE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OuX7QpEE .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6OuX7QpEE .section-text {
  padding: 2rem 0;
}
.cid-s6OuX7QpEE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6OuX7QpEE .inner-container {
    width: 100% !important;
  }
}
.cid-v7vDKBkGkd {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vDKBkGkd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vDKBkGkd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vDKBkGkd .row {
  justify-content: center;
}
.cid-v7vDKBkGkd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vDKBkGkd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vDKBkGkd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vDKBkGkd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vDKBkGkd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vDKBkGkd .mbr-text_1,
.cid-v7vDKBkGkd .mbr-text_2,
.cid-v7vDKBkGkd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vDKBkGkd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vDKBkGkd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vDKBkGkd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vDKBkGkd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vDKBkGkd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vDKBkGkd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vDKBkGkd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vDKBkGkd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vDKBkGkd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vDKBkGkd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vDKBkGkd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vDKBkGkd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vDKBkGkd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vDLrSEGc {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vDLrSEGc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vDLrSEGc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vDLrSEGc .row {
  justify-content: center;
}
.cid-v7vDLrSEGc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vDLrSEGc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vDLrSEGc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vDLrSEGc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vDLrSEGc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vDLrSEGc .mbr-text_1,
.cid-v7vDLrSEGc .mbr-text_2,
.cid-v7vDLrSEGc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vDLrSEGc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vDLrSEGc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vDLrSEGc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vDLrSEGc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vDLrSEGc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vDLrSEGc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vDLrSEGc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vDLrSEGc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vDLrSEGc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vDLrSEGc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vDLrSEGc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vDLrSEGc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vDLrSEGc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s6OuX8oaEE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OuX8oaEE .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6OuX8oaEE .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s6OuX8oaEE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6OuX8oaEE .inner-container {
    width: 100% !important;
  }
}
.cid-suR1QxfEPD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suR1Tr24Hb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suR1Tr24Hb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suR1Tr24Hb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suR1Tr24Hb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suR1Tr24Hb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suR1Tr24Hb .row > .row {
  display: block;
}
.cid-suR1Tr24Hb .mbr-gallery-item {
  width: 100%;
}
.cid-suR1Tr24Hb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suR1Tr24Hb .mbr-gallery-item > div {
  position: relative;
}
.cid-suR1Tr24Hb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suR1Tr24Hb .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suR1Tr24Hb .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suR1Tr24Hb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-suR1Xmu9g6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suR1Xmu9g6 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suR1Xmu9g6 .section-text {
  padding: 2rem 0;
}
.cid-suR1Xmu9g6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suR1Xmu9g6 .inner-container {
    width: 100% !important;
  }
}
.cid-suR1Xmu9g6 .section-text DIV {
  text-align: center;
}
.cid-s6OuX8XdBk {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s6OuX8XdBk .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s6OuX8XdBk div.b {
  padding-top: 2rem;
}
.cid-s6OuX8XdBk H5 {
  color: #232323;
}
.cid-s6OwzN4lsu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OwzN4lsu .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6OwzN4lsu .section-text {
  padding: 2rem 0;
}
.cid-s6OwzN4lsu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6OwzN4lsu .inner-container {
    width: 100% !important;
  }
}
.cid-v7vCkQWww4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vCkQWww4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vCkQWww4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vCkQWww4 .row {
  justify-content: center;
}
.cid-v7vCkQWww4 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vCkQWww4 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vCkQWww4 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vCkQWww4 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vCkQWww4 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vCkQWww4 .mbr-text_1,
.cid-v7vCkQWww4 .mbr-text_2,
.cid-v7vCkQWww4 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vCkQWww4 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vCkQWww4 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vCkQWww4 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vCkQWww4 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vCkQWww4 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vCkQWww4 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vCkQWww4 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vCkQWww4 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vCkQWww4 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vCkQWww4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vCkQWww4 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vCkQWww4 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vCkQWww4 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vClSJDsV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vClSJDsV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vClSJDsV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vClSJDsV .row {
  justify-content: center;
}
.cid-v7vClSJDsV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vClSJDsV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vClSJDsV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vClSJDsV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vClSJDsV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vClSJDsV .mbr-text_1,
.cid-v7vClSJDsV .mbr-text_2,
.cid-v7vClSJDsV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vClSJDsV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vClSJDsV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vClSJDsV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vClSJDsV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vClSJDsV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vClSJDsV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vClSJDsV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vClSJDsV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vClSJDsV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vClSJDsV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vClSJDsV .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vClSJDsV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vClSJDsV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s6OwzNAlbA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OwzNAlbA .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6OwzNAlbA .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s6OwzNAlbA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6OwzNAlbA .inner-container {
    width: 100% !important;
  }
}
.cid-s6OwzNI6iJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OwzNI6iJ .item {
  padding-bottom: 2rem;
}
.cid-s6OwzNI6iJ .item-wrapper {
  height: 100%;
}
.cid-s6OwzNI6iJ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s6OwzNI6iJ .carousel-control,
.cid-s6OwzNI6iJ .close {
  background: #1b1b1b;
}
.cid-s6OwzNI6iJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s6OwzNI6iJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s6OwzNI6iJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s6OwzNI6iJ .close::before {
  content: '\e91a';
}
.cid-s6OwzNI6iJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s6OwzNI6iJ .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s6OwzNI6iJ .carousel-inner > .active {
  display: block;
}
.cid-s6OwzNI6iJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s6OwzNI6iJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s6OwzNI6iJ .carousel-control .icon-next,
.cid-s6OwzNI6iJ .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s6OwzNI6iJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s6OwzNI6iJ .carousel-control,
  .cid-s6OwzNI6iJ .carousel-indicators,
  .cid-s6OwzNI6iJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s6OwzNI6iJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s6OwzNI6iJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s6OwzNI6iJ .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s6OwzNI6iJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s6OwzNI6iJ .carousel-indicators {
    display: none;
  }
}
.cid-s6OwzNI6iJ .carousel-indicators .active,
.cid-s6OwzNI6iJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-s6OwzNI6iJ .carousel-indicators .active {
  background: #fff;
}
.cid-s6OwzNI6iJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s6OwzNI6iJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s6OwzNI6iJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s6OwzNI6iJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s6OwzNI6iJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s6OwzNI6iJ .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-s6OwzNI6iJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-s6OwzNI6iJ .carousel {
  width: 100%;
}
.cid-s6OwzNI6iJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-s6OwzNI6iJ .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s6OwzNI6iJ .modal.fade .modal-dialog,
.cid-s6OwzNI6iJ .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s6OwzNI6iJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-s6OwzNI6iJ a {
  display: block;
}
.cid-s6OwzNI6iJ a.img {
  pointer-events: none;
}
.cid-s6OwzNI6iJ H3 {
  color: #232323;
}
.cid-s6OwzO8yOZ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s6OwzO8yOZ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s6OwzO8yOZ div.b {
  padding-top: 2rem;
}
.cid-s6OwzO8yOZ H5 {
  color: #232323;
}
.cid-s6Oz9mvqSd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6Oz9mvqSd .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6Oz9mvqSd .section-text {
  padding: 2rem 0;
}
.cid-s6Oz9mvqSd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6Oz9mvqSd .inner-container {
    width: 100% !important;
  }
}
.cid-v7vD1smdl8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vD1smdl8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vD1smdl8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vD1smdl8 .row {
  justify-content: center;
}
.cid-v7vD1smdl8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vD1smdl8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vD1smdl8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vD1smdl8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vD1smdl8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vD1smdl8 .mbr-text_1,
.cid-v7vD1smdl8 .mbr-text_2,
.cid-v7vD1smdl8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vD1smdl8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vD1smdl8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vD1smdl8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vD1smdl8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vD1smdl8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vD1smdl8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vD1smdl8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vD1smdl8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vD1smdl8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vD1smdl8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vD1smdl8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vD1smdl8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vD1smdl8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vD2dLI7N {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vD2dLI7N .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vD2dLI7N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vD2dLI7N .row {
  justify-content: center;
}
.cid-v7vD2dLI7N .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vD2dLI7N .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vD2dLI7N .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vD2dLI7N .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vD2dLI7N .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vD2dLI7N .mbr-text_1,
.cid-v7vD2dLI7N .mbr-text_2,
.cid-v7vD2dLI7N .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vD2dLI7N .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vD2dLI7N .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vD2dLI7N .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vD2dLI7N .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vD2dLI7N .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vD2dLI7N .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vD2dLI7N .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vD2dLI7N .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vD2dLI7N .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vD2dLI7N .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vD2dLI7N .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vD2dLI7N .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vD2dLI7N .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s6Oz9nVD5f {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6Oz9nVD5f .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6Oz9nVD5f .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s6Oz9nVD5f .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6Oz9nVD5f .inner-container {
    width: 100% !important;
  }
}
.cid-s6OzYObxN9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OzYObxN9 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6OzYObxN9 .section-text {
  padding: 2rem 0;
}
.cid-s6OzYObxN9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6OzYObxN9 .inner-container {
    width: 100% !important;
  }
}
.cid-s6OzX9wBBq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OzX9wBBq .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6OzX9wBBq .section-text {
  padding: 2rem 0;
}
.cid-s6OzX9wBBq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6OzX9wBBq .inner-container {
    width: 100% !important;
  }
}
.cid-s6OzX9wBBq .section-text DIV {
  text-align: center;
}
.cid-s6OIkJ4fW9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6OIkJ4fW9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s6OIkJ4fW9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s6OIkJ4fW9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s6OIkJ4fW9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s6OIkJ4fW9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-s6OIkJ4fW9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s6OIkJ4fW9 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s6OIkJ4fW9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s6OIkJ4fW9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-s6Oz9ou734 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s6Oz9ou734 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s6Oz9ou734 div.b {
  padding-top: 2rem;
}
.cid-s6Oz9ou734 H5 {
  color: #232323;
}
.cid-s6TIS6OEjG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6TIS6OEjG .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6TIS6OEjG .section-text {
  padding: 2rem 0;
}
.cid-s6TIS6OEjG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6TIS6OEjG .inner-container {
    width: 100% !important;
  }
}
.cid-v7tCNhequX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7tCNhequX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7tCNhequX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tCNhequX .row {
  justify-content: center;
}
.cid-v7tCNhequX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7tCNhequX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7tCNhequX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7tCNhequX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7tCNhequX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7tCNhequX .mbr-text_1,
.cid-v7tCNhequX .mbr-text_2,
.cid-v7tCNhequX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7tCNhequX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCNhequX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7tCNhequX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tCNhequX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tCNhequX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCNhequX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7tCNhequX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7tCNhequX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCNhequX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tCNhequX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7tCNhequX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7tCNhequX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7tCNhequX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7tCPS1l0Y {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7tCPS1l0Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7tCPS1l0Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tCPS1l0Y .row {
  justify-content: center;
}
.cid-v7tCPS1l0Y .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7tCPS1l0Y .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7tCPS1l0Y .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7tCPS1l0Y .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7tCPS1l0Y .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7tCPS1l0Y .mbr-text_1,
.cid-v7tCPS1l0Y .mbr-text_2,
.cid-v7tCPS1l0Y .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7tCPS1l0Y .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCPS1l0Y .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7tCPS1l0Y .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tCPS1l0Y .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tCPS1l0Y .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCPS1l0Y .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7tCPS1l0Y .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7tCPS1l0Y .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tCPS1l0Y .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tCPS1l0Y .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7tCPS1l0Y .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7tCPS1l0Y .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7tCPS1l0Y .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s6TIS7fJOl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6TIS7fJOl .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6TIS7fJOl .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s6TIS7fJOl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6TIS7fJOl .inner-container {
    width: 100% !important;
  }
}
.cid-s6TM3lkCcE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6TM3lkCcE .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6TM3lkCcE .section-text {
  padding: 2rem 0;
}
.cid-s6TM3lkCcE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6TM3lkCcE .inner-container {
    width: 100% !important;
  }
}
.cid-s6TMS6FWrj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6TMS6FWrj .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6TMS6FWrj .section-text {
  padding: 2rem 0;
}
.cid-s6TMS6FWrj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6TMS6FWrj .inner-container {
    width: 100% !important;
  }
}
.cid-s6TMS6FWrj .section-text DIV {
  text-align: center;
}
.cid-svwjRXqzVj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svwjRXqzVj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svwjRXqzVj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svwjRXqzVj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svwjRXqzVj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svwjRXqzVj .row > .row {
  display: block;
}
.cid-svwjRXqzVj .mbr-gallery-item {
  width: 100%;
}
.cid-svwjRXqzVj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svwjRXqzVj .mbr-gallery-item > div {
  position: relative;
}
.cid-svwjRXqzVj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svwjRXqzVj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svwjRXqzVj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svwjRXqzVj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s6TIS8A26M {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s6TIS8A26M .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s6TIS8A26M div.b {
  padding-top: 2rem;
}
.cid-s6TIS8A26M H5 {
  color: #232323;
}
.cid-s6TPeuGGVJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6TPeuGGVJ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6TPeuGGVJ .section-text {
  padding: 2rem 0;
}
.cid-s6TPeuGGVJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6TPeuGGVJ .inner-container {
    width: 100% !important;
  }
}
.cid-v7tFWzrZPs {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7tFWzrZPs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7tFWzrZPs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tFWzrZPs .row {
  justify-content: center;
}
.cid-v7tFWzrZPs .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7tFWzrZPs .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7tFWzrZPs .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7tFWzrZPs .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7tFWzrZPs .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7tFWzrZPs .mbr-text_1,
.cid-v7tFWzrZPs .mbr-text_2,
.cid-v7tFWzrZPs .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7tFWzrZPs .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tFWzrZPs .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7tFWzrZPs .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tFWzrZPs .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tFWzrZPs .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tFWzrZPs .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7tFWzrZPs .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7tFWzrZPs .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tFWzrZPs .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tFWzrZPs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7tFWzrZPs .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7tFWzrZPs .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7tFWzrZPs .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7tFXH1vWV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7tFXH1vWV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7tFXH1vWV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tFXH1vWV .row {
  justify-content: center;
}
.cid-v7tFXH1vWV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7tFXH1vWV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7tFXH1vWV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7tFXH1vWV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7tFXH1vWV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7tFXH1vWV .mbr-text_1,
.cid-v7tFXH1vWV .mbr-text_2,
.cid-v7tFXH1vWV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7tFXH1vWV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tFXH1vWV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7tFXH1vWV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tFXH1vWV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tFXH1vWV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tFXH1vWV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7tFXH1vWV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7tFXH1vWV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tFXH1vWV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tFXH1vWV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7tFXH1vWV .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7tFXH1vWV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7tFXH1vWV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s6TPevbP2s {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6TPevbP2s .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6TPevbP2s .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s6TPevbP2s .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6TPevbP2s .inner-container {
    width: 100% !important;
  }
}
.cid-s6TPevieq2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6TPevieq2 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6TPevieq2 .section-text {
  padding: 2rem 0;
}
.cid-s6TPevieq2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6TPevieq2 .inner-container {
    width: 100% !important;
  }
}
.cid-s6TPevrH6z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6TPevrH6z .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6TPevrH6z .section-text {
  padding: 2rem 0;
}
.cid-s6TPevrH6z .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6TPevrH6z .inner-container {
    width: 100% !important;
  }
}
.cid-s6TPevrH6z .section-text DIV {
  text-align: center;
}
.cid-s6TPevBAwz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6TPevBAwz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s6TPevBAwz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s6TPevBAwz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s6TPevBAwz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s6TPevBAwz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-s6TPevBAwz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-s6TPevBAwz .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-s6TPevBAwz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-s6TPevBAwz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-s6TPevRpSL {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s6TPevRpSL .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s6TPevRpSL div.b {
  padding-top: 2rem;
}
.cid-s6TPevRpSL H5 {
  color: #232323;
}
.cid-s6UjiPmtDV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6UjiPmtDV .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6UjiPmtDV .section-text {
  padding: 2rem 0;
}
.cid-s6UjiPmtDV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6UjiPmtDV .inner-container {
    width: 100% !important;
  }
}
.cid-v7tEhFunM7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7tEhFunM7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7tEhFunM7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tEhFunM7 .row {
  justify-content: center;
}
.cid-v7tEhFunM7 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7tEhFunM7 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7tEhFunM7 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7tEhFunM7 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7tEhFunM7 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7tEhFunM7 .mbr-text_1,
.cid-v7tEhFunM7 .mbr-text_2,
.cid-v7tEhFunM7 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7tEhFunM7 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tEhFunM7 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7tEhFunM7 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tEhFunM7 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tEhFunM7 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tEhFunM7 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7tEhFunM7 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7tEhFunM7 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tEhFunM7 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tEhFunM7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7tEhFunM7 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7tEhFunM7 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7tEhFunM7 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7tEiBGXOc {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7tEiBGXOc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7tEiBGXOc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tEiBGXOc .row {
  justify-content: center;
}
.cid-v7tEiBGXOc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7tEiBGXOc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7tEiBGXOc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7tEiBGXOc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7tEiBGXOc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7tEiBGXOc .mbr-text_1,
.cid-v7tEiBGXOc .mbr-text_2,
.cid-v7tEiBGXOc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7tEiBGXOc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tEiBGXOc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7tEiBGXOc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tEiBGXOc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tEiBGXOc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tEiBGXOc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7tEiBGXOc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7tEiBGXOc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tEiBGXOc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tEiBGXOc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7tEiBGXOc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7tEiBGXOc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7tEiBGXOc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s6UjiPPKQt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6UjiPPKQt .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6UjiPPKQt .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s6UjiPPKQt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6UjiPPKQt .inner-container {
    width: 100% !important;
  }
}
.cid-s6UjiPW5gR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6UjiPW5gR .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6UjiPW5gR .section-text {
  padding: 2rem 0;
}
.cid-s6UjiPW5gR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6UjiPW5gR .inner-container {
    width: 100% !important;
  }
}
.cid-s6UjiQ3UTO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6UjiQ3UTO .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6UjiQ3UTO .section-text {
  padding: 2rem 0;
}
.cid-s6UjiQ3UTO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6UjiQ3UTO .inner-container {
    width: 100% !important;
  }
}
.cid-s6UjiQ3UTO .section-text DIV {
  text-align: center;
}
.cid-svwkMlZXI4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svwkMlZXI4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svwkMlZXI4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svwkMlZXI4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svwkMlZXI4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svwkMlZXI4 .row > .row {
  display: block;
}
.cid-svwkMlZXI4 .mbr-gallery-item {
  width: 100%;
}
.cid-svwkMlZXI4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svwkMlZXI4 .mbr-gallery-item > div {
  position: relative;
}
.cid-svwkMlZXI4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svwkMlZXI4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-svwkMlZXI4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svwkMlZXI4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s6UjiQr3nd {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s6UjiQr3nd .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s6UjiQr3nd div.b {
  padding-top: 2rem;
}
.cid-s6UjiQr3nd H5 {
  color: #232323;
}
.cid-s6UkdpJOjm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6UkdpJOjm .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6UkdpJOjm .section-text {
  padding: 2rem 0;
}
.cid-s6UkdpJOjm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6UkdpJOjm .inner-container {
    width: 100% !important;
  }
}
.cid-v7tDEPYE5F {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7tDEPYE5F .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7tDEPYE5F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tDEPYE5F .row {
  justify-content: center;
}
.cid-v7tDEPYE5F .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7tDEPYE5F .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7tDEPYE5F .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7tDEPYE5F .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7tDEPYE5F .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7tDEPYE5F .mbr-text_1,
.cid-v7tDEPYE5F .mbr-text_2,
.cid-v7tDEPYE5F .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7tDEPYE5F .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tDEPYE5F .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7tDEPYE5F .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tDEPYE5F .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tDEPYE5F .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tDEPYE5F .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7tDEPYE5F .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7tDEPYE5F .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tDEPYE5F .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tDEPYE5F .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7tDEPYE5F .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7tDEPYE5F .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7tDEPYE5F .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7tDFyHjgd {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7tDFyHjgd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7tDFyHjgd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tDFyHjgd .row {
  justify-content: center;
}
.cid-v7tDFyHjgd .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7tDFyHjgd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7tDFyHjgd .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7tDFyHjgd .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7tDFyHjgd .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7tDFyHjgd .mbr-text_1,
.cid-v7tDFyHjgd .mbr-text_2,
.cid-v7tDFyHjgd .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7tDFyHjgd .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tDFyHjgd .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7tDFyHjgd .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tDFyHjgd .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tDFyHjgd .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tDFyHjgd .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7tDFyHjgd .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7tDFyHjgd .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tDFyHjgd .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tDFyHjgd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7tDFyHjgd .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7tDFyHjgd .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7tDFyHjgd .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s6Ukdq9Lp1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6Ukdq9Lp1 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6Ukdq9Lp1 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s6Ukdq9Lp1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6Ukdq9Lp1 .inner-container {
    width: 100% !important;
  }
}
.cid-s6Ukdqgr0l {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6Ukdqgr0l .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6Ukdqgr0l .section-text {
  padding: 2rem 0;
}
.cid-s6Ukdqgr0l .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6Ukdqgr0l .inner-container {
    width: 100% !important;
  }
}
.cid-s6Ukdqngir {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6Ukdqngir .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6Ukdqngir .section-text {
  padding: 2rem 0;
}
.cid-s6Ukdqngir .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6Ukdqngir .inner-container {
    width: 100% !important;
  }
}
.cid-s6Ukdqngir .section-text DIV {
  text-align: center;
}
.cid-s6UkdqI941 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s6UkdqI941 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s6UkdqI941 div.b {
  padding-top: 2rem;
}
.cid-s6UkdqI941 H5 {
  color: #232323;
}
.cid-s6UmFQAsmJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6UmFQAsmJ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6UmFQAsmJ .section-text {
  padding: 2rem 0;
}
.cid-s6UmFQAsmJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6UmFQAsmJ .inner-container {
    width: 100% !important;
  }
}
.cid-v7tFlF2pXL {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7tFlF2pXL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7tFlF2pXL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tFlF2pXL .row {
  justify-content: center;
}
.cid-v7tFlF2pXL .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7tFlF2pXL .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7tFlF2pXL .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7tFlF2pXL .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7tFlF2pXL .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7tFlF2pXL .mbr-text_1,
.cid-v7tFlF2pXL .mbr-text_2,
.cid-v7tFlF2pXL .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7tFlF2pXL .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tFlF2pXL .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7tFlF2pXL .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tFlF2pXL .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tFlF2pXL .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tFlF2pXL .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7tFlF2pXL .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7tFlF2pXL .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tFlF2pXL .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7tFlF2pXL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7tFlF2pXL .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7tFlF2pXL .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7tFlF2pXL .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7tFCB0Rut {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7tFCB0Rut .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7tFCB0Rut .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tFCB0Rut .row {
  justify-content: center;
}
.cid-v7tFCB0Rut .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7tFCB0Rut .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7tFCB0Rut .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7tFCB0Rut .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7tFCB0Rut .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7tFCB0Rut .mbr-text_1,
.cid-v7tFCB0Rut .mbr-text_2,
.cid-v7tFCB0Rut .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7tFCB0Rut .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tFCB0Rut .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7tFCB0Rut .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tFCB0Rut .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tFCB0Rut .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tFCB0Rut .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7tFCB0Rut .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7tFCB0Rut .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7tFCB0Rut .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7tFCB0Rut .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7tFCB0Rut .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7tFCB0Rut .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7tFCB0Rut .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s6UmFR05C5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6UmFR05C5 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6UmFR05C5 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-s6UmFR05C5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6UmFR05C5 .inner-container {
    width: 100% !important;
  }
}
.cid-s6UmFR7hrK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6UmFR7hrK .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6UmFR7hrK .section-text {
  padding: 2rem 0;
}
.cid-s6UmFR7hrK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6UmFR7hrK .inner-container {
    width: 100% !important;
  }
}
.cid-s6UmFRd89K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s6UmFRd89K .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6UmFRd89K .section-text {
  padding: 2rem 0;
}
.cid-s6UmFRd89K .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6UmFRd89K .inner-container {
    width: 100% !important;
  }
}
.cid-s6UmFRd89K .section-text DIV {
  text-align: center;
}
.cid-s6UmFRzmqF {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-s6UmFRzmqF .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s6UmFRzmqF div.b {
  padding-top: 2rem;
}
.cid-s6UmFRzmqF H5 {
  color: #232323;
}
.cid-s6ZwQLXasE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s6ZwQLXasE .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6ZwQLXasE .section-text {
  padding: 2rem 0;
}
.cid-s6ZwQLXasE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6ZwQLXasE .inner-container {
    width: 100% !important;
  }
}
.cid-v7vVMTnM7d {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7vVMTnM7d .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vVMTnM7d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vVMTnM7d .row {
  justify-content: center;
}
.cid-v7vVMTnM7d .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vVMTnM7d .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vVMTnM7d .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vVMTnM7d .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vVMTnM7d .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vVMTnM7d .mbr-text_1,
.cid-v7vVMTnM7d .mbr-text_2,
.cid-v7vVMTnM7d .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vVMTnM7d .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vVMTnM7d .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vVMTnM7d .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vVMTnM7d .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vVMTnM7d .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vVMTnM7d .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vVMTnM7d .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vVMTnM7d .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vVMTnM7d .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vVMTnM7d .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vVMTnM7d .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vVMTnM7d .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vVMTnM7d .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vVNUZb5Q {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7vVNUZb5Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vVNUZb5Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vVNUZb5Q .row {
  justify-content: center;
}
.cid-v7vVNUZb5Q .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vVNUZb5Q .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vVNUZb5Q .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vVNUZb5Q .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vVNUZb5Q .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vVNUZb5Q .mbr-text_1,
.cid-v7vVNUZb5Q .mbr-text_2,
.cid-v7vVNUZb5Q .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vVNUZb5Q .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vVNUZb5Q .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vVNUZb5Q .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vVNUZb5Q .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vVNUZb5Q .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vVNUZb5Q .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vVNUZb5Q .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vVNUZb5Q .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vVNUZb5Q .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vVNUZb5Q .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vVNUZb5Q .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vVNUZb5Q .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vVNUZb5Q .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s6ZwQMpLLW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s6ZwQMpLLW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s6ZwQMpLLW .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s6ZwQMpLLW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s6ZwQMpLLW .inner-container {
    width: 100% !important;
  }
}
.cid-s6ZwQN0D55 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s6ZwQN0D55 .mbr-section-subtitle {
  color: #767676;
}
.cid-s6ZwQN0D55 .container-table {
  margin: 0 auto;
}
.cid-s6ZwQN0D55 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s6ZwQN0D55 .dataTables_wrapper {
  display: block;
}
.cid-s6ZwQN0D55 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s6ZwQN0D55 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s6ZwQN0D55 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s6ZwQN0D55 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s6ZwQN0D55 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s6ZwQN0D55 table td {
  border-top: 1px solid #232323;
}
.cid-s6ZwQN0D55 table.table {
  background: #cccccc;
}
.cid-s6ZwQN0D55 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s6ZwQN0D55 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s6ZwQN0D55 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s6ZwQN0D55 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s6ZwQN0D55 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s6ZwQN0D55 .dataTables_filter {
    text-align: center;
  }
  .cid-s6ZwQN0D55 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s6ZwQN0D55 .mbr-section-title {
  color: #232323;
}
.cid-s6ZwQN0D55 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s6ZwQN0D55 .body-item {
  text-align: center;
}
.cid-s6ZwQNPiRo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s6ZwQNPiRo .mbr-section-subtitle {
  color: #767676;
}
.cid-s6ZwQNPiRo .container-table {
  margin: 0 auto;
}
.cid-s6ZwQNPiRo .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s6ZwQNPiRo .dataTables_wrapper {
  display: block;
}
.cid-s6ZwQNPiRo .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s6ZwQNPiRo .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s6ZwQNPiRo table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s6ZwQNPiRo table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s6ZwQNPiRo table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s6ZwQNPiRo table td {
  border-top: 1px solid #232323;
}
.cid-s6ZwQNPiRo table.table {
  background: #cccccc;
}
.cid-s6ZwQNPiRo .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s6ZwQNPiRo .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s6ZwQNPiRo .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s6ZwQNPiRo .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s6ZwQNPiRo .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s6ZwQNPiRo .dataTables_filter {
    text-align: center;
  }
  .cid-s6ZwQNPiRo .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s6ZwQNPiRo .mbr-section-title {
  color: #232323;
}
.cid-s6ZwQNPiRo .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s6ZwQNPiRo .body-item {
  text-align: center;
}
.cid-s6ZwQPnonp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s6ZwQPnonp .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s6ZwQPnonp div.b {
  padding-top: 2rem;
}
.cid-s6ZwQPnonp H5 {
  color: #232323;
}
.cid-s76D2Xvm7q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s76D2Xvm7q .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s76D2Xvm7q .section-text {
  padding: 2rem 0;
}
.cid-s76D2Xvm7q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s76D2Xvm7q .inner-container {
    width: 100% !important;
  }
}
.cid-v7y63onG2W {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #db4af7;
}
.cid-v7y63onG2W .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y63onG2W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y63onG2W .row {
  justify-content: center;
}
.cid-v7y63onG2W .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y63onG2W .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y63onG2W .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y63onG2W .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y63onG2W .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y63onG2W .mbr-text_1,
.cid-v7y63onG2W .mbr-text_2,
.cid-v7y63onG2W .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y63onG2W .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y63onG2W .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y63onG2W .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y63onG2W .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y63onG2W .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y63onG2W .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y63onG2W .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y63onG2W .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y63onG2W .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y63onG2W .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y63onG2W .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y63onG2W .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y63onG2W .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7y64eneBT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #db4af7;
}
.cid-v7y64eneBT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y64eneBT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y64eneBT .row {
  justify-content: center;
}
.cid-v7y64eneBT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y64eneBT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y64eneBT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y64eneBT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y64eneBT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y64eneBT .mbr-text_1,
.cid-v7y64eneBT .mbr-text_2,
.cid-v7y64eneBT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y64eneBT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y64eneBT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y64eneBT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y64eneBT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y64eneBT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y64eneBT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y64eneBT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y64eneBT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y64eneBT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y64eneBT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y64eneBT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y64eneBT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y64eneBT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s76D2XYl7M {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s76D2XYl7M .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s76D2XYl7M .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s76D2XYl7M .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s76D2XYl7M .inner-container {
    width: 100% !important;
  }
}
.cid-suP2ZwUjlC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #db4af7;
}
.cid-suP30C7EeR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-suP30C7EeR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suP30C7EeR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suP30C7EeR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suP30C7EeR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suP30C7EeR .row > .row {
  display: block;
}
.cid-suP30C7EeR .mbr-gallery-item {
  width: 100%;
}
.cid-suP30C7EeR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suP30C7EeR .mbr-gallery-item > div {
  position: relative;
}
.cid-suP30C7EeR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suP30C7EeR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suP30C7EeR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suP30C7EeR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s76D2Yqq7B {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #db4af7;
}
.cid-s76D2Yqq7B .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s76D2Yqq7B div.b {
  padding-top: 2rem;
}
.cid-s76D2Yqq7B H5 {
  color: #232323;
}
.cid-s76Dq7KyGM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s76Dq7KyGM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s76Dq7KyGM .section-text {
  padding: 2rem 0;
}
.cid-s76Dq7KyGM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s76Dq7KyGM .inner-container {
    width: 100% !important;
  }
}
.cid-v7y6kN2X2D {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #db4af7;
}
.cid-v7y6kN2X2D .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y6kN2X2D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y6kN2X2D .row {
  justify-content: center;
}
.cid-v7y6kN2X2D .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y6kN2X2D .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y6kN2X2D .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y6kN2X2D .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y6kN2X2D .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y6kN2X2D .mbr-text_1,
.cid-v7y6kN2X2D .mbr-text_2,
.cid-v7y6kN2X2D .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y6kN2X2D .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6kN2X2D .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y6kN2X2D .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y6kN2X2D .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y6kN2X2D .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6kN2X2D .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y6kN2X2D .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y6kN2X2D .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6kN2X2D .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y6kN2X2D .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y6kN2X2D .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y6kN2X2D .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y6kN2X2D .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7y6lKPeEN {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #db4af7;
}
.cid-v7y6lKPeEN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y6lKPeEN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y6lKPeEN .row {
  justify-content: center;
}
.cid-v7y6lKPeEN .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y6lKPeEN .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y6lKPeEN .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y6lKPeEN .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y6lKPeEN .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y6lKPeEN .mbr-text_1,
.cid-v7y6lKPeEN .mbr-text_2,
.cid-v7y6lKPeEN .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y6lKPeEN .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6lKPeEN .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y6lKPeEN .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y6lKPeEN .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y6lKPeEN .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6lKPeEN .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y6lKPeEN .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y6lKPeEN .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6lKPeEN .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y6lKPeEN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y6lKPeEN .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y6lKPeEN .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y6lKPeEN .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s76Dq8kGJg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s76Dq8kGJg .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s76Dq8kGJg .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s76Dq8kGJg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s76Dq8kGJg .inner-container {
    width: 100% !important;
  }
}
.cid-suP5jBDYRw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #db4af7;
}
.cid-suP5ms9fnU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-suP5ms9fnU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suP5ms9fnU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suP5ms9fnU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suP5ms9fnU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suP5ms9fnU .row > .row {
  display: block;
}
.cid-suP5ms9fnU .mbr-gallery-item {
  width: 100%;
}
.cid-suP5ms9fnU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suP5ms9fnU .mbr-gallery-item > div {
  position: relative;
}
.cid-suP5ms9fnU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suP5ms9fnU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suP5ms9fnU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suP5ms9fnU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8pc3x6iAP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s8pc3x6iAP .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s8pc3x6iAP .section-text {
  padding: 2rem 0;
}
.cid-s8pc3x6iAP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s8pc3x6iAP .inner-container {
    width: 100% !important;
  }
}
.cid-s8pc3x6iAP .section-text DIV {
  text-align: center;
}
.cid-s76Dq8SZNv {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #db4af7;
}
.cid-s76Dq8SZNv .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s76Dq8SZNv div.b {
  padding-top: 2rem;
}
.cid-s76Dq8SZNv H5 {
  color: #232323;
}
.cid-s76DF7VuYL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s76DF7VuYL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s76DF7VuYL .section-text {
  padding: 2rem 0;
}
.cid-s76DF7VuYL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s76DF7VuYL .inner-container {
    width: 100% !important;
  }
}
.cid-v7y6yv0vBK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #db4af7;
}
.cid-v7y6yv0vBK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y6yv0vBK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y6yv0vBK .row {
  justify-content: center;
}
.cid-v7y6yv0vBK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y6yv0vBK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y6yv0vBK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y6yv0vBK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y6yv0vBK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y6yv0vBK .mbr-text_1,
.cid-v7y6yv0vBK .mbr-text_2,
.cid-v7y6yv0vBK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y6yv0vBK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6yv0vBK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y6yv0vBK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y6yv0vBK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y6yv0vBK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6yv0vBK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y6yv0vBK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y6yv0vBK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6yv0vBK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y6yv0vBK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y6yv0vBK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y6yv0vBK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y6yv0vBK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7y6zicu5t {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #db4af7;
}
.cid-v7y6zicu5t .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y6zicu5t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y6zicu5t .row {
  justify-content: center;
}
.cid-v7y6zicu5t .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y6zicu5t .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y6zicu5t .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y6zicu5t .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y6zicu5t .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y6zicu5t .mbr-text_1,
.cid-v7y6zicu5t .mbr-text_2,
.cid-v7y6zicu5t .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y6zicu5t .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6zicu5t .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y6zicu5t .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y6zicu5t .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y6zicu5t .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6zicu5t .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y6zicu5t .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y6zicu5t .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6zicu5t .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y6zicu5t .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y6zicu5t .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y6zicu5t .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y6zicu5t .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s76DF8tkF9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s76DF8tkF9 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s76DF8tkF9 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s76DF8tkF9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s76DF8tkF9 .inner-container {
    width: 100% !important;
  }
}
.cid-suP6HMMrHc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #db4af7;
}
.cid-suP6SUOQS5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-suP6SUOQS5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suP6SUOQS5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suP6SUOQS5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suP6SUOQS5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suP6SUOQS5 .row > .row {
  display: block;
}
.cid-suP6SUOQS5 .mbr-gallery-item {
  width: 100%;
}
.cid-suP6SUOQS5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suP6SUOQS5 .mbr-gallery-item > div {
  position: relative;
}
.cid-suP6SUOQS5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suP6SUOQS5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suP6SUOQS5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suP6SUOQS5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-s8pho4rrIG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-s8pho4rrIG .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s8pho4rrIG .section-text {
  padding: 2rem 0;
}
.cid-s8pho4rrIG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s8pho4rrIG .inner-container {
    width: 100% !important;
  }
}
.cid-s8pho4rrIG .section-text DIV {
  text-align: center;
}
.cid-s76DF8Wd5C {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #db4af7;
}
.cid-s76DF8Wd5C .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s76DF8Wd5C div.b {
  padding-top: 2rem;
}
.cid-s76DF8Wd5C H5 {
  color: #232323;
}
.cid-s76JwISZND {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s76JwISZND .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s76JwISZND .section-text {
  padding: 2rem 0;
}
.cid-s76JwISZND .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s76JwISZND .inner-container {
    width: 100% !important;
  }
}
.cid-v7vWlOXx3q {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7vWlOXx3q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vWlOXx3q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vWlOXx3q .row {
  justify-content: center;
}
.cid-v7vWlOXx3q .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vWlOXx3q .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vWlOXx3q .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vWlOXx3q .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vWlOXx3q .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vWlOXx3q .mbr-text_1,
.cid-v7vWlOXx3q .mbr-text_2,
.cid-v7vWlOXx3q .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vWlOXx3q .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWlOXx3q .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vWlOXx3q .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vWlOXx3q .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vWlOXx3q .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWlOXx3q .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vWlOXx3q .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vWlOXx3q .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWlOXx3q .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vWlOXx3q .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vWlOXx3q .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vWlOXx3q .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vWlOXx3q .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vWmSf3gQ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7vWmSf3gQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vWmSf3gQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vWmSf3gQ .row {
  justify-content: center;
}
.cid-v7vWmSf3gQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vWmSf3gQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vWmSf3gQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vWmSf3gQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vWmSf3gQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vWmSf3gQ .mbr-text_1,
.cid-v7vWmSf3gQ .mbr-text_2,
.cid-v7vWmSf3gQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vWmSf3gQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWmSf3gQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vWmSf3gQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vWmSf3gQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vWmSf3gQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWmSf3gQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vWmSf3gQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vWmSf3gQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWmSf3gQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vWmSf3gQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vWmSf3gQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vWmSf3gQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vWmSf3gQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s76JwJj4cJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s76JwJj4cJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s76JwJj4cJ .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s76JwJj4cJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s76JwJj4cJ .inner-container {
    width: 100% !important;
  }
}
.cid-s76JwJqZ97 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s76JwJqZ97 .mbr-section-subtitle {
  color: #767676;
}
.cid-s76JwJqZ97 .container-table {
  margin: 0 auto;
}
.cid-s76JwJqZ97 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s76JwJqZ97 .dataTables_wrapper {
  display: block;
}
.cid-s76JwJqZ97 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s76JwJqZ97 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s76JwJqZ97 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s76JwJqZ97 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s76JwJqZ97 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s76JwJqZ97 table td {
  border-top: 1px solid #232323;
}
.cid-s76JwJqZ97 table.table {
  background: #cccccc;
}
.cid-s76JwJqZ97 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s76JwJqZ97 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s76JwJqZ97 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s76JwJqZ97 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s76JwJqZ97 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s76JwJqZ97 .dataTables_filter {
    text-align: center;
  }
  .cid-s76JwJqZ97 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s76JwJqZ97 .mbr-section-title {
  color: #232323;
}
.cid-s76JwJqZ97 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s76JwJqZ97 .body-item {
  text-align: center;
}
.cid-s76JwKrw4T {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s76JwKrw4T .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s76JwKrw4T div.b {
  padding-top: 2rem;
}
.cid-s76JwKrw4T H5 {
  color: #232323;
}
.cid-s76KqYVQev {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s76KqYVQev .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s76KqYVQev .section-text {
  padding: 2rem 0;
}
.cid-s76KqYVQev .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s76KqYVQev .inner-container {
    width: 100% !important;
  }
}
.cid-v7vWAXjNqu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7vWAXjNqu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vWAXjNqu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vWAXjNqu .row {
  justify-content: center;
}
.cid-v7vWAXjNqu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vWAXjNqu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vWAXjNqu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vWAXjNqu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vWAXjNqu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vWAXjNqu .mbr-text_1,
.cid-v7vWAXjNqu .mbr-text_2,
.cid-v7vWAXjNqu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vWAXjNqu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWAXjNqu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vWAXjNqu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vWAXjNqu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vWAXjNqu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWAXjNqu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vWAXjNqu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vWAXjNqu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWAXjNqu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vWAXjNqu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vWAXjNqu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vWAXjNqu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vWAXjNqu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vWBW3qtF {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7vWBW3qtF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vWBW3qtF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vWBW3qtF .row {
  justify-content: center;
}
.cid-v7vWBW3qtF .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vWBW3qtF .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vWBW3qtF .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vWBW3qtF .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vWBW3qtF .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vWBW3qtF .mbr-text_1,
.cid-v7vWBW3qtF .mbr-text_2,
.cid-v7vWBW3qtF .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vWBW3qtF .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWBW3qtF .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vWBW3qtF .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vWBW3qtF .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vWBW3qtF .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWBW3qtF .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vWBW3qtF .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vWBW3qtF .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWBW3qtF .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vWBW3qtF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vWBW3qtF .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vWBW3qtF .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vWBW3qtF .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s76KqZlsip {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s76KqZlsip .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s76KqZlsip .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s76KqZlsip .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s76KqZlsip .inner-container {
    width: 100% !important;
  }
}
.cid-s76KqZsTs1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s76KqZsTs1 .mbr-section-subtitle {
  color: #767676;
}
.cid-s76KqZsTs1 .container-table {
  margin: 0 auto;
}
.cid-s76KqZsTs1 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s76KqZsTs1 .dataTables_wrapper {
  display: block;
}
.cid-s76KqZsTs1 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s76KqZsTs1 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s76KqZsTs1 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s76KqZsTs1 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s76KqZsTs1 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s76KqZsTs1 table td {
  border-top: 1px solid #232323;
}
.cid-s76KqZsTs1 table.table {
  background: #cccccc;
}
.cid-s76KqZsTs1 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s76KqZsTs1 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s76KqZsTs1 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s76KqZsTs1 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s76KqZsTs1 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s76KqZsTs1 .dataTables_filter {
    text-align: center;
  }
  .cid-s76KqZsTs1 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s76KqZsTs1 .mbr-section-title {
  color: #232323;
}
.cid-s76KqZsTs1 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s76KqZsTs1 .body-item {
  text-align: center;
}
.cid-s76KqZR5nq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s76KqZR5nq .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s76KqZR5nq div.b {
  padding-top: 2rem;
}
.cid-s76KqZR5nq H5 {
  color: #232323;
}
.cid-s76L4gyYuJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s76L4gyYuJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s76L4gyYuJ .section-text {
  padding: 2rem 0;
}
.cid-s76L4gyYuJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s76L4gyYuJ .inner-container {
    width: 100% !important;
  }
}
.cid-v7vWPZ0MEs {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7vWPZ0MEs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vWPZ0MEs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vWPZ0MEs .row {
  justify-content: center;
}
.cid-v7vWPZ0MEs .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vWPZ0MEs .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vWPZ0MEs .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vWPZ0MEs .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vWPZ0MEs .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vWPZ0MEs .mbr-text_1,
.cid-v7vWPZ0MEs .mbr-text_2,
.cid-v7vWPZ0MEs .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vWPZ0MEs .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWPZ0MEs .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vWPZ0MEs .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vWPZ0MEs .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vWPZ0MEs .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWPZ0MEs .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vWPZ0MEs .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vWPZ0MEs .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWPZ0MEs .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vWPZ0MEs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vWPZ0MEs .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vWPZ0MEs .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vWPZ0MEs .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vWQPYGmD {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7vWQPYGmD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vWQPYGmD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vWQPYGmD .row {
  justify-content: center;
}
.cid-v7vWQPYGmD .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vWQPYGmD .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vWQPYGmD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vWQPYGmD .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vWQPYGmD .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vWQPYGmD .mbr-text_1,
.cid-v7vWQPYGmD .mbr-text_2,
.cid-v7vWQPYGmD .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vWQPYGmD .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWQPYGmD .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vWQPYGmD .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vWQPYGmD .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vWQPYGmD .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWQPYGmD .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vWQPYGmD .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vWQPYGmD .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vWQPYGmD .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vWQPYGmD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vWQPYGmD .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vWQPYGmD .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vWQPYGmD .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s76L4gX7nA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s76L4gX7nA .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s76L4gX7nA .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s76L4gX7nA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s76L4gX7nA .inner-container {
    width: 100% !important;
  }
}
.cid-s76L4h3FZq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s76L4h3FZq .mbr-section-subtitle {
  color: #767676;
}
.cid-s76L4h3FZq .container-table {
  margin: 0 auto;
}
.cid-s76L4h3FZq .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s76L4h3FZq .dataTables_wrapper {
  display: block;
}
.cid-s76L4h3FZq .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s76L4h3FZq .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s76L4h3FZq table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s76L4h3FZq table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s76L4h3FZq table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s76L4h3FZq table td {
  border-top: 1px solid #232323;
}
.cid-s76L4h3FZq table.table {
  background: #cccccc;
}
.cid-s76L4h3FZq .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s76L4h3FZq .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s76L4h3FZq .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s76L4h3FZq .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s76L4h3FZq .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s76L4h3FZq .dataTables_filter {
    text-align: center;
  }
  .cid-s76L4h3FZq .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s76L4h3FZq .mbr-section-title {
  color: #232323;
}
.cid-s76L4h3FZq .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s76L4h3FZq .body-item {
  text-align: center;
}
.cid-s76L4hz0A5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s76L4hz0A5 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s76L4hz0A5 div.b {
  padding-top: 2rem;
}
.cid-s76L4hz0A5 H5 {
  color: #232323;
}
.cid-s7bUVZUkda {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7bUVZUkda .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7bUVZUkda .section-text {
  padding: 2rem 0;
}
.cid-s7bUVZUkda .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7bUVZUkda .inner-container {
    width: 100% !important;
  }
}
.cid-v7vXPCFj19 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7vXPCFj19 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vXPCFj19 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vXPCFj19 .row {
  justify-content: center;
}
.cid-v7vXPCFj19 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vXPCFj19 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vXPCFj19 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vXPCFj19 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vXPCFj19 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vXPCFj19 .mbr-text_1,
.cid-v7vXPCFj19 .mbr-text_2,
.cid-v7vXPCFj19 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vXPCFj19 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vXPCFj19 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vXPCFj19 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vXPCFj19 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vXPCFj19 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vXPCFj19 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vXPCFj19 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vXPCFj19 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vXPCFj19 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vXPCFj19 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vXPCFj19 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vXPCFj19 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vXPCFj19 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vXQlO832 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7vXQlO832 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vXQlO832 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vXQlO832 .row {
  justify-content: center;
}
.cid-v7vXQlO832 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vXQlO832 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vXQlO832 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vXQlO832 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vXQlO832 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vXQlO832 .mbr-text_1,
.cid-v7vXQlO832 .mbr-text_2,
.cid-v7vXQlO832 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vXQlO832 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vXQlO832 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vXQlO832 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vXQlO832 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vXQlO832 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vXQlO832 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vXQlO832 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vXQlO832 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vXQlO832 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vXQlO832 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vXQlO832 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vXQlO832 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vXQlO832 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7bUW0tKCi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7bUW0tKCi .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7bUW0tKCi .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7bUW0tKCi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7bUW0tKCi .inner-container {
    width: 100% !important;
  }
}
.cid-s7bUW0AoOa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7bUW0AoOa .mbr-section-subtitle {
  color: #767676;
}
.cid-s7bUW0AoOa .container-table {
  margin: 0 auto;
}
.cid-s7bUW0AoOa .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7bUW0AoOa .dataTables_wrapper {
  display: block;
}
.cid-s7bUW0AoOa .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7bUW0AoOa .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7bUW0AoOa table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7bUW0AoOa table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7bUW0AoOa table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7bUW0AoOa table td {
  border-top: 1px solid #232323;
}
.cid-s7bUW0AoOa table.table {
  background: #cccccc;
}
.cid-s7bUW0AoOa .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7bUW0AoOa .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7bUW0AoOa .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7bUW0AoOa .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7bUW0AoOa .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7bUW0AoOa .dataTables_filter {
    text-align: center;
  }
  .cid-s7bUW0AoOa .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7bUW0AoOa .mbr-section-title {
  color: #232323;
}
.cid-s7bUW0AoOa .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7bUW0AoOa .body-item {
  text-align: center;
}
.cid-s7bUW17d2C {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7bUW17d2C .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7bUW17d2C div.b {
  padding-top: 2rem;
}
.cid-s7bUW17d2C H5 {
  color: #232323;
}
.cid-s7c1BGHbUB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7c1BGHbUB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7c1BGHbUB .section-text {
  padding: 2rem 0;
}
.cid-s7c1BGHbUB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7c1BGHbUB .inner-container {
    width: 100% !important;
  }
}
.cid-v7vY8H9kkK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7vY8H9kkK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vY8H9kkK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vY8H9kkK .row {
  justify-content: center;
}
.cid-v7vY8H9kkK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vY8H9kkK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vY8H9kkK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vY8H9kkK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vY8H9kkK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vY8H9kkK .mbr-text_1,
.cid-v7vY8H9kkK .mbr-text_2,
.cid-v7vY8H9kkK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vY8H9kkK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vY8H9kkK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vY8H9kkK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vY8H9kkK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vY8H9kkK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vY8H9kkK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vY8H9kkK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vY8H9kkK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vY8H9kkK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vY8H9kkK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vY8H9kkK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vY8H9kkK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vY8H9kkK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vY9tif6D {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7vY9tif6D .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vY9tif6D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vY9tif6D .row {
  justify-content: center;
}
.cid-v7vY9tif6D .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vY9tif6D .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vY9tif6D .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vY9tif6D .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vY9tif6D .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vY9tif6D .mbr-text_1,
.cid-v7vY9tif6D .mbr-text_2,
.cid-v7vY9tif6D .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vY9tif6D .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vY9tif6D .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vY9tif6D .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vY9tif6D .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vY9tif6D .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vY9tif6D .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vY9tif6D .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vY9tif6D .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vY9tif6D .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vY9tif6D .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vY9tif6D .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vY9tif6D .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vY9tif6D .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7c1BHb4CL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7c1BHb4CL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7c1BHb4CL .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7c1BHb4CL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7c1BHb4CL .inner-container {
    width: 100% !important;
  }
}
.cid-s7c1BHizl2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7c1BHizl2 .mbr-section-subtitle {
  color: #767676;
}
.cid-s7c1BHizl2 .container-table {
  margin: 0 auto;
}
.cid-s7c1BHizl2 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7c1BHizl2 .dataTables_wrapper {
  display: block;
}
.cid-s7c1BHizl2 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7c1BHizl2 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7c1BHizl2 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7c1BHizl2 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7c1BHizl2 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7c1BHizl2 table td {
  border-top: 1px solid #232323;
}
.cid-s7c1BHizl2 table.table {
  background: #cccccc;
}
.cid-s7c1BHizl2 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7c1BHizl2 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7c1BHizl2 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7c1BHizl2 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7c1BHizl2 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7c1BHizl2 .dataTables_filter {
    text-align: center;
  }
  .cid-s7c1BHizl2 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7c1BHizl2 .mbr-section-title {
  color: #232323;
}
.cid-s7c1BHizl2 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7c1BHizl2 .body-item {
  text-align: center;
}
.cid-s7c1BIf4ko {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7c1BIf4ko .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7c1BIf4ko div.b {
  padding-top: 2rem;
}
.cid-s7c1BIf4ko H5 {
  color: #232323;
}
.cid-s7nyULKZ8A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7nyULKZ8A .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7nyULKZ8A .section-text {
  padding: 2rem 0;
}
.cid-s7nyULKZ8A .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7nyULKZ8A .inner-container {
    width: 100% !important;
  }
}
.cid-v7vYkIMvDW {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7vYkIMvDW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vYkIMvDW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vYkIMvDW .row {
  justify-content: center;
}
.cid-v7vYkIMvDW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vYkIMvDW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vYkIMvDW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vYkIMvDW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vYkIMvDW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vYkIMvDW .mbr-text_1,
.cid-v7vYkIMvDW .mbr-text_2,
.cid-v7vYkIMvDW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vYkIMvDW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYkIMvDW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vYkIMvDW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vYkIMvDW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vYkIMvDW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYkIMvDW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vYkIMvDW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vYkIMvDW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYkIMvDW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vYkIMvDW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vYkIMvDW .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vYkIMvDW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vYkIMvDW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vYlqH2Cg {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7vYlqH2Cg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vYlqH2Cg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vYlqH2Cg .row {
  justify-content: center;
}
.cid-v7vYlqH2Cg .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vYlqH2Cg .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vYlqH2Cg .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vYlqH2Cg .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vYlqH2Cg .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vYlqH2Cg .mbr-text_1,
.cid-v7vYlqH2Cg .mbr-text_2,
.cid-v7vYlqH2Cg .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vYlqH2Cg .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYlqH2Cg .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vYlqH2Cg .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vYlqH2Cg .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vYlqH2Cg .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYlqH2Cg .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vYlqH2Cg .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vYlqH2Cg .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYlqH2Cg .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vYlqH2Cg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vYlqH2Cg .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vYlqH2Cg .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vYlqH2Cg .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7nyUMeAOg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7nyUMeAOg .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7nyUMeAOg .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7nyUMeAOg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7nyUMeAOg .inner-container {
    width: 100% !important;
  }
}
.cid-s7nyUMnbku {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7nyUMnbku .mbr-section-subtitle {
  color: #767676;
}
.cid-s7nyUMnbku .container-table {
  margin: 0 auto;
}
.cid-s7nyUMnbku .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7nyUMnbku .dataTables_wrapper {
  display: block;
}
.cid-s7nyUMnbku .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7nyUMnbku .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7nyUMnbku table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7nyUMnbku table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7nyUMnbku table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7nyUMnbku table td {
  border-top: 1px solid #232323;
}
.cid-s7nyUMnbku table.table {
  background: #cccccc;
}
.cid-s7nyUMnbku .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7nyUMnbku .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7nyUMnbku .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7nyUMnbku .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7nyUMnbku .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7nyUMnbku .dataTables_filter {
    text-align: center;
  }
  .cid-s7nyUMnbku .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7nyUMnbku .mbr-section-title {
  color: #232323;
}
.cid-s7nyUMnbku .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7nyUMnbku .body-item {
  text-align: center;
}
.cid-s7nyUNuEvz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7nyUNuEvz .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7nyUNuEvz div.b {
  padding-top: 2rem;
}
.cid-s7nyUNuEvz H5 {
  color: #232323;
}
.cid-s7nzZYL8wL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7nzZYL8wL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7nzZYL8wL .section-text {
  padding: 2rem 0;
}
.cid-s7nzZYL8wL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7nzZYL8wL .inner-container {
    width: 100% !important;
  }
}
.cid-v7vYwOoQrR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7vYwOoQrR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vYwOoQrR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vYwOoQrR .row {
  justify-content: center;
}
.cid-v7vYwOoQrR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vYwOoQrR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vYwOoQrR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vYwOoQrR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vYwOoQrR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vYwOoQrR .mbr-text_1,
.cid-v7vYwOoQrR .mbr-text_2,
.cid-v7vYwOoQrR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vYwOoQrR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYwOoQrR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vYwOoQrR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vYwOoQrR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vYwOoQrR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYwOoQrR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vYwOoQrR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vYwOoQrR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYwOoQrR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vYwOoQrR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vYwOoQrR .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vYwOoQrR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vYwOoQrR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vYxFhsA6 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7vYxFhsA6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vYxFhsA6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vYxFhsA6 .row {
  justify-content: center;
}
.cid-v7vYxFhsA6 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vYxFhsA6 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vYxFhsA6 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vYxFhsA6 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vYxFhsA6 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vYxFhsA6 .mbr-text_1,
.cid-v7vYxFhsA6 .mbr-text_2,
.cid-v7vYxFhsA6 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vYxFhsA6 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYxFhsA6 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vYxFhsA6 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vYxFhsA6 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vYxFhsA6 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYxFhsA6 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vYxFhsA6 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vYxFhsA6 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYxFhsA6 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vYxFhsA6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vYxFhsA6 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vYxFhsA6 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vYxFhsA6 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7nzZZh3KB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7nzZZh3KB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7nzZZh3KB .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7nzZZh3KB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7nzZZh3KB .inner-container {
    width: 100% !important;
  }
}
.cid-s7nzZZpkqq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7nzZZpkqq .mbr-section-subtitle {
  color: #767676;
}
.cid-s7nzZZpkqq .container-table {
  margin: 0 auto;
}
.cid-s7nzZZpkqq .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7nzZZpkqq .dataTables_wrapper {
  display: block;
}
.cid-s7nzZZpkqq .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7nzZZpkqq .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7nzZZpkqq table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7nzZZpkqq table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7nzZZpkqq table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7nzZZpkqq table td {
  border-top: 1px solid #232323;
}
.cid-s7nzZZpkqq table.table {
  background: #cccccc;
}
.cid-s7nzZZpkqq .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7nzZZpkqq .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7nzZZpkqq .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7nzZZpkqq .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7nzZZpkqq .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7nzZZpkqq .dataTables_filter {
    text-align: center;
  }
  .cid-s7nzZZpkqq .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7nzZZpkqq .mbr-section-title {
  color: #232323;
}
.cid-s7nzZZpkqq .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7nzZZpkqq .body-item {
  text-align: center;
}
.cid-s7nzZZNE9h {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7nzZZNE9h .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7nzZZNE9h div.b {
  padding-top: 2rem;
}
.cid-s7nzZZNE9h H5 {
  color: #232323;
}
.cid-s7nAIEbPAI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7nAIEbPAI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7nAIEbPAI .section-text {
  padding: 2rem 0;
}
.cid-s7nAIEbPAI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7nAIEbPAI .inner-container {
    width: 100% !important;
  }
}
.cid-v7vYPDoPqv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7vYPDoPqv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vYPDoPqv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vYPDoPqv .row {
  justify-content: center;
}
.cid-v7vYPDoPqv .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vYPDoPqv .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vYPDoPqv .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vYPDoPqv .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vYPDoPqv .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vYPDoPqv .mbr-text_1,
.cid-v7vYPDoPqv .mbr-text_2,
.cid-v7vYPDoPqv .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vYPDoPqv .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYPDoPqv .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vYPDoPqv .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vYPDoPqv .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vYPDoPqv .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYPDoPqv .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vYPDoPqv .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vYPDoPqv .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYPDoPqv .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vYPDoPqv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vYPDoPqv .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vYPDoPqv .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vYPDoPqv .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vYQr3XhX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7vYQr3XhX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vYQr3XhX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vYQr3XhX .row {
  justify-content: center;
}
.cid-v7vYQr3XhX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vYQr3XhX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vYQr3XhX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vYQr3XhX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vYQr3XhX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vYQr3XhX .mbr-text_1,
.cid-v7vYQr3XhX .mbr-text_2,
.cid-v7vYQr3XhX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vYQr3XhX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYQr3XhX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vYQr3XhX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vYQr3XhX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vYQr3XhX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYQr3XhX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vYQr3XhX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vYQr3XhX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vYQr3XhX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vYQr3XhX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vYQr3XhX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vYQr3XhX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vYQr3XhX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7nAIEGZjK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7nAIEGZjK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7nAIEGZjK .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7nAIEGZjK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7nAIEGZjK .inner-container {
    width: 100% !important;
  }
}
.cid-s7nAIEOS5I {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7nAIEOS5I .mbr-section-subtitle {
  color: #767676;
}
.cid-s7nAIEOS5I .container-table {
  margin: 0 auto;
}
.cid-s7nAIEOS5I .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7nAIEOS5I .dataTables_wrapper {
  display: block;
}
.cid-s7nAIEOS5I .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7nAIEOS5I .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7nAIEOS5I table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7nAIEOS5I table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7nAIEOS5I table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7nAIEOS5I table td {
  border-top: 1px solid #232323;
}
.cid-s7nAIEOS5I table.table {
  background: #cccccc;
}
.cid-s7nAIEOS5I .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7nAIEOS5I .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7nAIEOS5I .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7nAIEOS5I .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7nAIEOS5I .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7nAIEOS5I .dataTables_filter {
    text-align: center;
  }
  .cid-s7nAIEOS5I .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7nAIEOS5I .mbr-section-title {
  color: #232323;
}
.cid-s7nAIEOS5I .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7nAIEOS5I .body-item {
  text-align: center;
}
.cid-s7nAIFfmVh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7nAIFfmVh .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7nAIFfmVh div.b {
  padding-top: 2rem;
}
.cid-s7nAIFfmVh H5 {
  color: #232323;
}
.cid-s7wUKshEL9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wUKshEL9 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7wUKshEL9 .section-text {
  padding: 2rem 0;
}
.cid-s7wUKshEL9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7wUKshEL9 .inner-container {
    width: 100% !important;
  }
}
.cid-v7xTmIdyOH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xTmIdyOH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xTmIdyOH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xTmIdyOH .row {
  justify-content: center;
}
.cid-v7xTmIdyOH .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xTmIdyOH .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xTmIdyOH .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xTmIdyOH .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xTmIdyOH .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xTmIdyOH .mbr-text_1,
.cid-v7xTmIdyOH .mbr-text_2,
.cid-v7xTmIdyOH .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xTmIdyOH .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTmIdyOH .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xTmIdyOH .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xTmIdyOH .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xTmIdyOH .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTmIdyOH .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xTmIdyOH .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xTmIdyOH .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTmIdyOH .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xTmIdyOH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xTmIdyOH .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xTmIdyOH .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xTmIdyOH .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xTfbPOp4 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xTfbPOp4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xTfbPOp4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xTfbPOp4 .row {
  justify-content: center;
}
.cid-v7xTfbPOp4 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xTfbPOp4 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xTfbPOp4 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xTfbPOp4 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xTfbPOp4 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xTfbPOp4 .mbr-text_1,
.cid-v7xTfbPOp4 .mbr-text_2,
.cid-v7xTfbPOp4 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xTfbPOp4 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTfbPOp4 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xTfbPOp4 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xTfbPOp4 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xTfbPOp4 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTfbPOp4 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xTfbPOp4 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xTfbPOp4 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTfbPOp4 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xTfbPOp4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xTfbPOp4 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xTfbPOp4 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xTfbPOp4 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7wUKsL9kD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wUKsL9kD .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7wUKsL9kD .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7wUKsL9kD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7wUKsL9kD .inner-container {
    width: 100% !important;
  }
}
.cid-s7wUKsS3wB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wUKsS3wB .mbr-section-subtitle {
  color: #767676;
}
.cid-s7wUKsS3wB .container-table {
  margin: 0 auto;
}
.cid-s7wUKsS3wB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7wUKsS3wB .dataTables_wrapper {
  display: block;
}
.cid-s7wUKsS3wB .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7wUKsS3wB .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7wUKsS3wB table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7wUKsS3wB table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7wUKsS3wB table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7wUKsS3wB table td {
  border-top: 1px solid #232323;
}
.cid-s7wUKsS3wB table.table {
  background: #cccccc;
}
.cid-s7wUKsS3wB .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7wUKsS3wB .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7wUKsS3wB .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7wUKsS3wB .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7wUKsS3wB .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7wUKsS3wB .dataTables_filter {
    text-align: center;
  }
  .cid-s7wUKsS3wB .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7wUKsS3wB .mbr-section-title {
  color: #232323;
}
.cid-s7wUKsS3wB .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7wUKsS3wB .body-item {
  text-align: center;
}
.cid-s7wUKtzjfL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wUKtzjfL .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7wUKtzjfL div.b {
  padding-top: 2rem;
}
.cid-s7wUKtzjfL H5 {
  color: #232323;
}
.cid-s7wVLv2MDl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wVLv2MDl .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7wVLv2MDl .section-text {
  padding: 2rem 0;
}
.cid-s7wVLv2MDl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7wVLv2MDl .inner-container {
    width: 100% !important;
  }
}
.cid-v7xTCcLhxY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xTCcLhxY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xTCcLhxY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xTCcLhxY .row {
  justify-content: center;
}
.cid-v7xTCcLhxY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xTCcLhxY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xTCcLhxY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xTCcLhxY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xTCcLhxY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xTCcLhxY .mbr-text_1,
.cid-v7xTCcLhxY .mbr-text_2,
.cid-v7xTCcLhxY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xTCcLhxY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTCcLhxY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xTCcLhxY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xTCcLhxY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xTCcLhxY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTCcLhxY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xTCcLhxY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xTCcLhxY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTCcLhxY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xTCcLhxY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xTCcLhxY .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xTCcLhxY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xTCcLhxY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xTD6AuK2 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xTD6AuK2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xTD6AuK2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xTD6AuK2 .row {
  justify-content: center;
}
.cid-v7xTD6AuK2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xTD6AuK2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xTD6AuK2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xTD6AuK2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xTD6AuK2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xTD6AuK2 .mbr-text_1,
.cid-v7xTD6AuK2 .mbr-text_2,
.cid-v7xTD6AuK2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xTD6AuK2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTD6AuK2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xTD6AuK2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xTD6AuK2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xTD6AuK2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTD6AuK2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xTD6AuK2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xTD6AuK2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTD6AuK2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xTD6AuK2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xTD6AuK2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xTD6AuK2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xTD6AuK2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7wVLvxonn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wVLvxonn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7wVLvxonn .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7wVLvxonn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7wVLvxonn .inner-container {
    width: 100% !important;
  }
}
.cid-s7wVLvElmJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wVLvElmJ .mbr-section-subtitle {
  color: #767676;
}
.cid-s7wVLvElmJ .container-table {
  margin: 0 auto;
}
.cid-s7wVLvElmJ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7wVLvElmJ .dataTables_wrapper {
  display: block;
}
.cid-s7wVLvElmJ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7wVLvElmJ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7wVLvElmJ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7wVLvElmJ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7wVLvElmJ table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7wVLvElmJ table td {
  border-top: 1px solid #232323;
}
.cid-s7wVLvElmJ table.table {
  background: #cccccc;
}
.cid-s7wVLvElmJ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7wVLvElmJ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7wVLvElmJ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7wVLvElmJ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7wVLvElmJ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7wVLvElmJ .dataTables_filter {
    text-align: center;
  }
  .cid-s7wVLvElmJ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7wVLvElmJ .mbr-section-title {
  color: #232323;
}
.cid-s7wVLvElmJ .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7wVLvElmJ .body-item {
  text-align: center;
}
.cid-s7wVLw3Cay {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wVLw3Cay .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7wVLw3Cay div.b {
  padding-top: 2rem;
}
.cid-s7wVLw3Cay H5 {
  color: #232323;
}
.cid-s7wWDoIqbQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wWDoIqbQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7wWDoIqbQ .section-text {
  padding: 2rem 0;
}
.cid-s7wWDoIqbQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7wWDoIqbQ .inner-container {
    width: 100% !important;
  }
}
.cid-v7xTXuW6pX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xTXuW6pX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xTXuW6pX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xTXuW6pX .row {
  justify-content: center;
}
.cid-v7xTXuW6pX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xTXuW6pX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xTXuW6pX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xTXuW6pX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xTXuW6pX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xTXuW6pX .mbr-text_1,
.cid-v7xTXuW6pX .mbr-text_2,
.cid-v7xTXuW6pX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xTXuW6pX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTXuW6pX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xTXuW6pX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xTXuW6pX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xTXuW6pX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTXuW6pX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xTXuW6pX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xTXuW6pX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTXuW6pX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xTXuW6pX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xTXuW6pX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xTXuW6pX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xTXuW6pX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xTYA3H0z {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xTYA3H0z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xTYA3H0z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xTYA3H0z .row {
  justify-content: center;
}
.cid-v7xTYA3H0z .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xTYA3H0z .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xTYA3H0z .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xTYA3H0z .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xTYA3H0z .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xTYA3H0z .mbr-text_1,
.cid-v7xTYA3H0z .mbr-text_2,
.cid-v7xTYA3H0z .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xTYA3H0z .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTYA3H0z .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xTYA3H0z .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xTYA3H0z .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xTYA3H0z .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTYA3H0z .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xTYA3H0z .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xTYA3H0z .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xTYA3H0z .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xTYA3H0z .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xTYA3H0z .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xTYA3H0z .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xTYA3H0z .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7wWDpsh0X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wWDpsh0X .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7wWDpsh0X .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7wWDpsh0X .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7wWDpsh0X .inner-container {
    width: 100% !important;
  }
}
.cid-s7wWDpCVDx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wWDpCVDx .mbr-section-subtitle {
  color: #767676;
}
.cid-s7wWDpCVDx .container-table {
  margin: 0 auto;
}
.cid-s7wWDpCVDx .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7wWDpCVDx .dataTables_wrapper {
  display: block;
}
.cid-s7wWDpCVDx .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7wWDpCVDx .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7wWDpCVDx table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7wWDpCVDx table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7wWDpCVDx table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7wWDpCVDx table td {
  border-top: 1px solid #232323;
}
.cid-s7wWDpCVDx table.table {
  background: #cccccc;
}
.cid-s7wWDpCVDx .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7wWDpCVDx .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7wWDpCVDx .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7wWDpCVDx .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7wWDpCVDx .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7wWDpCVDx .dataTables_filter {
    text-align: center;
  }
  .cid-s7wWDpCVDx .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7wWDpCVDx .mbr-section-title {
  color: #232323;
}
.cid-s7wWDpCVDx .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7wWDpCVDx .body-item {
  text-align: center;
}
.cid-s7wWDqChP2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wWDqChP2 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7wWDqChP2 div.b {
  padding-top: 2rem;
}
.cid-s7wWDqChP2 H5 {
  color: #232323;
}
.cid-s7wXN6qnPc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wXN6qnPc .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7wXN6qnPc .section-text {
  padding: 2rem 0;
}
.cid-s7wXN6qnPc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7wXN6qnPc .inner-container {
    width: 100% !important;
  }
}
.cid-v7xUpT6Dw8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xUpT6Dw8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xUpT6Dw8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xUpT6Dw8 .row {
  justify-content: center;
}
.cid-v7xUpT6Dw8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xUpT6Dw8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xUpT6Dw8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xUpT6Dw8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xUpT6Dw8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xUpT6Dw8 .mbr-text_1,
.cid-v7xUpT6Dw8 .mbr-text_2,
.cid-v7xUpT6Dw8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xUpT6Dw8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xUpT6Dw8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xUpT6Dw8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xUpT6Dw8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xUpT6Dw8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xUpT6Dw8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xUpT6Dw8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xUpT6Dw8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xUpT6Dw8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xUpT6Dw8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xUpT6Dw8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xUpT6Dw8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xUpT6Dw8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xUoSVpi0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xUoSVpi0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xUoSVpi0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xUoSVpi0 .row {
  justify-content: center;
}
.cid-v7xUoSVpi0 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xUoSVpi0 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xUoSVpi0 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xUoSVpi0 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xUoSVpi0 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xUoSVpi0 .mbr-text_1,
.cid-v7xUoSVpi0 .mbr-text_2,
.cid-v7xUoSVpi0 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xUoSVpi0 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xUoSVpi0 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xUoSVpi0 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xUoSVpi0 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xUoSVpi0 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xUoSVpi0 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xUoSVpi0 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xUoSVpi0 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xUoSVpi0 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xUoSVpi0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xUoSVpi0 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xUoSVpi0 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xUoSVpi0 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7wXN706iT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wXN706iT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7wXN706iT .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7wXN706iT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7wXN706iT .inner-container {
    width: 100% !important;
  }
}
.cid-s7wXN78gRq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wXN78gRq .mbr-section-subtitle {
  color: #767676;
}
.cid-s7wXN78gRq .container-table {
  margin: 0 auto;
}
.cid-s7wXN78gRq .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7wXN78gRq .dataTables_wrapper {
  display: block;
}
.cid-s7wXN78gRq .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7wXN78gRq .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7wXN78gRq table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7wXN78gRq table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7wXN78gRq table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7wXN78gRq table td {
  border-top: 1px solid #232323;
}
.cid-s7wXN78gRq table.table {
  background: #cccccc;
}
.cid-s7wXN78gRq .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7wXN78gRq .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7wXN78gRq .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7wXN78gRq .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7wXN78gRq .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7wXN78gRq .dataTables_filter {
    text-align: center;
  }
  .cid-s7wXN78gRq .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7wXN78gRq .mbr-section-title {
  color: #232323;
}
.cid-s7wXN78gRq .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7wXN78gRq .body-item {
  text-align: center;
}
.cid-s7wXN7wyOM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wXN7wyOM .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7wXN7wyOM div.b {
  padding-top: 2rem;
}
.cid-s7wXN7wyOM H5 {
  color: #232323;
}
.cid-s7wZRZoLCM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wZRZoLCM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7wZRZoLCM .section-text {
  padding: 2rem 0;
}
.cid-s7wZRZoLCM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7wZRZoLCM .inner-container {
    width: 100% !important;
  }
}
.cid-v7xUT6fLPH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xUT6fLPH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xUT6fLPH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xUT6fLPH .row {
  justify-content: center;
}
.cid-v7xUT6fLPH .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xUT6fLPH .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xUT6fLPH .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xUT6fLPH .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xUT6fLPH .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xUT6fLPH .mbr-text_1,
.cid-v7xUT6fLPH .mbr-text_2,
.cid-v7xUT6fLPH .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xUT6fLPH .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xUT6fLPH .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xUT6fLPH .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xUT6fLPH .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xUT6fLPH .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xUT6fLPH .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xUT6fLPH .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xUT6fLPH .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xUT6fLPH .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xUT6fLPH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xUT6fLPH .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xUT6fLPH .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xUT6fLPH .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xUU1sfDR {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xUU1sfDR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xUU1sfDR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xUU1sfDR .row {
  justify-content: center;
}
.cid-v7xUU1sfDR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xUU1sfDR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xUU1sfDR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xUU1sfDR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xUU1sfDR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xUU1sfDR .mbr-text_1,
.cid-v7xUU1sfDR .mbr-text_2,
.cid-v7xUU1sfDR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xUU1sfDR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xUU1sfDR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xUU1sfDR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xUU1sfDR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xUU1sfDR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xUU1sfDR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xUU1sfDR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xUU1sfDR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xUU1sfDR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xUU1sfDR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xUU1sfDR .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xUU1sfDR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xUU1sfDR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7wZRZT547 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wZRZT547 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7wZRZT547 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7wZRZT547 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7wZRZT547 .inner-container {
    width: 100% !important;
  }
}
.cid-s7wZS02Xjz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wZS02Xjz .mbr-section-subtitle {
  color: #767676;
}
.cid-s7wZS02Xjz .container-table {
  margin: 0 auto;
}
.cid-s7wZS02Xjz .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7wZS02Xjz .dataTables_wrapper {
  display: block;
}
.cid-s7wZS02Xjz .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7wZS02Xjz .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7wZS02Xjz table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7wZS02Xjz table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7wZS02Xjz table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7wZS02Xjz table td {
  border-top: 1px solid #232323;
}
.cid-s7wZS02Xjz table.table {
  background: #cccccc;
}
.cid-s7wZS02Xjz .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7wZS02Xjz .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7wZS02Xjz .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7wZS02Xjz .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7wZS02Xjz .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7wZS02Xjz .dataTables_filter {
    text-align: center;
  }
  .cid-s7wZS02Xjz .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7wZS02Xjz .mbr-section-title {
  color: #232323;
}
.cid-s7wZS02Xjz .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7wZS02Xjz .body-item {
  text-align: center;
}
.cid-s7wZS0ruDH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7wZS0ruDH .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7wZS0ruDH div.b {
  padding-top: 2rem;
}
.cid-s7wZS0ruDH H5 {
  color: #232323;
}
.cid-s7x1iaE2TE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7x1iaE2TE .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7x1iaE2TE .section-text {
  padding: 2rem 0;
}
.cid-s7x1iaE2TE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7x1iaE2TE .inner-container {
    width: 100% !important;
  }
}
.cid-v7xVLxkzMw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xVLxkzMw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xVLxkzMw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xVLxkzMw .row {
  justify-content: center;
}
.cid-v7xVLxkzMw .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xVLxkzMw .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xVLxkzMw .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xVLxkzMw .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xVLxkzMw .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xVLxkzMw .mbr-text_1,
.cid-v7xVLxkzMw .mbr-text_2,
.cid-v7xVLxkzMw .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xVLxkzMw .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xVLxkzMw .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xVLxkzMw .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xVLxkzMw .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xVLxkzMw .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xVLxkzMw .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xVLxkzMw .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xVLxkzMw .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xVLxkzMw .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xVLxkzMw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xVLxkzMw .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xVLxkzMw .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xVLxkzMw .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xVMqUXuu {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xVMqUXuu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xVMqUXuu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xVMqUXuu .row {
  justify-content: center;
}
.cid-v7xVMqUXuu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xVMqUXuu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xVMqUXuu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xVMqUXuu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xVMqUXuu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xVMqUXuu .mbr-text_1,
.cid-v7xVMqUXuu .mbr-text_2,
.cid-v7xVMqUXuu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xVMqUXuu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xVMqUXuu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xVMqUXuu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xVMqUXuu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xVMqUXuu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xVMqUXuu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xVMqUXuu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xVMqUXuu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xVMqUXuu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xVMqUXuu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xVMqUXuu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xVMqUXuu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xVMqUXuu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7x1ib8UiK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7x1ib8UiK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7x1ib8UiK .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7x1ib8UiK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7x1ib8UiK .inner-container {
    width: 100% !important;
  }
}
.cid-s7x1ibgxKh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7x1ibgxKh .mbr-section-subtitle {
  color: #767676;
}
.cid-s7x1ibgxKh .container-table {
  margin: 0 auto;
}
.cid-s7x1ibgxKh .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7x1ibgxKh .dataTables_wrapper {
  display: block;
}
.cid-s7x1ibgxKh .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7x1ibgxKh .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7x1ibgxKh table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7x1ibgxKh table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7x1ibgxKh table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7x1ibgxKh table td {
  border-top: 1px solid #232323;
}
.cid-s7x1ibgxKh table.table {
  background: #cccccc;
}
.cid-s7x1ibgxKh .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7x1ibgxKh .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7x1ibgxKh .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7x1ibgxKh .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7x1ibgxKh .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7x1ibgxKh .dataTables_filter {
    text-align: center;
  }
  .cid-s7x1ibgxKh .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7x1ibgxKh .mbr-section-title {
  color: #232323;
}
.cid-s7x1ibgxKh .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7x1ibgxKh .body-item {
  text-align: center;
}
.cid-s7x1ibEf6o {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7x1ibEf6o .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7x1ibEf6o div.b {
  padding-top: 2rem;
}
.cid-s7x1ibEf6o H5 {
  color: #232323;
}
.cid-s7x1DsMKUu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7x1DsMKUu .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7x1DsMKUu .section-text {
  padding: 2rem 0;
}
.cid-s7x1DsMKUu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7x1DsMKUu .inner-container {
    width: 100% !important;
  }
}
.cid-v7xWiBLBHN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xWiBLBHN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xWiBLBHN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xWiBLBHN .row {
  justify-content: center;
}
.cid-v7xWiBLBHN .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xWiBLBHN .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xWiBLBHN .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xWiBLBHN .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xWiBLBHN .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xWiBLBHN .mbr-text_1,
.cid-v7xWiBLBHN .mbr-text_2,
.cid-v7xWiBLBHN .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xWiBLBHN .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xWiBLBHN .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xWiBLBHN .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xWiBLBHN .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xWiBLBHN .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xWiBLBHN .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xWiBLBHN .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xWiBLBHN .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xWiBLBHN .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xWiBLBHN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xWiBLBHN .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xWiBLBHN .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xWiBLBHN .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xWjBBEmb {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xWjBBEmb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xWjBBEmb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xWjBBEmb .row {
  justify-content: center;
}
.cid-v7xWjBBEmb .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xWjBBEmb .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xWjBBEmb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xWjBBEmb .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xWjBBEmb .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xWjBBEmb .mbr-text_1,
.cid-v7xWjBBEmb .mbr-text_2,
.cid-v7xWjBBEmb .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xWjBBEmb .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xWjBBEmb .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xWjBBEmb .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xWjBBEmb .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xWjBBEmb .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xWjBBEmb .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xWjBBEmb .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xWjBBEmb .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xWjBBEmb .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xWjBBEmb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xWjBBEmb .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xWjBBEmb .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xWjBBEmb .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7x1DtjvdV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7x1DtjvdV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7x1DtjvdV .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7x1DtjvdV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7x1DtjvdV .inner-container {
    width: 100% !important;
  }
}
.cid-s7x1Dtq7k8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7x1Dtq7k8 .mbr-section-subtitle {
  color: #767676;
}
.cid-s7x1Dtq7k8 .container-table {
  margin: 0 auto;
}
.cid-s7x1Dtq7k8 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7x1Dtq7k8 .dataTables_wrapper {
  display: block;
}
.cid-s7x1Dtq7k8 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7x1Dtq7k8 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7x1Dtq7k8 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7x1Dtq7k8 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7x1Dtq7k8 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7x1Dtq7k8 table td {
  border-top: 1px solid #232323;
}
.cid-s7x1Dtq7k8 table.table {
  background: #cccccc;
}
.cid-s7x1Dtq7k8 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7x1Dtq7k8 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7x1Dtq7k8 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7x1Dtq7k8 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7x1Dtq7k8 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7x1Dtq7k8 .dataTables_filter {
    text-align: center;
  }
  .cid-s7x1Dtq7k8 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7x1Dtq7k8 .mbr-section-title {
  color: #232323;
}
.cid-s7x1Dtq7k8 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7x1Dtq7k8 .body-item {
  text-align: center;
}
.cid-s7x1DtOoFE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7x1DtOoFE .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7x1DtOoFE div.b {
  padding-top: 2rem;
}
.cid-s7x1DtOoFE H5 {
  color: #232323;
}
.cid-s7x27H7pfB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7x27H7pfB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7x27H7pfB .section-text {
  padding: 2rem 0;
}
.cid-s7x27H7pfB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7x27H7pfB .inner-container {
    width: 100% !important;
  }
}
.cid-v7xWDCARmA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xWDCARmA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xWDCARmA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xWDCARmA .row {
  justify-content: center;
}
.cid-v7xWDCARmA .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xWDCARmA .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xWDCARmA .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xWDCARmA .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xWDCARmA .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xWDCARmA .mbr-text_1,
.cid-v7xWDCARmA .mbr-text_2,
.cid-v7xWDCARmA .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xWDCARmA .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xWDCARmA .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xWDCARmA .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xWDCARmA .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xWDCARmA .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xWDCARmA .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xWDCARmA .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xWDCARmA .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xWDCARmA .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xWDCARmA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xWDCARmA .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xWDCARmA .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xWDCARmA .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xWEvTCll {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xWEvTCll .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xWEvTCll .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xWEvTCll .row {
  justify-content: center;
}
.cid-v7xWEvTCll .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xWEvTCll .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xWEvTCll .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xWEvTCll .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xWEvTCll .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xWEvTCll .mbr-text_1,
.cid-v7xWEvTCll .mbr-text_2,
.cid-v7xWEvTCll .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xWEvTCll .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xWEvTCll .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xWEvTCll .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xWEvTCll .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xWEvTCll .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xWEvTCll .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xWEvTCll .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xWEvTCll .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xWEvTCll .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xWEvTCll .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xWEvTCll .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xWEvTCll .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xWEvTCll .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7x27HCNrU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7x27HCNrU .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7x27HCNrU .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7x27HCNrU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7x27HCNrU .inner-container {
    width: 100% !important;
  }
}
.cid-s7x27HK3wE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7x27HK3wE .mbr-section-subtitle {
  color: #767676;
}
.cid-s7x27HK3wE .container-table {
  margin: 0 auto;
}
.cid-s7x27HK3wE .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7x27HK3wE .dataTables_wrapper {
  display: block;
}
.cid-s7x27HK3wE .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7x27HK3wE .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7x27HK3wE table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7x27HK3wE table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7x27HK3wE table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7x27HK3wE table td {
  border-top: 1px solid #232323;
}
.cid-s7x27HK3wE table.table {
  background: #cccccc;
}
.cid-s7x27HK3wE .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7x27HK3wE .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7x27HK3wE .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7x27HK3wE .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7x27HK3wE .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7x27HK3wE .dataTables_filter {
    text-align: center;
  }
  .cid-s7x27HK3wE .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7x27HK3wE .mbr-section-title {
  color: #232323;
}
.cid-s7x27HK3wE .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7x27HK3wE .body-item {
  text-align: center;
}
.cid-s7x27I8YfC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7x27I8YfC .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7x27I8YfC div.b {
  padding-top: 2rem;
}
.cid-s7x27I8YfC H5 {
  color: #232323;
}
.cid-s7CmnoIUTx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CmnoIUTx .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CmnoIUTx .section-text {
  padding: 2rem 0;
}
.cid-s7CmnoIUTx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CmnoIUTx .inner-container {
    width: 100% !important;
  }
}
.cid-svn7idR5Sq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-svn7idR5Sq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svn7idR5Sq .section-text {
  padding: 2rem 0;
}
.cid-svn7idR5Sq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svn7idR5Sq .inner-container {
    width: 100% !important;
  }
}
.cid-s7CmnpeBr8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CmnpeBr8 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CmnpeBr8 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7CmnpeBr8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CmnpeBr8 .inner-container {
    width: 100% !important;
  }
}
.cid-s7CmnpkWGB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CmnpkWGB .mbr-section-subtitle {
  color: #767676;
}
.cid-s7CmnpkWGB .container-table {
  margin: 0 auto;
}
.cid-s7CmnpkWGB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7CmnpkWGB .dataTables_wrapper {
  display: block;
}
.cid-s7CmnpkWGB .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7CmnpkWGB .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7CmnpkWGB table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7CmnpkWGB table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7CmnpkWGB table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7CmnpkWGB table td {
  border-top: 1px solid #232323;
}
.cid-s7CmnpkWGB table.table {
  background: #cccccc;
}
.cid-s7CmnpkWGB .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7CmnpkWGB .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7CmnpkWGB .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7CmnpkWGB .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7CmnpkWGB .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7CmnpkWGB .dataTables_filter {
    text-align: center;
  }
  .cid-s7CmnpkWGB .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7CmnpkWGB .mbr-section-title {
  color: #232323;
}
.cid-s7CmnpkWGB .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7CmnpkWGB .body-item {
  text-align: center;
}
.cid-s7TPhFTm9M {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7TPhFTm9M .mbr-section-subtitle {
  color: #767676;
}
.cid-s7TPhFTm9M .container-table {
  margin: 0 auto;
}
.cid-s7TPhFTm9M .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7TPhFTm9M .dataTables_wrapper {
  display: block;
}
.cid-s7TPhFTm9M .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7TPhFTm9M .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7TPhFTm9M table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7TPhFTm9M table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7TPhFTm9M table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7TPhFTm9M table td {
  border-top: 1px solid #232323;
}
.cid-s7TPhFTm9M table.table {
  background: #cccccc;
}
.cid-s7TPhFTm9M .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7TPhFTm9M .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7TPhFTm9M .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7TPhFTm9M .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7TPhFTm9M .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7TPhFTm9M .dataTables_filter {
    text-align: center;
  }
  .cid-s7TPhFTm9M .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7TPhFTm9M .mbr-section-title {
  color: #232323;
}
.cid-s7TPhFTm9M .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7TPhFTm9M .body-item {
  text-align: center;
}
.cid-s7CmnpUA98 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CmnpUA98 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7CmnpUA98 div.b {
  padding-top: 2rem;
}
.cid-s7CmnpUA98 H5 {
  color: #232323;
}
.cid-s7CndluQhw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CndluQhw .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CndluQhw .section-text {
  padding: 2rem 0;
}
.cid-s7CndluQhw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CndluQhw .inner-container {
    width: 100% !important;
  }
}
.cid-v7xXngN2Bq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xXngN2Bq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xXngN2Bq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xXngN2Bq .row {
  justify-content: center;
}
.cid-v7xXngN2Bq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xXngN2Bq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xXngN2Bq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xXngN2Bq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xXngN2Bq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xXngN2Bq .mbr-text_1,
.cid-v7xXngN2Bq .mbr-text_2,
.cid-v7xXngN2Bq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xXngN2Bq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xXngN2Bq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xXngN2Bq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xXngN2Bq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xXngN2Bq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xXngN2Bq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xXngN2Bq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xXngN2Bq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xXngN2Bq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xXngN2Bq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xXngN2Bq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xXngN2Bq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xXngN2Bq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xXo2zYk2 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xXo2zYk2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xXo2zYk2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xXo2zYk2 .row {
  justify-content: center;
}
.cid-v7xXo2zYk2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xXo2zYk2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xXo2zYk2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xXo2zYk2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xXo2zYk2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xXo2zYk2 .mbr-text_1,
.cid-v7xXo2zYk2 .mbr-text_2,
.cid-v7xXo2zYk2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xXo2zYk2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xXo2zYk2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xXo2zYk2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xXo2zYk2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xXo2zYk2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xXo2zYk2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xXo2zYk2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xXo2zYk2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xXo2zYk2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xXo2zYk2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xXo2zYk2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xXo2zYk2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xXo2zYk2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7Cndm6qm4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7Cndm6qm4 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7Cndm6qm4 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7Cndm6qm4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7Cndm6qm4 .inner-container {
    width: 100% !important;
  }
}
.cid-s7CndmfWJT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CndmfWJT .mbr-section-subtitle {
  color: #767676;
}
.cid-s7CndmfWJT .container-table {
  margin: 0 auto;
}
.cid-s7CndmfWJT .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7CndmfWJT .dataTables_wrapper {
  display: block;
}
.cid-s7CndmfWJT .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7CndmfWJT .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7CndmfWJT table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7CndmfWJT table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7CndmfWJT table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7CndmfWJT table td {
  border-top: 1px solid #232323;
}
.cid-s7CndmfWJT table.table {
  background: #cccccc;
}
.cid-s7CndmfWJT .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7CndmfWJT .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7CndmfWJT .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7CndmfWJT .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7CndmfWJT .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7CndmfWJT .dataTables_filter {
    text-align: center;
  }
  .cid-s7CndmfWJT .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7CndmfWJT .mbr-section-title {
  color: #232323;
}
.cid-s7CndmfWJT .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7CndmfWJT .body-item {
  text-align: center;
}
.cid-s7Cndnb714 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7Cndnb714 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7Cndnb714 div.b {
  padding-top: 2rem;
}
.cid-s7Cndnb714 H5 {
  color: #232323;
}
.cid-s7CorAAnP3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CorAAnP3 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CorAAnP3 .section-text {
  padding: 2rem 0;
}
.cid-s7CorAAnP3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CorAAnP3 .inner-container {
    width: 100% !important;
  }
}
.cid-v7xXI7VPrh {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xXI7VPrh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xXI7VPrh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xXI7VPrh .row {
  justify-content: center;
}
.cid-v7xXI7VPrh .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xXI7VPrh .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xXI7VPrh .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xXI7VPrh .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xXI7VPrh .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xXI7VPrh .mbr-text_1,
.cid-v7xXI7VPrh .mbr-text_2,
.cid-v7xXI7VPrh .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xXI7VPrh .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xXI7VPrh .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xXI7VPrh .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xXI7VPrh .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xXI7VPrh .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xXI7VPrh .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xXI7VPrh .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xXI7VPrh .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xXI7VPrh .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xXI7VPrh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xXI7VPrh .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xXI7VPrh .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xXI7VPrh .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xXJ2MxZl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xXJ2MxZl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xXJ2MxZl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xXJ2MxZl .row {
  justify-content: center;
}
.cid-v7xXJ2MxZl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xXJ2MxZl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xXJ2MxZl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xXJ2MxZl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xXJ2MxZl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xXJ2MxZl .mbr-text_1,
.cid-v7xXJ2MxZl .mbr-text_2,
.cid-v7xXJ2MxZl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xXJ2MxZl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xXJ2MxZl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xXJ2MxZl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xXJ2MxZl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xXJ2MxZl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xXJ2MxZl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xXJ2MxZl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xXJ2MxZl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xXJ2MxZl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xXJ2MxZl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xXJ2MxZl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xXJ2MxZl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xXJ2MxZl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7CorB4ZZZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CorB4ZZZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CorB4ZZZ .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7CorB4ZZZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CorB4ZZZ .inner-container {
    width: 100% !important;
  }
}
.cid-s7CorBcssV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CorBcssV .mbr-section-subtitle {
  color: #767676;
}
.cid-s7CorBcssV .container-table {
  margin: 0 auto;
}
.cid-s7CorBcssV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7CorBcssV .dataTables_wrapper {
  display: block;
}
.cid-s7CorBcssV .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7CorBcssV .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7CorBcssV table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7CorBcssV table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7CorBcssV table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7CorBcssV table td {
  border-top: 1px solid #232323;
}
.cid-s7CorBcssV table.table {
  background: #cccccc;
}
.cid-s7CorBcssV .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7CorBcssV .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7CorBcssV .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7CorBcssV .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7CorBcssV .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7CorBcssV .dataTables_filter {
    text-align: center;
  }
  .cid-s7CorBcssV .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7CorBcssV .mbr-section-title {
  color: #232323;
}
.cid-s7CorBcssV .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7CorBcssV .body-item {
  text-align: center;
}
.cid-s7CorBF2D9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CorBF2D9 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7CorBF2D9 div.b {
  padding-top: 2rem;
}
.cid-s7CorBF2D9 H5 {
  color: #232323;
}
.cid-s7Cp27R2YW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7Cp27R2YW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7Cp27R2YW .section-text {
  padding: 2rem 0;
}
.cid-s7Cp27R2YW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7Cp27R2YW .inner-container {
    width: 100% !important;
  }
}
.cid-v7xY27sNP2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xY27sNP2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xY27sNP2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xY27sNP2 .row {
  justify-content: center;
}
.cid-v7xY27sNP2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xY27sNP2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xY27sNP2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xY27sNP2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xY27sNP2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xY27sNP2 .mbr-text_1,
.cid-v7xY27sNP2 .mbr-text_2,
.cid-v7xY27sNP2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xY27sNP2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xY27sNP2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xY27sNP2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xY27sNP2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xY27sNP2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xY27sNP2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xY27sNP2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xY27sNP2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xY27sNP2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xY27sNP2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xY27sNP2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xY27sNP2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xY27sNP2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xY31L0fk {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xY31L0fk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xY31L0fk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xY31L0fk .row {
  justify-content: center;
}
.cid-v7xY31L0fk .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xY31L0fk .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xY31L0fk .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xY31L0fk .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xY31L0fk .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xY31L0fk .mbr-text_1,
.cid-v7xY31L0fk .mbr-text_2,
.cid-v7xY31L0fk .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xY31L0fk .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xY31L0fk .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xY31L0fk .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xY31L0fk .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xY31L0fk .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xY31L0fk .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xY31L0fk .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xY31L0fk .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xY31L0fk .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xY31L0fk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xY31L0fk .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xY31L0fk .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xY31L0fk .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7Cp28oibn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7Cp28oibn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7Cp28oibn .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7Cp28oibn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7Cp28oibn .inner-container {
    width: 100% !important;
  }
}
.cid-s7Cp28wyLR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7Cp28wyLR .mbr-section-subtitle {
  color: #767676;
}
.cid-s7Cp28wyLR .container-table {
  margin: 0 auto;
}
.cid-s7Cp28wyLR .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7Cp28wyLR .dataTables_wrapper {
  display: block;
}
.cid-s7Cp28wyLR .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7Cp28wyLR .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7Cp28wyLR table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7Cp28wyLR table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7Cp28wyLR table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7Cp28wyLR table td {
  border-top: 1px solid #232323;
}
.cid-s7Cp28wyLR table.table {
  background: #cccccc;
}
.cid-s7Cp28wyLR .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7Cp28wyLR .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7Cp28wyLR .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7Cp28wyLR .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7Cp28wyLR .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7Cp28wyLR .dataTables_filter {
    text-align: center;
  }
  .cid-s7Cp28wyLR .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7Cp28wyLR .mbr-section-title {
  color: #232323;
}
.cid-s7Cp28wyLR .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7Cp28wyLR .body-item {
  text-align: center;
}
.cid-s7Oy2ovYTx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7Oy2ovYTx .mbr-section-subtitle {
  color: #767676;
}
.cid-s7Oy2ovYTx .container-table {
  margin: 0 auto;
}
.cid-s7Oy2ovYTx .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7Oy2ovYTx .dataTables_wrapper {
  display: block;
}
.cid-s7Oy2ovYTx .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7Oy2ovYTx .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7Oy2ovYTx table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7Oy2ovYTx table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7Oy2ovYTx table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7Oy2ovYTx table td {
  border-top: 1px solid #232323;
}
.cid-s7Oy2ovYTx table.table {
  background: #cccccc;
}
.cid-s7Oy2ovYTx .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7Oy2ovYTx .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7Oy2ovYTx .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7Oy2ovYTx .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7Oy2ovYTx .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7Oy2ovYTx .dataTables_filter {
    text-align: center;
  }
  .cid-s7Oy2ovYTx .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7Oy2ovYTx .mbr-section-title {
  color: #232323;
}
.cid-s7Oy2ovYTx .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7Oy2ovYTx .body-item {
  text-align: center;
}
.cid-s7Cp28VBgR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7Cp28VBgR .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7Cp28VBgR div.b {
  padding-top: 2rem;
}
.cid-s7Cp28VBgR H5 {
  color: #232323;
}
.cid-s7CpzyO8tn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CpzyO8tn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CpzyO8tn .section-text {
  padding: 2rem 0;
}
.cid-s7CpzyO8tn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CpzyO8tn .inner-container {
    width: 100% !important;
  }
}
.cid-v7xYhH7xCQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xYhH7xCQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xYhH7xCQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xYhH7xCQ .row {
  justify-content: center;
}
.cid-v7xYhH7xCQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xYhH7xCQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xYhH7xCQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xYhH7xCQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xYhH7xCQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xYhH7xCQ .mbr-text_1,
.cid-v7xYhH7xCQ .mbr-text_2,
.cid-v7xYhH7xCQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xYhH7xCQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xYhH7xCQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xYhH7xCQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xYhH7xCQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xYhH7xCQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xYhH7xCQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xYhH7xCQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xYhH7xCQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xYhH7xCQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xYhH7xCQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xYhH7xCQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xYhH7xCQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xYhH7xCQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xYivcGxs {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xYivcGxs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xYivcGxs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xYivcGxs .row {
  justify-content: center;
}
.cid-v7xYivcGxs .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xYivcGxs .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xYivcGxs .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xYivcGxs .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xYivcGxs .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xYivcGxs .mbr-text_1,
.cid-v7xYivcGxs .mbr-text_2,
.cid-v7xYivcGxs .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xYivcGxs .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xYivcGxs .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xYivcGxs .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xYivcGxs .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xYivcGxs .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xYivcGxs .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xYivcGxs .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xYivcGxs .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xYivcGxs .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xYivcGxs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xYivcGxs .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xYivcGxs .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xYivcGxs .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7CpzzkJZE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CpzzkJZE .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CpzzkJZE .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7CpzzkJZE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CpzzkJZE .inner-container {
    width: 100% !important;
  }
}
.cid-s7CpzzsPMR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CpzzsPMR .mbr-section-subtitle {
  color: #767676;
}
.cid-s7CpzzsPMR .container-table {
  margin: 0 auto;
}
.cid-s7CpzzsPMR .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7CpzzsPMR .dataTables_wrapper {
  display: block;
}
.cid-s7CpzzsPMR .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7CpzzsPMR .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7CpzzsPMR table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7CpzzsPMR table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7CpzzsPMR table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7CpzzsPMR table td {
  border-top: 1px solid #232323;
}
.cid-s7CpzzsPMR table.table {
  background: #cccccc;
}
.cid-s7CpzzsPMR .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7CpzzsPMR .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7CpzzsPMR .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7CpzzsPMR .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7CpzzsPMR .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7CpzzsPMR .dataTables_filter {
    text-align: center;
  }
  .cid-s7CpzzsPMR .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7CpzzsPMR .mbr-section-title {
  color: #232323;
}
.cid-s7CpzzsPMR .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7CpzzsPMR .body-item {
  text-align: center;
}
.cid-s7CpzzRqW0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CpzzRqW0 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7CpzzRqW0 div.b {
  padding-top: 2rem;
}
.cid-s7CpzzRqW0 H5 {
  color: #232323;
}
.cid-s7CqhnZGws {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CqhnZGws .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CqhnZGws .section-text {
  padding: 2rem 0;
}
.cid-s7CqhnZGws .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CqhnZGws .inner-container {
    width: 100% !important;
  }
}
.cid-v7xYu1jG1D {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xYu1jG1D .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xYu1jG1D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xYu1jG1D .row {
  justify-content: center;
}
.cid-v7xYu1jG1D .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xYu1jG1D .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xYu1jG1D .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xYu1jG1D .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xYu1jG1D .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xYu1jG1D .mbr-text_1,
.cid-v7xYu1jG1D .mbr-text_2,
.cid-v7xYu1jG1D .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xYu1jG1D .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xYu1jG1D .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xYu1jG1D .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xYu1jG1D .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xYu1jG1D .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xYu1jG1D .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xYu1jG1D .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xYu1jG1D .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xYu1jG1D .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xYu1jG1D .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xYu1jG1D .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xYu1jG1D .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xYu1jG1D .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xYuXt0pY {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xYuXt0pY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xYuXt0pY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xYuXt0pY .row {
  justify-content: center;
}
.cid-v7xYuXt0pY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xYuXt0pY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xYuXt0pY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xYuXt0pY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xYuXt0pY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xYuXt0pY .mbr-text_1,
.cid-v7xYuXt0pY .mbr-text_2,
.cid-v7xYuXt0pY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xYuXt0pY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xYuXt0pY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xYuXt0pY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xYuXt0pY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xYuXt0pY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xYuXt0pY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xYuXt0pY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xYuXt0pY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xYuXt0pY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xYuXt0pY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xYuXt0pY .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xYuXt0pY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xYuXt0pY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7CqhoB60g {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CqhoB60g .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CqhoB60g .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7CqhoB60g .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CqhoB60g .inner-container {
    width: 100% !important;
  }
}
.cid-s7CqhoMbk1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CqhoMbk1 .mbr-section-subtitle {
  color: #767676;
}
.cid-s7CqhoMbk1 .container-table {
  margin: 0 auto;
}
.cid-s7CqhoMbk1 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7CqhoMbk1 .dataTables_wrapper {
  display: block;
}
.cid-s7CqhoMbk1 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7CqhoMbk1 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7CqhoMbk1 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7CqhoMbk1 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7CqhoMbk1 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7CqhoMbk1 table td {
  border-top: 1px solid #232323;
}
.cid-s7CqhoMbk1 table.table {
  background: #cccccc;
}
.cid-s7CqhoMbk1 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7CqhoMbk1 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7CqhoMbk1 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7CqhoMbk1 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7CqhoMbk1 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7CqhoMbk1 .dataTables_filter {
    text-align: center;
  }
  .cid-s7CqhoMbk1 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7CqhoMbk1 .mbr-section-title {
  color: #232323;
}
.cid-s7CqhoMbk1 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7CqhoMbk1 .body-item {
  text-align: center;
}
.cid-s7CqhpICyN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CqhpICyN .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7CqhpICyN div.b {
  padding-top: 2rem;
}
.cid-s7CqhpICyN H5 {
  color: #232323;
}
.cid-s7CqRwtCtH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CqRwtCtH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CqRwtCtH .section-text {
  padding: 2rem 0;
}
.cid-s7CqRwtCtH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CqRwtCtH .inner-container {
    width: 100% !important;
  }
}
.cid-v7xZ5fXtkD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xZ5fXtkD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xZ5fXtkD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xZ5fXtkD .row {
  justify-content: center;
}
.cid-v7xZ5fXtkD .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xZ5fXtkD .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xZ5fXtkD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xZ5fXtkD .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xZ5fXtkD .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xZ5fXtkD .mbr-text_1,
.cid-v7xZ5fXtkD .mbr-text_2,
.cid-v7xZ5fXtkD .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xZ5fXtkD .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZ5fXtkD .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZ5fXtkD .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xZ5fXtkD .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xZ5fXtkD .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZ5fXtkD .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZ5fXtkD .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xZ5fXtkD .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZ5fXtkD .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xZ5fXtkD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xZ5fXtkD .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xZ5fXtkD .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xZ5fXtkD .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xZ6foqJJ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xZ6foqJJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xZ6foqJJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xZ6foqJJ .row {
  justify-content: center;
}
.cid-v7xZ6foqJJ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xZ6foqJJ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xZ6foqJJ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xZ6foqJJ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xZ6foqJJ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xZ6foqJJ .mbr-text_1,
.cid-v7xZ6foqJJ .mbr-text_2,
.cid-v7xZ6foqJJ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xZ6foqJJ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZ6foqJJ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZ6foqJJ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xZ6foqJJ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xZ6foqJJ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZ6foqJJ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZ6foqJJ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xZ6foqJJ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZ6foqJJ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xZ6foqJJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xZ6foqJJ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xZ6foqJJ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xZ6foqJJ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7CqRwXKzG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CqRwXKzG .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CqRwXKzG .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7CqRwXKzG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CqRwXKzG .inner-container {
    width: 100% !important;
  }
}
.cid-s7CqRx5QKY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CqRx5QKY .mbr-section-subtitle {
  color: #767676;
}
.cid-s7CqRx5QKY .container-table {
  margin: 0 auto;
}
.cid-s7CqRx5QKY .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7CqRx5QKY .dataTables_wrapper {
  display: block;
}
.cid-s7CqRx5QKY .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7CqRx5QKY .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7CqRx5QKY table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7CqRx5QKY table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7CqRx5QKY table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7CqRx5QKY table td {
  border-top: 1px solid #232323;
}
.cid-s7CqRx5QKY table.table {
  background: #cccccc;
}
.cid-s7CqRx5QKY .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7CqRx5QKY .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7CqRx5QKY .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7CqRx5QKY .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7CqRx5QKY .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7CqRx5QKY .dataTables_filter {
    text-align: center;
  }
  .cid-s7CqRx5QKY .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7CqRx5QKY .mbr-section-title {
  color: #232323;
}
.cid-s7CqRx5QKY .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7CqRx5QKY .body-item {
  text-align: center;
}
.cid-s7CqRxu7up {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CqRxu7up .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7CqRxu7up div.b {
  padding-top: 2rem;
}
.cid-s7CqRxu7up H5 {
  color: #232323;
}
.cid-s7CrqZ6n9l {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CrqZ6n9l .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CrqZ6n9l .section-text {
  padding: 2rem 0;
}
.cid-s7CrqZ6n9l .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CrqZ6n9l .inner-container {
    width: 100% !important;
  }
}
.cid-v7xZkClDac {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xZkClDac .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xZkClDac .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xZkClDac .row {
  justify-content: center;
}
.cid-v7xZkClDac .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xZkClDac .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xZkClDac .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xZkClDac .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xZkClDac .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xZkClDac .mbr-text_1,
.cid-v7xZkClDac .mbr-text_2,
.cid-v7xZkClDac .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xZkClDac .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZkClDac .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZkClDac .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xZkClDac .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xZkClDac .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZkClDac .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZkClDac .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xZkClDac .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZkClDac .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xZkClDac .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xZkClDac .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xZkClDac .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xZkClDac .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xZlvi5Ph {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xZlvi5Ph .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xZlvi5Ph .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xZlvi5Ph .row {
  justify-content: center;
}
.cid-v7xZlvi5Ph .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xZlvi5Ph .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xZlvi5Ph .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xZlvi5Ph .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xZlvi5Ph .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xZlvi5Ph .mbr-text_1,
.cid-v7xZlvi5Ph .mbr-text_2,
.cid-v7xZlvi5Ph .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xZlvi5Ph .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZlvi5Ph .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZlvi5Ph .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xZlvi5Ph .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xZlvi5Ph .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZlvi5Ph .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZlvi5Ph .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xZlvi5Ph .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZlvi5Ph .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xZlvi5Ph .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xZlvi5Ph .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xZlvi5Ph .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xZlvi5Ph .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7CrqZBaLr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CrqZBaLr .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CrqZBaLr .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7CrqZBaLr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CrqZBaLr .inner-container {
    width: 100% !important;
  }
}
.cid-s7CrqZIuib {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CrqZIuib .mbr-section-subtitle {
  color: #767676;
}
.cid-s7CrqZIuib .container-table {
  margin: 0 auto;
}
.cid-s7CrqZIuib .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7CrqZIuib .dataTables_wrapper {
  display: block;
}
.cid-s7CrqZIuib .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7CrqZIuib .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7CrqZIuib table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7CrqZIuib table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7CrqZIuib table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7CrqZIuib table td {
  border-top: 1px solid #232323;
}
.cid-s7CrqZIuib table.table {
  background: #cccccc;
}
.cid-s7CrqZIuib .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7CrqZIuib .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7CrqZIuib .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7CrqZIuib .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7CrqZIuib .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7CrqZIuib .dataTables_filter {
    text-align: center;
  }
  .cid-s7CrqZIuib .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7CrqZIuib .mbr-section-title {
  color: #232323;
}
.cid-s7CrqZIuib .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7CrqZIuib .body-item {
  text-align: center;
}
.cid-s7Crr0bCIK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7Crr0bCIK .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7Crr0bCIK div.b {
  padding-top: 2rem;
}
.cid-s7Crr0bCIK H5 {
  color: #232323;
}
.cid-s7CrVLMDba {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CrVLMDba .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CrVLMDba .section-text {
  padding: 2rem 0;
}
.cid-s7CrVLMDba .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CrVLMDba .inner-container {
    width: 100% !important;
  }
}
.cid-v7xZyzNJo9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xZyzNJo9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xZyzNJo9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xZyzNJo9 .row {
  justify-content: center;
}
.cid-v7xZyzNJo9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xZyzNJo9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xZyzNJo9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xZyzNJo9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xZyzNJo9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xZyzNJo9 .mbr-text_1,
.cid-v7xZyzNJo9 .mbr-text_2,
.cid-v7xZyzNJo9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xZyzNJo9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZyzNJo9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZyzNJo9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xZyzNJo9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xZyzNJo9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZyzNJo9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZyzNJo9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xZyzNJo9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZyzNJo9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xZyzNJo9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xZyzNJo9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xZyzNJo9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xZyzNJo9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xZzlhIcE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xZzlhIcE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xZzlhIcE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xZzlhIcE .row {
  justify-content: center;
}
.cid-v7xZzlhIcE .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xZzlhIcE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xZzlhIcE .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xZzlhIcE .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xZzlhIcE .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xZzlhIcE .mbr-text_1,
.cid-v7xZzlhIcE .mbr-text_2,
.cid-v7xZzlhIcE .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xZzlhIcE .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZzlhIcE .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZzlhIcE .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xZzlhIcE .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xZzlhIcE .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZzlhIcE .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZzlhIcE .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xZzlhIcE .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZzlhIcE .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xZzlhIcE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xZzlhIcE .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xZzlhIcE .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xZzlhIcE .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7CrVMkQmV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CrVMkQmV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CrVMkQmV .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7CrVMkQmV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CrVMkQmV .inner-container {
    width: 100% !important;
  }
}
.cid-s7CrVMtlgD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CrVMtlgD .mbr-section-subtitle {
  color: #767676;
}
.cid-s7CrVMtlgD .container-table {
  margin: 0 auto;
}
.cid-s7CrVMtlgD .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7CrVMtlgD .dataTables_wrapper {
  display: block;
}
.cid-s7CrVMtlgD .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7CrVMtlgD .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7CrVMtlgD table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7CrVMtlgD table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7CrVMtlgD table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7CrVMtlgD table td {
  border-top: 1px solid #232323;
}
.cid-s7CrVMtlgD table.table {
  background: #cccccc;
}
.cid-s7CrVMtlgD .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7CrVMtlgD .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7CrVMtlgD .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7CrVMtlgD .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7CrVMtlgD .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7CrVMtlgD .dataTables_filter {
    text-align: center;
  }
  .cid-s7CrVMtlgD .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7CrVMtlgD .mbr-section-title {
  color: #232323;
}
.cid-s7CrVMtlgD .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7CrVMtlgD .body-item {
  text-align: center;
}
.cid-s7CrVMTLlO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CrVMTLlO .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7CrVMTLlO div.b {
  padding-top: 2rem;
}
.cid-s7CrVMTLlO H5 {
  color: #232323;
}
.cid-s7CspK6qJ7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CspK6qJ7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CspK6qJ7 .section-text {
  padding: 2rem 0;
}
.cid-s7CspK6qJ7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CspK6qJ7 .inner-container {
    width: 100% !important;
  }
}
.cid-v7xZPzY3I5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7xZPzY3I5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xZPzY3I5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xZPzY3I5 .row {
  justify-content: center;
}
.cid-v7xZPzY3I5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xZPzY3I5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xZPzY3I5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xZPzY3I5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xZPzY3I5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xZPzY3I5 .mbr-text_1,
.cid-v7xZPzY3I5 .mbr-text_2,
.cid-v7xZPzY3I5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xZPzY3I5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZPzY3I5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZPzY3I5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xZPzY3I5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xZPzY3I5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZPzY3I5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZPzY3I5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xZPzY3I5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZPzY3I5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7xZPzY3I5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xZPzY3I5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xZPzY3I5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xZPzY3I5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7xZQFKrBR {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7xZQFKrBR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7xZQFKrBR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7xZQFKrBR .row {
  justify-content: center;
}
.cid-v7xZQFKrBR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7xZQFKrBR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7xZQFKrBR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7xZQFKrBR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7xZQFKrBR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7xZQFKrBR .mbr-text_1,
.cid-v7xZQFKrBR .mbr-text_2,
.cid-v7xZQFKrBR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7xZQFKrBR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZQFKrBR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZQFKrBR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xZQFKrBR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xZQFKrBR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZQFKrBR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7xZQFKrBR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7xZQFKrBR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7xZQFKrBR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7xZQFKrBR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7xZQFKrBR .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7xZQFKrBR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7xZQFKrBR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-s7CspKCn4T {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CspKCn4T .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s7CspKCn4T .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-s7CspKCn4T .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s7CspKCn4T .inner-container {
    width: 100% !important;
  }
}
.cid-s7CspKJAD4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CspKJAD4 .mbr-section-subtitle {
  color: #767676;
}
.cid-s7CspKJAD4 .container-table {
  margin: 0 auto;
}
.cid-s7CspKJAD4 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s7CspKJAD4 .dataTables_wrapper {
  display: block;
}
.cid-s7CspKJAD4 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s7CspKJAD4 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s7CspKJAD4 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-s7CspKJAD4 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-s7CspKJAD4 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-s7CspKJAD4 table td {
  border-top: 1px solid #232323;
}
.cid-s7CspKJAD4 table.table {
  background: #cccccc;
}
.cid-s7CspKJAD4 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s7CspKJAD4 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s7CspKJAD4 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s7CspKJAD4 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s7CspKJAD4 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s7CspKJAD4 .dataTables_filter {
    text-align: center;
  }
  .cid-s7CspKJAD4 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s7CspKJAD4 .mbr-section-title {
  color: #232323;
}
.cid-s7CspKJAD4 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-s7CspKJAD4 .body-item {
  text-align: center;
}
.cid-s7CspL9vio {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-s7CspL9vio .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-s7CspL9vio div.b {
  padding-top: 2rem;
}
.cid-s7CspL9vio H5 {
  color: #232323;
}
.cid-skg4sUoxnd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-skg4sUoxnd .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-skg4sUoxnd .section-text {
  padding: 2rem 0;
}
.cid-skg4sUoxnd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-skg4sUoxnd .inner-container {
    width: 100% !important;
  }
}
.cid-v6XtoBqpgD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6XtoBqpgD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XtoBqpgD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XtoBqpgD .row {
  justify-content: center;
}
.cid-v6XtoBqpgD .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XtoBqpgD .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XtoBqpgD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XtoBqpgD .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XtoBqpgD .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XtoBqpgD .mbr-text_1,
.cid-v6XtoBqpgD .mbr-text_2,
.cid-v6XtoBqpgD .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XtoBqpgD .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XtoBqpgD .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XtoBqpgD .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XtoBqpgD .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XtoBqpgD .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XtoBqpgD .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XtoBqpgD .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XtoBqpgD .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XtoBqpgD .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XtoBqpgD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XtoBqpgD .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XtoBqpgD .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XtoBqpgD .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XtpsYng2 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6XtpsYng2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XtpsYng2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XtpsYng2 .row {
  justify-content: center;
}
.cid-v6XtpsYng2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XtpsYng2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XtpsYng2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XtpsYng2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XtpsYng2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XtpsYng2 .mbr-text_1,
.cid-v6XtpsYng2 .mbr-text_2,
.cid-v6XtpsYng2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XtpsYng2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XtpsYng2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XtpsYng2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XtpsYng2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XtpsYng2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XtpsYng2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XtpsYng2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XtpsYng2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XtpsYng2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XtpsYng2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XtpsYng2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XtpsYng2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XtpsYng2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XtmZOr3e {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6XtmZOr3e .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6XtmZOr3e .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6XtmZOr3e .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6XtmZOr3e .inner-container {
    width: 100% !important;
  }
}
.cid-skg4sUUSgq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-skg4sUUSgq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-skg4sUUSgq .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-skg4sUUSgq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-skg4sUUSgq .inner-container {
    width: 100% !important;
  }
}
.cid-uybfpjD2I2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybfpjD2I2 .mbr-section-subtitle {
  color: #767676;
}
.cid-uybfpjD2I2 .container-table {
  margin: 0 auto;
}
.cid-uybfpjD2I2 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybfpjD2I2 .dataTables_wrapper {
  display: block;
}
.cid-uybfpjD2I2 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybfpjD2I2 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybfpjD2I2 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybfpjD2I2 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybfpjD2I2 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybfpjD2I2 table td {
  border-top: 1px solid #232323;
}
.cid-uybfpjD2I2 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybfpjD2I2 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybfpjD2I2 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybfpjD2I2 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybfpjD2I2 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybfpjD2I2 .dataTables_filter {
    text-align: center;
  }
  .cid-uybfpjD2I2 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybfpjD2I2 .mbr-section-title {
  color: #ff3366;
}
.cid-uybfpjD2I2 .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybfpjD2I2 .body-item {
  text-align: center;
}
.cid-sqIzZ6dDkm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sqIzZ6dDkm .mbr-section-subtitle {
  color: #232323;
}
.cid-sqIzZ6dDkm .container-table {
  margin: 0 auto;
}
.cid-sqIzZ6dDkm .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sqIzZ6dDkm .dataTables_wrapper {
  display: block;
}
.cid-sqIzZ6dDkm .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sqIzZ6dDkm .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sqIzZ6dDkm table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-sqIzZ6dDkm table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sqIzZ6dDkm table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-sqIzZ6dDkm table td {
  border-top: 1px solid #232323;
}
.cid-sqIzZ6dDkm .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sqIzZ6dDkm .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sqIzZ6dDkm .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sqIzZ6dDkm .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sqIzZ6dDkm .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sqIzZ6dDkm .dataTables_filter {
    text-align: center;
  }
  .cid-sqIzZ6dDkm .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sqIzZ6dDkm .mbr-section-title {
  color: #232323;
}
.cid-sqIzZ6dDkm .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-sqIzZ6dDkm .body-item {
  text-align: center;
}
.cid-sTzEr1L3dn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTzEr1L3dn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTzEr1L3dn .section-text {
  padding: 2rem 0;
}
.cid-sTzEr1L3dn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sTzEr1L3dn .inner-container {
    width: 100% !important;
  }
}
.cid-sTzEr1L3dn .section-text DIV {
  text-align: center;
}
.cid-sTzCGRyJ2A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTzCGRyJ2A .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTzCGRyJ2A .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTzCGRyJ2A .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTzCGRyJ2A .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTzCGRyJ2A .row > .row {
  display: block;
}
.cid-sTzCGRyJ2A .mbr-gallery-item {
  width: 100%;
}
.cid-sTzCGRyJ2A .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTzCGRyJ2A .mbr-gallery-item > div {
  position: relative;
}
.cid-sTzCGRyJ2A .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTzCGRyJ2A .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTzCGRyJ2A .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTzCGRyJ2A .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skg4sW4eNr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-skg4sWfmdU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-skg4sWfmdU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skg4sWfmdU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skg4sWfmdU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skg4sWfmdU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skg4sWfmdU .row > .row {
  display: block;
}
.cid-skg4sWfmdU .mbr-gallery-item {
  width: 100%;
}
.cid-skg4sWfmdU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skg4sWfmdU .mbr-gallery-item > div {
  position: relative;
}
.cid-skg4sWfmdU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skg4sWfmdU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skg4sWfmdU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skg4sWfmdU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skg4sWN7Nb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-skg4sX3gQS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-skg4sX3gQS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skg4sX3gQS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skg4sX3gQS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skg4sX3gQS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skg4sX3gQS .row > .row {
  display: block;
}
.cid-skg4sX3gQS .mbr-gallery-item {
  width: 100%;
}
.cid-skg4sX3gQS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skg4sX3gQS .mbr-gallery-item > div {
  position: relative;
}
.cid-skg4sX3gQS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skg4sX3gQS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skg4sX3gQS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skg4sX3gQS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skg4sXsvNF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-skg6dZxiqd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-skg6dZxiqd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skg6dZxiqd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skg6dZxiqd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skg6dZxiqd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skg6dZxiqd .row > .row {
  display: block;
}
.cid-skg6dZxiqd .mbr-gallery-item {
  width: 100%;
}
.cid-skg6dZxiqd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skg6dZxiqd .mbr-gallery-item > div {
  position: relative;
}
.cid-skg6dZxiqd .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skg6dZxiqd .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skg6dZxiqd .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skg6dZxiqd .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skg4sXAF4T {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-skg6eV0x6R {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-skg6eV0x6R .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skg6eV0x6R .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skg6eV0x6R .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skg6eV0x6R .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skg6eV0x6R .row > .row {
  display: block;
}
.cid-skg6eV0x6R .mbr-gallery-item {
  width: 100%;
}
.cid-skg6eV0x6R .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skg6eV0x6R .mbr-gallery-item > div {
  position: relative;
}
.cid-skg6eV0x6R .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skg6eV0x6R .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skg6eV0x6R .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skg6eV0x6R .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skg4sXJCMs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-skg6iUy6Ee {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-skg6iUy6Ee .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skg6iUy6Ee .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skg6iUy6Ee .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skg6iUy6Ee .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skg6iUy6Ee .row > .row {
  display: block;
}
.cid-skg6iUy6Ee .mbr-gallery-item {
  width: 100%;
}
.cid-skg6iUy6Ee .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skg6iUy6Ee .mbr-gallery-item > div {
  position: relative;
}
.cid-skg6iUy6Ee .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skg6iUy6Ee .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skg6iUy6Ee .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skg6iUy6Ee .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skg4sXRUvb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-te8z42XwBK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-skg4sYl5X4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sAZITeoplO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-skg4sYKUAo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sGVx7f0RP3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sGVx7f0RP3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sGVx7f0RP3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sGVx7f0RP3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sGVx7f0RP3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sGVx7f0RP3 .row > .row {
  display: block;
}
.cid-sGVx7f0RP3 .mbr-gallery-item {
  width: 100%;
}
.cid-sGVx7f0RP3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sGVx7f0RP3 .mbr-gallery-item > div {
  position: relative;
}
.cid-sGVx7f0RP3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sGVx7f0RP3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sGVx7f0RP3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sGVx7f0RP3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skg4sZcFtQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-skg6mJi5Pp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-skg6mJi5Pp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skg6mJi5Pp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skg6mJi5Pp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skg6mJi5Pp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skg6mJi5Pp .row > .row {
  display: block;
}
.cid-skg6mJi5Pp .mbr-gallery-item {
  width: 100%;
}
.cid-skg6mJi5Pp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skg6mJi5Pp .mbr-gallery-item > div {
  position: relative;
}
.cid-skg6mJi5Pp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skg6mJi5Pp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skg6mJi5Pp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skg6mJi5Pp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skg4sZHGb1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-skg6nN8zGX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-skg6nN8zGX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skg6nN8zGX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skg6nN8zGX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skg6nN8zGX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skg6nN8zGX .row > .row {
  display: block;
}
.cid-skg6nN8zGX .mbr-gallery-item {
  width: 100%;
}
.cid-skg6nN8zGX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skg6nN8zGX .mbr-gallery-item > div {
  position: relative;
}
.cid-skg6nN8zGX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skg6nN8zGX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skg6nN8zGX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skg6nN8zGX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skg4t0hTHP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-skg6oGhVQ8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-skg6oGhVQ8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skg6oGhVQ8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skg6oGhVQ8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skg6oGhVQ8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skg6oGhVQ8 .row > .row {
  display: block;
}
.cid-skg6oGhVQ8 .mbr-gallery-item {
  width: 100%;
}
.cid-skg6oGhVQ8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skg6oGhVQ8 .mbr-gallery-item > div {
  position: relative;
}
.cid-skg6oGhVQ8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skg6oGhVQ8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skg6oGhVQ8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skg6oGhVQ8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skg4t0XtwT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-skg6puGxac {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-skg6puGxac .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skg6puGxac .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skg6puGxac .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skg6puGxac .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skg6puGxac .row > .row {
  display: block;
}
.cid-skg6puGxac .mbr-gallery-item {
  width: 100%;
}
.cid-skg6puGxac .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skg6puGxac .mbr-gallery-item > div {
  position: relative;
}
.cid-skg6puGxac .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skg6puGxac .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skg6puGxac .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skg6puGxac .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skg4t1F336 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-skg4t1F336 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-skg4t1F336 div.b {
  padding-top: 2rem;
}
.cid-skg4t1F336 H5 {
  color: #232323;
}
.cid-skxOx0P2Fd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skxOx0P2Fd .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-skxOx0P2Fd .section-text {
  padding: 2rem 0;
}
.cid-skxOx0P2Fd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-skxOx0P2Fd .inner-container {
    width: 100% !important;
  }
}
.cid-v72okUCSWu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v72okUCSWu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72okUCSWu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72okUCSWu .row {
  justify-content: center;
}
.cid-v72okUCSWu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72okUCSWu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72okUCSWu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72okUCSWu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72okUCSWu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72okUCSWu .mbr-text_1,
.cid-v72okUCSWu .mbr-text_2,
.cid-v72okUCSWu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72okUCSWu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72okUCSWu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72okUCSWu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72okUCSWu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72okUCSWu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72okUCSWu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72okUCSWu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72okUCSWu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72okUCSWu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72okUCSWu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72okUCSWu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72okUCSWu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72okUCSWu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72om0E589 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v72om0E589 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72om0E589 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72om0E589 .row {
  justify-content: center;
}
.cid-v72om0E589 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72om0E589 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72om0E589 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72om0E589 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72om0E589 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72om0E589 .mbr-text_1,
.cid-v72om0E589 .mbr-text_2,
.cid-v72om0E589 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72om0E589 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72om0E589 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72om0E589 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72om0E589 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72om0E589 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72om0E589 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72om0E589 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72om0E589 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72om0E589 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72om0E589 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72om0E589 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72om0E589 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72om0E589 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72oiYEBrZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72oiYEBrZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v72oiYEBrZ .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v72oiYEBrZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v72oiYEBrZ .inner-container {
    width: 100% !important;
  }
}
.cid-skxOx1dWma {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skxOx1dWma .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-skxOx1dWma .section-text {
  padding: 2rem 0;
}
.cid-skxOx1dWma .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-skxOx1dWma .inner-container {
    width: 100% !important;
  }
}
.cid-u0tfvJayuM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u0tfvJayuM .mbr-section-subtitle {
  color: #767676;
}
.cid-u0tfvJayuM .container-table {
  margin: 0 auto;
}
.cid-u0tfvJayuM .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u0tfvJayuM .dataTables_wrapper {
  display: block;
}
.cid-u0tfvJayuM .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u0tfvJayuM .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u0tfvJayuM table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-u0tfvJayuM table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u0tfvJayuM table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-u0tfvJayuM table td {
  border-top: 1px solid #232323;
}
.cid-u0tfvJayuM table.table {
  background: #ecae15;
}
.cid-u0tfvJayuM .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u0tfvJayuM .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u0tfvJayuM .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u0tfvJayuM .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u0tfvJayuM .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u0tfvJayuM .dataTables_filter {
    text-align: center;
  }
  .cid-u0tfvJayuM .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u0tfvJayuM .mbr-section-title {
  color: #232323;
}
.cid-u0tfvJayuM .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-u0tfvJayuM .body-item {
  text-align: center;
}
.cid-skxOx2JXMj {
  background: #ecae15;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-skxOx2JXMj .image-block {
  margin: auto;
}
.cid-skxOx2JXMj figcaption {
  position: relative;
}
.cid-skxOx2JXMj figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-skxOx2JXMj .image-block {
    width: 100% !important;
  }
}
.cid-skxOx30lJv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-skxOx30lJv .mbr-section-subtitle {
  color: #232323;
}
.cid-skxOx30lJv .container-table {
  margin: 0 auto;
}
.cid-skxOx30lJv .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-skxOx30lJv .dataTables_wrapper {
  display: block;
}
.cid-skxOx30lJv .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-skxOx30lJv .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-skxOx30lJv table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-skxOx30lJv table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-skxOx30lJv table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-skxOx30lJv table td {
  border-top: 1px solid #232323;
}
.cid-skxOx30lJv table.table {
  background: #ecae15;
}
.cid-skxOx30lJv .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-skxOx30lJv .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-skxOx30lJv .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-skxOx30lJv .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-skxOx30lJv .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-skxOx30lJv .dataTables_filter {
    text-align: center;
  }
  .cid-skxOx30lJv .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-skxOx30lJv .mbr-section-title {
  color: #232323;
}
.cid-skxOx30lJv .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-skxOx30lJv .body-item {
  text-align: center;
  color: #212529;
}
.cid-skxPLUm44y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrWKHFwTV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrWKHFwTV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrWKHFwTV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrWKHFwTV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrWKHFwTV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrWKHFwTV .row > .row {
  display: block;
}
.cid-sTrWKHFwTV .mbr-gallery-item {
  width: 100%;
}
.cid-sTrWKHFwTV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrWKHFwTV .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrWKHFwTV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrWKHFwTV .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrWKHFwTV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrWKHFwTV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxPIjvdCq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrYoH1KCS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrYoH1KCS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrYoH1KCS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrYoH1KCS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrYoH1KCS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrYoH1KCS .row > .row {
  display: block;
}
.cid-sTrYoH1KCS .mbr-gallery-item {
  width: 100%;
}
.cid-sTrYoH1KCS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrYoH1KCS .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrYoH1KCS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrYoH1KCS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrYoH1KCS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrYoH1KCS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxPOQx8Kg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrYpDRQ7h {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrYpDRQ7h .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrYpDRQ7h .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrYpDRQ7h .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrYpDRQ7h .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrYpDRQ7h .row > .row {
  display: block;
}
.cid-sTrYpDRQ7h .mbr-gallery-item {
  width: 100%;
}
.cid-sTrYpDRQ7h .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrYpDRQ7h .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrYpDRQ7h .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrYpDRQ7h .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrYpDRQ7h .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrYpDRQ7h .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxPNVoyVY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrYqxl1kS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrYqxl1kS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrYqxl1kS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrYqxl1kS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrYqxl1kS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrYqxl1kS .row > .row {
  display: block;
}
.cid-sTrYqxl1kS .mbr-gallery-item {
  width: 100%;
}
.cid-sTrYqxl1kS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrYqxl1kS .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrYqxl1kS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrYqxl1kS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrYqxl1kS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrYqxl1kS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxPKImAbV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrYrl4tBf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrYrl4tBf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrYrl4tBf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrYrl4tBf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrYrl4tBf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrYrl4tBf .row > .row {
  display: block;
}
.cid-sTrYrl4tBf .mbr-gallery-item {
  width: 100%;
}
.cid-sTrYrl4tBf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrYrl4tBf .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrYrl4tBf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrYrl4tBf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrYrl4tBf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrYrl4tBf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxQHbdQT9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrYszZmxB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrYszZmxB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrYszZmxB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrYszZmxB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrYszZmxB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrYszZmxB .row > .row {
  display: block;
}
.cid-sTrYszZmxB .mbr-gallery-item {
  width: 100%;
}
.cid-sTrYszZmxB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrYszZmxB .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrYszZmxB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrYszZmxB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrYszZmxB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrYszZmxB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxQIgOLbH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrYtugfTR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrYtugfTR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrYtugfTR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrYtugfTR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrYtugfTR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrYtugfTR .row > .row {
  display: block;
}
.cid-sTrYtugfTR .mbr-gallery-item {
  width: 100%;
}
.cid-sTrYtugfTR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrYtugfTR .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrYtugfTR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrYtugfTR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrYtugfTR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrYtugfTR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOx8sHjK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrYujV9yW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrYujV9yW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrYujV9yW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrYujV9yW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrYujV9yW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrYujV9yW .row > .row {
  display: block;
}
.cid-sTrYujV9yW .mbr-gallery-item {
  width: 100%;
}
.cid-sTrYujV9yW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrYujV9yW .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrYujV9yW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrYujV9yW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrYujV9yW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrYujV9yW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skzRf9yVzT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrYvcTAaK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrYvcTAaK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrYvcTAaK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrYvcTAaK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrYvcTAaK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrYvcTAaK .row > .row {
  display: block;
}
.cid-sTrYvcTAaK .mbr-gallery-item {
  width: 100%;
}
.cid-sTrYvcTAaK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrYvcTAaK .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrYvcTAaK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrYvcTAaK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrYvcTAaK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrYvcTAaK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOxbn4de {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrYw8rb0D {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrYw8rb0D .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrYw8rb0D .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrYw8rb0D .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrYw8rb0D .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrYw8rb0D .row > .row {
  display: block;
}
.cid-sTrYw8rb0D .mbr-gallery-item {
  width: 100%;
}
.cid-sTrYw8rb0D .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrYw8rb0D .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrYw8rb0D .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrYw8rb0D .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrYw8rb0D .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrYw8rb0D .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOxdv9vA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrYxcppg1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrYxcppg1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrYxcppg1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrYxcppg1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrYxcppg1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrYxcppg1 .row > .row {
  display: block;
}
.cid-sTrYxcppg1 .mbr-gallery-item {
  width: 100%;
}
.cid-sTrYxcppg1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrYxcppg1 .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrYxcppg1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrYxcppg1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrYxcppg1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrYxcppg1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skzRRQg3vO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrYyeOmLs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrYyeOmLs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrYyeOmLs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrYyeOmLs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrYyeOmLs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrYyeOmLs .row > .row {
  display: block;
}
.cid-sTrYyeOmLs .mbr-gallery-item {
  width: 100%;
}
.cid-sTrYyeOmLs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrYyeOmLs .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrYyeOmLs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrYyeOmLs .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrYyeOmLs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrYyeOmLs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sHMLCxPD8h {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sxmgTx2oIM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sxmgTx2oIM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sxmgTx2oIM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sxmgTx2oIM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sxmgTx2oIM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sxmgTx2oIM .row > .row {
  display: block;
}
.cid-sxmgTx2oIM .mbr-gallery-item {
  width: 100%;
}
.cid-sxmgTx2oIM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sxmgTx2oIM .mbr-gallery-item > div {
  position: relative;
}
.cid-sxmgTx2oIM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sxmgTx2oIM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sxmgTx2oIM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sxmgTx2oIM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOxg4Dqd {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-skxOxg4Dqd .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-skxOxg4Dqd div.b {
  padding-top: 2rem;
}
.cid-skxOxg4Dqd H5 {
  color: #232323;
}
.cid-skxOMvFnMZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skxOMvFnMZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-skxOMvFnMZ .section-text {
  padding: 2rem 0;
}
.cid-skxOMvFnMZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-skxOMvFnMZ .inner-container {
    width: 100% !important;
  }
}
.cid-v78DtmzHmW {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #15ece0;
}
.cid-v78DtmzHmW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78DtmzHmW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78DtmzHmW .row {
  justify-content: center;
}
.cid-v78DtmzHmW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78DtmzHmW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78DtmzHmW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78DtmzHmW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78DtmzHmW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78DtmzHmW .mbr-text_1,
.cid-v78DtmzHmW .mbr-text_2,
.cid-v78DtmzHmW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78DtmzHmW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78DtmzHmW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78DtmzHmW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78DtmzHmW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78DtmzHmW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78DtmzHmW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78DtmzHmW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78DtmzHmW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78DtmzHmW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78DtmzHmW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78DtmzHmW .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78DtmzHmW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78DtmzHmW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78DulICOn {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #15ece0;
}
.cid-v78DulICOn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78DulICOn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78DulICOn .row {
  justify-content: center;
}
.cid-v78DulICOn .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78DulICOn .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78DulICOn .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78DulICOn .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78DulICOn .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78DulICOn .mbr-text_1,
.cid-v78DulICOn .mbr-text_2,
.cid-v78DulICOn .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78DulICOn .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78DulICOn .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78DulICOn .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78DulICOn .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78DulICOn .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78DulICOn .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78DulICOn .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78DulICOn .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78DulICOn .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78DulICOn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78DulICOn .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78DulICOn .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78DulICOn .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78DvKxkgp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78DvKxkgp .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v78DvKxkgp .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v78DvKxkgp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v78DvKxkgp .inner-container {
    width: 100% !important;
  }
}
.cid-v78DwQpiPK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78DwQpiPK .mbr-section-subtitle {
  color: #767676;
}
.cid-v78DwQpiPK .container-table {
  margin: 0 auto;
}
.cid-v78DwQpiPK .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v78DwQpiPK .dataTables_wrapper {
  display: block;
}
.cid-v78DwQpiPK .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v78DwQpiPK .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v78DwQpiPK table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v78DwQpiPK table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v78DwQpiPK table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v78DwQpiPK table td {
  border-top: 1px solid #232323;
}
.cid-v78DwQpiPK table.table {
  background: #15ece0;
}
.cid-v78DwQpiPK .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v78DwQpiPK .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v78DwQpiPK .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v78DwQpiPK .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v78DwQpiPK .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v78DwQpiPK .dataTables_filter {
    text-align: center;
  }
  .cid-v78DwQpiPK .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v78DwQpiPK .mbr-section-title {
  color: #232323;
}
.cid-v78DwQpiPK .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v78DwQpiPK .body-item {
  text-align: center;
}
.cid-sqIy3y8wc6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sqIy3y8wc6 .mbr-section-subtitle {
  color: #232323;
}
.cid-sqIy3y8wc6 .container-table {
  margin: 0 auto;
}
.cid-sqIy3y8wc6 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sqIy3y8wc6 .dataTables_wrapper {
  display: block;
}
.cid-sqIy3y8wc6 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sqIy3y8wc6 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sqIy3y8wc6 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-sqIy3y8wc6 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sqIy3y8wc6 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-sqIy3y8wc6 table td {
  border-top: 1px solid #232323;
}
.cid-sqIy3y8wc6 table.table {
  background: #15ece0;
}
.cid-sqIy3y8wc6 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sqIy3y8wc6 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sqIy3y8wc6 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sqIy3y8wc6 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sqIy3y8wc6 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sqIy3y8wc6 .dataTables_filter {
    text-align: center;
  }
  .cid-sqIy3y8wc6 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sqIy3y8wc6 .mbr-section-title {
  color: #232323;
}
.cid-sqIy3y8wc6 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-sqIy3y8wc6 .body-item {
  text-align: center;
  color: #232323;
}
.cid-skxOMwej3h {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-skxOMwej3h .image-block {
  margin: auto;
}
.cid-skxOMwej3h figcaption {
  position: relative;
}
.cid-skxOMwej3h figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-skxOMwej3h .image-block {
    width: 100% !important;
  }
}
.cid-skxOMwuF6m {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skxOMwB0pU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skxOMwB0pU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skxOMwB0pU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skxOMwB0pU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skxOMwB0pU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skxOMwB0pU .row > .row {
  display: block;
}
.cid-skxOMwB0pU .mbr-gallery-item {
  width: 100%;
}
.cid-skxOMwB0pU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skxOMwB0pU .mbr-gallery-item > div {
  position: relative;
}
.cid-skxOMwB0pU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skxOMwB0pU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skxOMwB0pU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skxOMwB0pU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOMx46jp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skxOMxdWft {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skxOMxdWft .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skxOMxdWft .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skxOMxdWft .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skxOMxdWft .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skxOMxdWft .row > .row {
  display: block;
}
.cid-skxOMxdWft .mbr-gallery-item {
  width: 100%;
}
.cid-skxOMxdWft .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skxOMxdWft .mbr-gallery-item > div {
  position: relative;
}
.cid-skxOMxdWft .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skxOMxdWft .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skxOMxdWft .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skxOMxdWft .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOMxyPzt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skxOMxHdOs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skxOMxHdOs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skxOMxHdOs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skxOMxHdOs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skxOMxHdOs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skxOMxHdOs .row > .row {
  display: block;
}
.cid-skxOMxHdOs .mbr-gallery-item {
  width: 100%;
}
.cid-skxOMxHdOs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skxOMxHdOs .mbr-gallery-item > div {
  position: relative;
}
.cid-skxOMxHdOs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skxOMxHdOs .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skxOMxHdOs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skxOMxHdOs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOMxY8Jq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skzWs8ApZG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skzWs8ApZG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skzWs8ApZG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skzWs8ApZG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skzWs8ApZG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skzWs8ApZG .row > .row {
  display: block;
}
.cid-skzWs8ApZG .mbr-gallery-item {
  width: 100%;
}
.cid-skzWs8ApZG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skzWs8ApZG .mbr-gallery-item > div {
  position: relative;
}
.cid-skzWs8ApZG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skzWs8ApZG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skzWs8ApZG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skzWs8ApZG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOMy7Ltk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skxOMylAiN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skxOMylAiN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skxOMylAiN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skxOMylAiN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skxOMylAiN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skxOMylAiN .row > .row {
  display: block;
}
.cid-skxOMylAiN .mbr-gallery-item {
  width: 100%;
}
.cid-skxOMylAiN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skxOMylAiN .mbr-gallery-item > div {
  position: relative;
}
.cid-skxOMylAiN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skxOMylAiN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skxOMylAiN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skxOMylAiN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOMyFDmr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skzWKYAtAH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skzWKYAtAH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skzWKYAtAH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skzWKYAtAH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skzWKYAtAH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skzWKYAtAH .row > .row {
  display: block;
}
.cid-skzWKYAtAH .mbr-gallery-item {
  width: 100%;
}
.cid-skzWKYAtAH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skzWKYAtAH .mbr-gallery-item > div {
  position: relative;
}
.cid-skzWKYAtAH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skzWKYAtAH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skzWKYAtAH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skzWKYAtAH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOMz6O7s {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skxOMzgoe2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skxOMzgoe2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skxOMzgoe2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skxOMzgoe2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skxOMzgoe2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skxOMzgoe2 .row > .row {
  display: block;
}
.cid-skxOMzgoe2 .mbr-gallery-item {
  width: 100%;
}
.cid-skxOMzgoe2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skxOMzgoe2 .mbr-gallery-item > div {
  position: relative;
}
.cid-skxOMzgoe2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skxOMzgoe2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skxOMzgoe2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skxOMzgoe2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOMzv16F {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skxOMzKOfE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skxOMzKOfE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skxOMzKOfE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skxOMzKOfE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skxOMzKOfE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skxOMzKOfE .row > .row {
  display: block;
}
.cid-skxOMzKOfE .mbr-gallery-item {
  width: 100%;
}
.cid-skxOMzKOfE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skxOMzKOfE .mbr-gallery-item > div {
  position: relative;
}
.cid-skxOMzKOfE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skxOMzKOfE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skxOMzKOfE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skxOMzKOfE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOMzZnZh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skzWNvRJnA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skzWNvRJnA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skzWNvRJnA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skzWNvRJnA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skzWNvRJnA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skzWNvRJnA .row > .row {
  display: block;
}
.cid-skzWNvRJnA .mbr-gallery-item {
  width: 100%;
}
.cid-skzWNvRJnA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skzWNvRJnA .mbr-gallery-item > div {
  position: relative;
}
.cid-skzWNvRJnA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skzWNvRJnA .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skzWNvRJnA .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skzWNvRJnA .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOMAzmLg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skzWOx4f0S {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skzWOx4f0S .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skzWOx4f0S .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skzWOx4f0S .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skzWOx4f0S .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skzWOx4f0S .row > .row {
  display: block;
}
.cid-skzWOx4f0S .mbr-gallery-item {
  width: 100%;
}
.cid-skzWOx4f0S .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skzWOx4f0S .mbr-gallery-item > div {
  position: relative;
}
.cid-skzWOx4f0S .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skzWOx4f0S .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skzWOx4f0S .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skzWOx4f0S .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOMBcINq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skzWPyQFke {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skzWPyQFke .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skzWPyQFke .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skzWPyQFke .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skzWPyQFke .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skzWPyQFke .row > .row {
  display: block;
}
.cid-skzWPyQFke .mbr-gallery-item {
  width: 100%;
}
.cid-skzWPyQFke .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skzWPyQFke .mbr-gallery-item > div {
  position: relative;
}
.cid-skzWPyQFke .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skzWPyQFke .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skzWPyQFke .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skzWPyQFke .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOMBN1pk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-skzWQt0YDN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-skzWQt0YDN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-skzWQt0YDN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-skzWQt0YDN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-skzWQt0YDN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-skzWQt0YDN .row > .row {
  display: block;
}
.cid-skzWQt0YDN .mbr-gallery-item {
  width: 100%;
}
.cid-skzWQt0YDN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-skzWQt0YDN .mbr-gallery-item > div {
  position: relative;
}
.cid-skzWQt0YDN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-skzWQt0YDN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-skzWQt0YDN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-skzWQt0YDN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-skxOMCuCkD {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #15ece0;
}
.cid-skxOMCuCkD .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-skxOMCuCkD div.b {
  padding-top: 2rem;
}
.cid-skxOMCuCkD H5 {
  color: #232323;
}
.cid-suPtoYneZR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suPtoYneZR .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suPtoYneZR .section-text {
  padding: 2rem 0;
}
.cid-suPtoYneZR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suPtoYneZR .inner-container {
    width: 100% !important;
  }
}
.cid-v7vFYik9Ld {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vFYik9Ld .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vFYik9Ld .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vFYik9Ld .row {
  justify-content: center;
}
.cid-v7vFYik9Ld .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vFYik9Ld .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vFYik9Ld .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vFYik9Ld .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vFYik9Ld .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vFYik9Ld .mbr-text_1,
.cid-v7vFYik9Ld .mbr-text_2,
.cid-v7vFYik9Ld .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vFYik9Ld .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFYik9Ld .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vFYik9Ld .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vFYik9Ld .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vFYik9Ld .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFYik9Ld .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vFYik9Ld .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vFYik9Ld .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFYik9Ld .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vFYik9Ld .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vFYik9Ld .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vFYik9Ld .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vFYik9Ld .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vFZhTXRz {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vFZhTXRz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vFZhTXRz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vFZhTXRz .row {
  justify-content: center;
}
.cid-v7vFZhTXRz .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vFZhTXRz .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vFZhTXRz .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vFZhTXRz .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vFZhTXRz .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vFZhTXRz .mbr-text_1,
.cid-v7vFZhTXRz .mbr-text_2,
.cid-v7vFZhTXRz .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vFZhTXRz .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFZhTXRz .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vFZhTXRz .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vFZhTXRz .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vFZhTXRz .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFZhTXRz .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vFZhTXRz .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vFZhTXRz .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vFZhTXRz .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vFZhTXRz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vFZhTXRz .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vFZhTXRz .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vFZhTXRz .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suPtoYQR1M {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suPtoYQR1M .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suPtoYQR1M .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suPtoYQR1M .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suPtoYQR1M .inner-container {
    width: 100% !important;
  }
}
.cid-suPuQY3dtw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suPuRS1LIl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suPuRS1LIl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suPuRS1LIl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suPuRS1LIl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suPuRS1LIl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suPuRS1LIl .row > .row {
  display: block;
}
.cid-suPuRS1LIl .mbr-gallery-item {
  width: 100%;
}
.cid-suPuRS1LIl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suPuRS1LIl .mbr-gallery-item > div {
  position: relative;
}
.cid-suPuRS1LIl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suPuRS1LIl .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suPuRS1LIl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suPuRS1LIl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-suPtoZdIGJ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suPtoZdIGJ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suPtoZdIGJ div.b {
  padding-top: 2rem;
}
.cid-suPtoZdIGJ H5 {
  color: #232323;
}
.cid-suR6uFraqN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suR6uFraqN .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suR6uFraqN .section-text {
  padding: 2rem 0;
}
.cid-suR6uFraqN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suR6uFraqN .inner-container {
    width: 100% !important;
  }
}
.cid-v7vBNb5FqT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vBNb5FqT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vBNb5FqT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vBNb5FqT .row {
  justify-content: center;
}
.cid-v7vBNb5FqT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vBNb5FqT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vBNb5FqT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vBNb5FqT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vBNb5FqT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vBNb5FqT .mbr-text_1,
.cid-v7vBNb5FqT .mbr-text_2,
.cid-v7vBNb5FqT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vBNb5FqT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBNb5FqT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vBNb5FqT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vBNb5FqT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vBNb5FqT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBNb5FqT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vBNb5FqT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vBNb5FqT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBNb5FqT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vBNb5FqT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vBNb5FqT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vBNb5FqT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vBNb5FqT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vBO1nJ9q {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vBO1nJ9q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vBO1nJ9q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vBO1nJ9q .row {
  justify-content: center;
}
.cid-v7vBO1nJ9q .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vBO1nJ9q .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vBO1nJ9q .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vBO1nJ9q .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vBO1nJ9q .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vBO1nJ9q .mbr-text_1,
.cid-v7vBO1nJ9q .mbr-text_2,
.cid-v7vBO1nJ9q .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vBO1nJ9q .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBO1nJ9q .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vBO1nJ9q .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vBO1nJ9q .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vBO1nJ9q .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBO1nJ9q .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vBO1nJ9q .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vBO1nJ9q .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBO1nJ9q .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vBO1nJ9q .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vBO1nJ9q .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vBO1nJ9q .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vBO1nJ9q .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suR6uG6Twi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suR6uG6Twi .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suR6uG6Twi .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suR6uG6Twi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suR6uG6Twi .inner-container {
    width: 100% !important;
  }
}
.cid-suR95wMGbH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suR9aRw1dJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suR9aRw1dJ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suR9aRw1dJ .section-text {
  padding: 2rem 0;
}
.cid-suR9aRw1dJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suR9aRw1dJ .inner-container {
    width: 100% !important;
  }
}
.cid-suR9aRw1dJ .section-text DIV {
  text-align: center;
}
.cid-suR6uGS8YT {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suR6uGS8YT .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suR6uGS8YT div.b {
  padding-top: 2rem;
}
.cid-suR6uGS8YT H5 {
  color: #232323;
}
.cid-suR71QkKKW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suR71QkKKW .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suR71QkKKW .section-text {
  padding: 2rem 0;
}
.cid-suR71QkKKW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suR71QkKKW .inner-container {
    width: 100% !important;
  }
}
.cid-v7vAntvsBN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vAntvsBN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vAntvsBN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vAntvsBN .row {
  justify-content: center;
}
.cid-v7vAntvsBN .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vAntvsBN .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vAntvsBN .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vAntvsBN .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vAntvsBN .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vAntvsBN .mbr-text_1,
.cid-v7vAntvsBN .mbr-text_2,
.cid-v7vAntvsBN .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vAntvsBN .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAntvsBN .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vAntvsBN .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vAntvsBN .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vAntvsBN .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAntvsBN .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vAntvsBN .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vAntvsBN .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAntvsBN .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vAntvsBN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vAntvsBN .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vAntvsBN .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vAntvsBN .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vAo8snHT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vAo8snHT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vAo8snHT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vAo8snHT .row {
  justify-content: center;
}
.cid-v7vAo8snHT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vAo8snHT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vAo8snHT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vAo8snHT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vAo8snHT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vAo8snHT .mbr-text_1,
.cid-v7vAo8snHT .mbr-text_2,
.cid-v7vAo8snHT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vAo8snHT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAo8snHT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vAo8snHT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vAo8snHT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vAo8snHT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAo8snHT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vAo8snHT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vAo8snHT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAo8snHT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vAo8snHT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vAo8snHT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vAo8snHT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vAo8snHT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suR71QBWxe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suR71QBWxe .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suR71QBWxe .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suR71QBWxe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suR71QBWxe .inner-container {
    width: 100% !important;
  }
}
.cid-suR7ty0NSl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suR7Um1XsT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suR7Um1XsT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suR7Um1XsT .section-text {
  padding: 2rem 0;
}
.cid-suR7Um1XsT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suR7Um1XsT .inner-container {
    width: 100% !important;
  }
}
.cid-suR7Um1XsT .section-text DIV {
  text-align: center;
}
.cid-suR71RagLs {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suR71RagLs .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suR71RagLs div.b {
  padding-top: 2rem;
}
.cid-suR71RagLs H5 {
  color: #232323;
}
.cid-suRaoynRVw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRaoynRVw .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suRaoynRVw .section-text {
  padding: 2rem 0;
}
.cid-suRaoynRVw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suRaoynRVw .inner-container {
    width: 100% !important;
  }
}
.cid-v7vBAi8YHJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vBAi8YHJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vBAi8YHJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vBAi8YHJ .row {
  justify-content: center;
}
.cid-v7vBAi8YHJ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vBAi8YHJ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vBAi8YHJ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vBAi8YHJ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vBAi8YHJ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vBAi8YHJ .mbr-text_1,
.cid-v7vBAi8YHJ .mbr-text_2,
.cid-v7vBAi8YHJ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vBAi8YHJ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBAi8YHJ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vBAi8YHJ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vBAi8YHJ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vBAi8YHJ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBAi8YHJ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vBAi8YHJ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vBAi8YHJ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBAi8YHJ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vBAi8YHJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vBAi8YHJ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vBAi8YHJ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vBAi8YHJ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vBB2OSwT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vBB2OSwT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vBB2OSwT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vBB2OSwT .row {
  justify-content: center;
}
.cid-v7vBB2OSwT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vBB2OSwT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vBB2OSwT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vBB2OSwT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vBB2OSwT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vBB2OSwT .mbr-text_1,
.cid-v7vBB2OSwT .mbr-text_2,
.cid-v7vBB2OSwT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vBB2OSwT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBB2OSwT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vBB2OSwT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vBB2OSwT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vBB2OSwT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBB2OSwT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vBB2OSwT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vBB2OSwT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBB2OSwT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vBB2OSwT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vBB2OSwT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vBB2OSwT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vBB2OSwT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suRaoyQIHU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRaoyQIHU .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suRaoyQIHU .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suRaoyQIHU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suRaoyQIHU .inner-container {
    width: 100% !important;
  }
}
.cid-suRaoyYDbn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suRaoz4B5o {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRaoz4B5o .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suRaoz4B5o .section-text {
  padding: 2rem 0;
}
.cid-suRaoz4B5o .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suRaoz4B5o .inner-container {
    width: 100% !important;
  }
}
.cid-suRaoz4B5o .section-text DIV {
  text-align: center;
}
.cid-suRaozbeiS {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suRaozbeiS .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suRaozbeiS div.b {
  padding-top: 2rem;
}
.cid-suRaozbeiS H5 {
  color: #232323;
}
.cid-suRbTkqcfI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRbTkqcfI .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suRbTkqcfI .section-text {
  padding: 2rem 0;
}
.cid-suRbTkqcfI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suRbTkqcfI .inner-container {
    width: 100% !important;
  }
}
.cid-v7vBmxYL14 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vBmxYL14 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vBmxYL14 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vBmxYL14 .row {
  justify-content: center;
}
.cid-v7vBmxYL14 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vBmxYL14 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vBmxYL14 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vBmxYL14 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vBmxYL14 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vBmxYL14 .mbr-text_1,
.cid-v7vBmxYL14 .mbr-text_2,
.cid-v7vBmxYL14 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vBmxYL14 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBmxYL14 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vBmxYL14 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vBmxYL14 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vBmxYL14 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBmxYL14 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vBmxYL14 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vBmxYL14 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBmxYL14 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vBmxYL14 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vBmxYL14 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vBmxYL14 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vBmxYL14 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vBnm4C3t {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vBnm4C3t .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vBnm4C3t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vBnm4C3t .row {
  justify-content: center;
}
.cid-v7vBnm4C3t .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vBnm4C3t .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vBnm4C3t .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vBnm4C3t .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vBnm4C3t .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vBnm4C3t .mbr-text_1,
.cid-v7vBnm4C3t .mbr-text_2,
.cid-v7vBnm4C3t .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vBnm4C3t .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBnm4C3t .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vBnm4C3t .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vBnm4C3t .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vBnm4C3t .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBnm4C3t .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vBnm4C3t .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vBnm4C3t .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vBnm4C3t .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vBnm4C3t .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vBnm4C3t .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vBnm4C3t .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vBnm4C3t .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suRbTkTm1p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRbTkTm1p .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suRbTkTm1p .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suRbTkTm1p .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suRbTkTm1p .inner-container {
    width: 100% !important;
  }
}
.cid-suRbTl1sPm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suRcggXEij {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRcggXEij .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suRcggXEij .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suRcggXEij .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suRcggXEij .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suRcggXEij .row > .row {
  display: block;
}
.cid-suRcggXEij .mbr-gallery-item {
  width: 100%;
}
.cid-suRcggXEij .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suRcggXEij .mbr-gallery-item > div {
  position: relative;
}
.cid-suRcggXEij .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suRcggXEij .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suRcggXEij .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suRcggXEij .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-suRbTl7kNh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRbTl7kNh .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suRbTl7kNh .section-text {
  padding: 2rem 0;
}
.cid-suRbTl7kNh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suRbTl7kNh .inner-container {
    width: 100% !important;
  }
}
.cid-suRbTl7kNh .section-text DIV {
  text-align: center;
}
.cid-suRbTle1rp {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suRbTle1rp .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suRbTle1rp div.b {
  padding-top: 2rem;
}
.cid-suRbTle1rp H5 {
  color: #232323;
}
.cid-suReps8YMl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suReps8YMl .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suReps8YMl .section-text {
  padding: 2rem 0;
}
.cid-suReps8YMl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suReps8YMl .inner-container {
    width: 100% !important;
  }
}
.cid-v7vADTK3NX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vADTK3NX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vADTK3NX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vADTK3NX .row {
  justify-content: center;
}
.cid-v7vADTK3NX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vADTK3NX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vADTK3NX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vADTK3NX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vADTK3NX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vADTK3NX .mbr-text_1,
.cid-v7vADTK3NX .mbr-text_2,
.cid-v7vADTK3NX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vADTK3NX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vADTK3NX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vADTK3NX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vADTK3NX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vADTK3NX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vADTK3NX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vADTK3NX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vADTK3NX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vADTK3NX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vADTK3NX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vADTK3NX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vADTK3NX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vADTK3NX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vAEL8mDy {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vAEL8mDy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vAEL8mDy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vAEL8mDy .row {
  justify-content: center;
}
.cid-v7vAEL8mDy .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vAEL8mDy .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vAEL8mDy .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vAEL8mDy .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vAEL8mDy .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vAEL8mDy .mbr-text_1,
.cid-v7vAEL8mDy .mbr-text_2,
.cid-v7vAEL8mDy .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vAEL8mDy .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAEL8mDy .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vAEL8mDy .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vAEL8mDy .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vAEL8mDy .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAEL8mDy .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vAEL8mDy .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vAEL8mDy .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAEL8mDy .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vAEL8mDy .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vAEL8mDy .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vAEL8mDy .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vAEL8mDy .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suRepsB11L {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRepsB11L .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suRepsB11L .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suRepsB11L .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suRepsB11L .inner-container {
    width: 100% !important;
  }
}
.cid-suRepsIIGI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suRepsPwd4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRepsPwd4 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suRepsPwd4 .section-text {
  padding: 2rem 0;
}
.cid-suRepsPwd4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suRepsPwd4 .inner-container {
    width: 100% !important;
  }
}
.cid-suRepsPwd4 .section-text DIV {
  text-align: center;
}
.cid-suReYq0fqo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suReYq0fqo .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suReYq0fqo .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suReYq0fqo .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suReYq0fqo .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suReYq0fqo .row > .row {
  display: block;
}
.cid-suReYq0fqo .mbr-gallery-item {
  width: 100%;
}
.cid-suReYq0fqo .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suReYq0fqo .mbr-gallery-item > div {
  position: relative;
}
.cid-suReYq0fqo .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suReYq0fqo .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suReYq0fqo .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suReYq0fqo .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-suRepsXNJP {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suRepsXNJP .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suRepsXNJP div.b {
  padding-top: 2rem;
}
.cid-suRepsXNJP H5 {
  color: #232323;
}
.cid-suRgFooNra {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRgFooNra .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suRgFooNra .section-text {
  padding: 2rem 0;
}
.cid-suRgFooNra .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suRgFooNra .inner-container {
    width: 100% !important;
  }
}
.cid-v7vAUPEg1v {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vAUPEg1v .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vAUPEg1v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vAUPEg1v .row {
  justify-content: center;
}
.cid-v7vAUPEg1v .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vAUPEg1v .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vAUPEg1v .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vAUPEg1v .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vAUPEg1v .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vAUPEg1v .mbr-text_1,
.cid-v7vAUPEg1v .mbr-text_2,
.cid-v7vAUPEg1v .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vAUPEg1v .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAUPEg1v .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vAUPEg1v .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vAUPEg1v .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vAUPEg1v .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAUPEg1v .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vAUPEg1v .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vAUPEg1v .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAUPEg1v .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vAUPEg1v .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vAUPEg1v .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vAUPEg1v .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vAUPEg1v .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vAVLxqGf {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vAVLxqGf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vAVLxqGf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vAVLxqGf .row {
  justify-content: center;
}
.cid-v7vAVLxqGf .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vAVLxqGf .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vAVLxqGf .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vAVLxqGf .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vAVLxqGf .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vAVLxqGf .mbr-text_1,
.cid-v7vAVLxqGf .mbr-text_2,
.cid-v7vAVLxqGf .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vAVLxqGf .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAVLxqGf .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vAVLxqGf .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vAVLxqGf .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vAVLxqGf .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAVLxqGf .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vAVLxqGf .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vAVLxqGf .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vAVLxqGf .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vAVLxqGf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vAVLxqGf .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vAVLxqGf .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vAVLxqGf .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suRgFoR9VM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRgFoR9VM .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suRgFoR9VM .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suRgFoR9VM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suRgFoR9VM .inner-container {
    width: 100% !important;
  }
}
.cid-suRgFoZDjS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suRgFpeGSp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRgFpeGSp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suRgFpeGSp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suRgFpeGSp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suRgFpeGSp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suRgFpeGSp .row > .row {
  display: block;
}
.cid-suRgFpeGSp .mbr-gallery-item {
  width: 100%;
}
.cid-suRgFpeGSp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suRgFpeGSp .mbr-gallery-item > div {
  position: relative;
}
.cid-suRgFpeGSp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suRgFpeGSp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suRgFpeGSp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suRgFpeGSp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-suRgFpw8dL {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suRgFpw8dL .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suRgFpw8dL div.b {
  padding-top: 2rem;
}
.cid-suRgFpw8dL H5 {
  color: #232323;
}
.cid-suRhCwunBc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRhCwunBc .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suRhCwunBc .section-text {
  padding: 2rem 0;
}
.cid-suRhCwunBc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suRhCwunBc .inner-container {
    width: 100% !important;
  }
}
.cid-v7vB7fpAKb {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vB7fpAKb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vB7fpAKb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vB7fpAKb .row {
  justify-content: center;
}
.cid-v7vB7fpAKb .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vB7fpAKb .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vB7fpAKb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vB7fpAKb .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vB7fpAKb .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vB7fpAKb .mbr-text_1,
.cid-v7vB7fpAKb .mbr-text_2,
.cid-v7vB7fpAKb .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vB7fpAKb .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vB7fpAKb .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vB7fpAKb .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vB7fpAKb .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vB7fpAKb .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vB7fpAKb .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vB7fpAKb .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vB7fpAKb .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vB7fpAKb .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vB7fpAKb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vB7fpAKb .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vB7fpAKb .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vB7fpAKb .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vB82Jrym {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vB82Jrym .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vB82Jrym .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vB82Jrym .row {
  justify-content: center;
}
.cid-v7vB82Jrym .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vB82Jrym .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vB82Jrym .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vB82Jrym .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vB82Jrym .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vB82Jrym .mbr-text_1,
.cid-v7vB82Jrym .mbr-text_2,
.cid-v7vB82Jrym .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vB82Jrym .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vB82Jrym .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vB82Jrym .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vB82Jrym .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vB82Jrym .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vB82Jrym .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vB82Jrym .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vB82Jrym .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vB82Jrym .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vB82Jrym .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vB82Jrym .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vB82Jrym .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vB82Jrym .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suRhCwXGln {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRhCwXGln .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suRhCwXGln .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suRhCwXGln .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suRhCwXGln .inner-container {
    width: 100% !important;
  }
}
.cid-suRhCx6dW1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suRhCxcVkh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suRhCxcVkh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suRhCxcVkh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suRhCxcVkh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suRhCxcVkh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suRhCxcVkh .row > .row {
  display: block;
}
.cid-suRhCxcVkh .mbr-gallery-item {
  width: 100%;
}
.cid-suRhCxcVkh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suRhCxcVkh .mbr-gallery-item > div {
  position: relative;
}
.cid-suRhCxcVkh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suRhCxcVkh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suRhCxcVkh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suRhCxcVkh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-suRhCxxxMu {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suRhCxxxMu .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suRhCxxxMu div.b {
  padding-top: 2rem;
}
.cid-suRhCxxxMu H5 {
  color: #232323;
}
.cid-suUO4wVbPp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUO4wVbPp .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUO4wVbPp .section-text {
  padding: 2rem 0;
}
.cid-suUO4wVbPp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUO4wVbPp .inner-container {
    width: 100% !important;
  }
}
.cid-v7vxtU5Jg2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vxtU5Jg2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vxtU5Jg2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vxtU5Jg2 .row {
  justify-content: center;
}
.cid-v7vxtU5Jg2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vxtU5Jg2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vxtU5Jg2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vxtU5Jg2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vxtU5Jg2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vxtU5Jg2 .mbr-text_1,
.cid-v7vxtU5Jg2 .mbr-text_2,
.cid-v7vxtU5Jg2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vxtU5Jg2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxtU5Jg2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vxtU5Jg2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vxtU5Jg2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vxtU5Jg2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxtU5Jg2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vxtU5Jg2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vxtU5Jg2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxtU5Jg2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vxtU5Jg2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vxtU5Jg2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vxtU5Jg2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vxtU5Jg2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vxuGcUCA {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vxuGcUCA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vxuGcUCA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vxuGcUCA .row {
  justify-content: center;
}
.cid-v7vxuGcUCA .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vxuGcUCA .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vxuGcUCA .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vxuGcUCA .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vxuGcUCA .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vxuGcUCA .mbr-text_1,
.cid-v7vxuGcUCA .mbr-text_2,
.cid-v7vxuGcUCA .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vxuGcUCA .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxuGcUCA .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vxuGcUCA .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vxuGcUCA .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vxuGcUCA .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxuGcUCA .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vxuGcUCA .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vxuGcUCA .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxuGcUCA .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vxuGcUCA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vxuGcUCA .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vxuGcUCA .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vxuGcUCA .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suUO4xnBFg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUO4xnBFg .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUO4xnBFg .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suUO4xnBFg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUO4xnBFg .inner-container {
    width: 100% !important;
  }
}
.cid-suUO4xuCBS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suUP7s8FVT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUP7s8FVT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suUP7s8FVT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suUP7s8FVT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suUP7s8FVT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suUP7s8FVT .row > .row {
  display: block;
}
.cid-suUP7s8FVT .mbr-gallery-item {
  width: 100%;
}
.cid-suUP7s8FVT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suUP7s8FVT .mbr-gallery-item > div {
  position: relative;
}
.cid-suUP7s8FVT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suUP7s8FVT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suUP7s8FVT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suUP7s8FVT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-suUO4xJm1b {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suUO4xJm1b .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suUO4xJm1b div.b {
  padding-top: 2rem;
}
.cid-suUO4xJm1b H5 {
  color: #232323;
}
.cid-suUQYnxLTK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUQYnxLTK .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUQYnxLTK .section-text {
  padding: 2rem 0;
}
.cid-suUQYnxLTK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUQYnxLTK .inner-container {
    width: 100% !important;
  }
}
.cid-v7vxKEM9PA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vxKEM9PA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vxKEM9PA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vxKEM9PA .row {
  justify-content: center;
}
.cid-v7vxKEM9PA .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vxKEM9PA .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vxKEM9PA .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vxKEM9PA .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vxKEM9PA .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vxKEM9PA .mbr-text_1,
.cid-v7vxKEM9PA .mbr-text_2,
.cid-v7vxKEM9PA .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vxKEM9PA .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxKEM9PA .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vxKEM9PA .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vxKEM9PA .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vxKEM9PA .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxKEM9PA .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vxKEM9PA .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vxKEM9PA .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxKEM9PA .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vxKEM9PA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vxKEM9PA .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vxKEM9PA .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vxKEM9PA .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vxLqtRBv {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vxLqtRBv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vxLqtRBv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vxLqtRBv .row {
  justify-content: center;
}
.cid-v7vxLqtRBv .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vxLqtRBv .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vxLqtRBv .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vxLqtRBv .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vxLqtRBv .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vxLqtRBv .mbr-text_1,
.cid-v7vxLqtRBv .mbr-text_2,
.cid-v7vxLqtRBv .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vxLqtRBv .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxLqtRBv .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vxLqtRBv .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vxLqtRBv .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vxLqtRBv .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxLqtRBv .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vxLqtRBv .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vxLqtRBv .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxLqtRBv .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vxLqtRBv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vxLqtRBv .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vxLqtRBv .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vxLqtRBv .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suUQYo1DiY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUQYo1DiY .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUQYo1DiY .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suUQYo1DiY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUQYo1DiY .inner-container {
    width: 100% !important;
  }
}
.cid-suUQYo8CJi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suUQYoe0y0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUQYoe0y0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suUQYoe0y0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suUQYoe0y0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suUQYoe0y0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suUQYoe0y0 .row > .row {
  display: block;
}
.cid-suUQYoe0y0 .mbr-gallery-item {
  width: 100%;
}
.cid-suUQYoe0y0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suUQYoe0y0 .mbr-gallery-item > div {
  position: relative;
}
.cid-suUQYoe0y0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suUQYoe0y0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suUQYoe0y0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suUQYoe0y0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-suUQYoB8rF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUQYoB8rF .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUQYoB8rF .section-text {
  padding: 2rem 0;
}
.cid-suUQYoB8rF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUQYoB8rF .inner-container {
    width: 100% !important;
  }
}
.cid-suUQYoB8rF .section-text DIV {
  text-align: center;
}
.cid-suUQYoIsvX {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suUQYoIsvX .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suUQYoIsvX div.b {
  padding-top: 2rem;
}
.cid-suUQYoIsvX H5 {
  color: #232323;
}
.cid-suUSXWo6yn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUSXWo6yn .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUSXWo6yn .section-text {
  padding: 2rem 0;
}
.cid-suUSXWo6yn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUSXWo6yn .inner-container {
    width: 100% !important;
  }
}
.cid-v7vxZyZX8E {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vxZyZX8E .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vxZyZX8E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vxZyZX8E .row {
  justify-content: center;
}
.cid-v7vxZyZX8E .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vxZyZX8E .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vxZyZX8E .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vxZyZX8E .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vxZyZX8E .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vxZyZX8E .mbr-text_1,
.cid-v7vxZyZX8E .mbr-text_2,
.cid-v7vxZyZX8E .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vxZyZX8E .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxZyZX8E .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vxZyZX8E .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vxZyZX8E .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vxZyZX8E .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxZyZX8E .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vxZyZX8E .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vxZyZX8E .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vxZyZX8E .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vxZyZX8E .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vxZyZX8E .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vxZyZX8E .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vxZyZX8E .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vy0A4rAj {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vy0A4rAj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vy0A4rAj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vy0A4rAj .row {
  justify-content: center;
}
.cid-v7vy0A4rAj .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vy0A4rAj .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vy0A4rAj .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vy0A4rAj .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vy0A4rAj .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vy0A4rAj .mbr-text_1,
.cid-v7vy0A4rAj .mbr-text_2,
.cid-v7vy0A4rAj .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vy0A4rAj .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vy0A4rAj .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vy0A4rAj .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vy0A4rAj .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vy0A4rAj .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vy0A4rAj .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vy0A4rAj .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vy0A4rAj .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vy0A4rAj .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vy0A4rAj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vy0A4rAj .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vy0A4rAj .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vy0A4rAj .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suUSXWRq9z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUSXWRq9z .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUSXWRq9z .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suUSXWRq9z .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUSXWRq9z .inner-container {
    width: 100% !important;
  }
}
.cid-suUSXWZneH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suUSXXugh5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUSXXugh5 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUSXXugh5 .section-text {
  padding: 2rem 0;
}
.cid-suUSXXugh5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUSXXugh5 .inner-container {
    width: 100% !important;
  }
}
.cid-suUSXXugh5 .section-text DIV {
  text-align: center;
}
.cid-suUSXXCJ5b {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suUSXXCJ5b .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suUSXXCJ5b div.b {
  padding-top: 2rem;
}
.cid-suUSXXCJ5b H5 {
  color: #232323;
}
.cid-suUTXVaARR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUTXVaARR .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUTXVaARR .section-text {
  padding: 2rem 0;
}
.cid-suUTXVaARR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUTXVaARR .inner-container {
    width: 100% !important;
  }
}
.cid-v7vyu1lOF6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vyu1lOF6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vyu1lOF6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vyu1lOF6 .row {
  justify-content: center;
}
.cid-v7vyu1lOF6 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vyu1lOF6 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vyu1lOF6 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vyu1lOF6 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vyu1lOF6 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vyu1lOF6 .mbr-text_1,
.cid-v7vyu1lOF6 .mbr-text_2,
.cid-v7vyu1lOF6 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vyu1lOF6 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vyu1lOF6 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vyu1lOF6 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vyu1lOF6 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vyu1lOF6 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vyu1lOF6 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vyu1lOF6 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vyu1lOF6 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vyu1lOF6 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vyu1lOF6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vyu1lOF6 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vyu1lOF6 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vyu1lOF6 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vyuNEu1B {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vyuNEu1B .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vyuNEu1B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vyuNEu1B .row {
  justify-content: center;
}
.cid-v7vyuNEu1B .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vyuNEu1B .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vyuNEu1B .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vyuNEu1B .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vyuNEu1B .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vyuNEu1B .mbr-text_1,
.cid-v7vyuNEu1B .mbr-text_2,
.cid-v7vyuNEu1B .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vyuNEu1B .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vyuNEu1B .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vyuNEu1B .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vyuNEu1B .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vyuNEu1B .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vyuNEu1B .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vyuNEu1B .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vyuNEu1B .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vyuNEu1B .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vyuNEu1B .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vyuNEu1B .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vyuNEu1B .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vyuNEu1B .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suUTXVEAv1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUTXVEAv1 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUTXVEAv1 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suUTXVEAv1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUTXVEAv1 .inner-container {
    width: 100% !important;
  }
}
.cid-suUTXVMrje {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suUTXWesri {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUTXWesri .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUTXWesri .section-text {
  padding: 2rem 0;
}
.cid-suUTXWesri .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUTXWesri .inner-container {
    width: 100% !important;
  }
}
.cid-suUTXWesri .section-text DIV {
  text-align: center;
}
.cid-suUTXWmQ8M {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suUTXWmQ8M .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suUTXWmQ8M div.b {
  padding-top: 2rem;
}
.cid-suUTXWmQ8M H5 {
  color: #232323;
}
.cid-suUVO27msg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUVO27msg .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUVO27msg .section-text {
  padding: 2rem 0;
}
.cid-suUVO27msg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUVO27msg .inner-container {
    width: 100% !important;
  }
}
.cid-v7vzbecbaa {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vzbecbaa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vzbecbaa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vzbecbaa .row {
  justify-content: center;
}
.cid-v7vzbecbaa .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vzbecbaa .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vzbecbaa .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vzbecbaa .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vzbecbaa .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vzbecbaa .mbr-text_1,
.cid-v7vzbecbaa .mbr-text_2,
.cid-v7vzbecbaa .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vzbecbaa .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzbecbaa .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vzbecbaa .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vzbecbaa .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vzbecbaa .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzbecbaa .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vzbecbaa .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vzbecbaa .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzbecbaa .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vzbecbaa .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vzbecbaa .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vzbecbaa .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vzbecbaa .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vzc4snkl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vzc4snkl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vzc4snkl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vzc4snkl .row {
  justify-content: center;
}
.cid-v7vzc4snkl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vzc4snkl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vzc4snkl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vzc4snkl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vzc4snkl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vzc4snkl .mbr-text_1,
.cid-v7vzc4snkl .mbr-text_2,
.cid-v7vzc4snkl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vzc4snkl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzc4snkl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vzc4snkl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vzc4snkl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vzc4snkl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzc4snkl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vzc4snkl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vzc4snkl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzc4snkl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vzc4snkl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vzc4snkl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vzc4snkl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vzc4snkl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suUVO2A3L0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUVO2A3L0 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUVO2A3L0 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suUVO2A3L0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUVO2A3L0 .inner-container {
    width: 100% !important;
  }
}
.cid-suUVO2IrLD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suUVO3btTH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUVO3btTH .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUVO3btTH .section-text {
  padding: 2rem 0;
}
.cid-suUVO3btTH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUVO3btTH .inner-container {
    width: 100% !important;
  }
}
.cid-suUVO3btTH .section-text DIV {
  text-align: center;
}
.cid-suUVO3juO8 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suUVO3juO8 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suUVO3juO8 div.b {
  padding-top: 2rem;
}
.cid-suUVO3juO8 H5 {
  color: #232323;
}
.cid-suUWf1SPvJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUWf1SPvJ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUWf1SPvJ .section-text {
  padding: 2rem 0;
}
.cid-suUWf1SPvJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUWf1SPvJ .inner-container {
    width: 100% !important;
  }
}
.cid-v7vzoXBP5K {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vzoXBP5K .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vzoXBP5K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vzoXBP5K .row {
  justify-content: center;
}
.cid-v7vzoXBP5K .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vzoXBP5K .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vzoXBP5K .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vzoXBP5K .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vzoXBP5K .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vzoXBP5K .mbr-text_1,
.cid-v7vzoXBP5K .mbr-text_2,
.cid-v7vzoXBP5K .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vzoXBP5K .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzoXBP5K .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vzoXBP5K .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vzoXBP5K .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vzoXBP5K .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzoXBP5K .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vzoXBP5K .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vzoXBP5K .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzoXBP5K .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vzoXBP5K .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vzoXBP5K .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vzoXBP5K .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vzoXBP5K .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vzpOVRwq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vzpOVRwq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vzpOVRwq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vzpOVRwq .row {
  justify-content: center;
}
.cid-v7vzpOVRwq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vzpOVRwq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vzpOVRwq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vzpOVRwq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vzpOVRwq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vzpOVRwq .mbr-text_1,
.cid-v7vzpOVRwq .mbr-text_2,
.cid-v7vzpOVRwq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vzpOVRwq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzpOVRwq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vzpOVRwq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vzpOVRwq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vzpOVRwq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzpOVRwq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vzpOVRwq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vzpOVRwq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzpOVRwq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vzpOVRwq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vzpOVRwq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vzpOVRwq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vzpOVRwq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suUWf2ltrp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUWf2ltrp .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUWf2ltrp .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suUWf2ltrp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUWf2ltrp .inner-container {
    width: 100% !important;
  }
}
.cid-suUWf2tHNQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suUWf2AHfP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUWf2AHfP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suUWf2AHfP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suUWf2AHfP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suUWf2AHfP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suUWf2AHfP .row > .row {
  display: block;
}
.cid-suUWf2AHfP .mbr-gallery-item {
  width: 100%;
}
.cid-suUWf2AHfP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suUWf2AHfP .mbr-gallery-item > div {
  position: relative;
}
.cid-suUWf2AHfP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suUWf2AHfP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suUWf2AHfP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suUWf2AHfP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-suUWf2RpmH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suUWf2RpmH .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suUWf2RpmH .section-text {
  padding: 2rem 0;
}
.cid-suUWf2RpmH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suUWf2RpmH .inner-container {
    width: 100% !important;
  }
}
.cid-suUWf2RpmH .section-text DIV {
  text-align: center;
}
.cid-suUWf2ZK58 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suUWf2ZK58 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suUWf2ZK58 div.b {
  padding-top: 2rem;
}
.cid-suUWf2ZK58 H5 {
  color: #232323;
}
.cid-suV08Lxqf9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suV08Lxqf9 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suV08Lxqf9 .section-text {
  padding: 2rem 0;
}
.cid-suV08Lxqf9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suV08Lxqf9 .inner-container {
    width: 100% !important;
  }
}
.cid-v7vzBaNv70 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vzBaNv70 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vzBaNv70 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vzBaNv70 .row {
  justify-content: center;
}
.cid-v7vzBaNv70 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vzBaNv70 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vzBaNv70 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vzBaNv70 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vzBaNv70 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vzBaNv70 .mbr-text_1,
.cid-v7vzBaNv70 .mbr-text_2,
.cid-v7vzBaNv70 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vzBaNv70 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzBaNv70 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vzBaNv70 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vzBaNv70 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vzBaNv70 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzBaNv70 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vzBaNv70 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vzBaNv70 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzBaNv70 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vzBaNv70 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vzBaNv70 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vzBaNv70 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vzBaNv70 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vzBZIz5t {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vzBZIz5t .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vzBZIz5t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vzBZIz5t .row {
  justify-content: center;
}
.cid-v7vzBZIz5t .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vzBZIz5t .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vzBZIz5t .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vzBZIz5t .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vzBZIz5t .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vzBZIz5t .mbr-text_1,
.cid-v7vzBZIz5t .mbr-text_2,
.cid-v7vzBZIz5t .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vzBZIz5t .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzBZIz5t .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vzBZIz5t .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vzBZIz5t .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vzBZIz5t .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzBZIz5t .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vzBZIz5t .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vzBZIz5t .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vzBZIz5t .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vzBZIz5t .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vzBZIz5t .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vzBZIz5t .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vzBZIz5t .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-suV08M0rpg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suV08M0rpg .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suV08M0rpg .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-suV08M0rpg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suV08M0rpg .inner-container {
    width: 100% !important;
  }
}
.cid-suV08M7kCx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-suV08Medrj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suV08Medrj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suV08Medrj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suV08Medrj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suV08Medrj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suV08Medrj .row > .row {
  display: block;
}
.cid-suV08Medrj .mbr-gallery-item {
  width: 100%;
}
.cid-suV08Medrj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-suV08Medrj .mbr-gallery-item > div {
  position: relative;
}
.cid-suV08Medrj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suV08Medrj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-suV08Medrj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suV08Medrj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-suV08MwgDE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-suV08MwgDE .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-suV08MwgDE .section-text {
  padding: 2rem 0;
}
.cid-suV08MwgDE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-suV08MwgDE .inner-container {
    width: 100% !important;
  }
}
.cid-suV08MwgDE .section-text DIV {
  text-align: center;
}
.cid-suV08MDptg {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-suV08MDptg .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-suV08MDptg div.b {
  padding-top: 2rem;
}
.cid-suV08MDptg H5 {
  color: #232323;
}
.cid-svf1fiFp7w {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-svf1fiFp7w .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svf1fiFp7w .section-text {
  padding: 2rem 0;
}
.cid-svf1fiFp7w .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svf1fiFp7w .inner-container {
    width: 100% !important;
  }
}
.cid-v7vX5ipEfX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7vX5ipEfX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vX5ipEfX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vX5ipEfX .row {
  justify-content: center;
}
.cid-v7vX5ipEfX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vX5ipEfX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vX5ipEfX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vX5ipEfX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vX5ipEfX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vX5ipEfX .mbr-text_1,
.cid-v7vX5ipEfX .mbr-text_2,
.cid-v7vX5ipEfX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vX5ipEfX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vX5ipEfX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vX5ipEfX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vX5ipEfX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vX5ipEfX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vX5ipEfX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vX5ipEfX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vX5ipEfX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vX5ipEfX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vX5ipEfX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vX5ipEfX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vX5ipEfX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vX5ipEfX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vX6djoiy {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7vX6djoiy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vX6djoiy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vX6djoiy .row {
  justify-content: center;
}
.cid-v7vX6djoiy .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vX6djoiy .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vX6djoiy .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vX6djoiy .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vX6djoiy .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vX6djoiy .mbr-text_1,
.cid-v7vX6djoiy .mbr-text_2,
.cid-v7vX6djoiy .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vX6djoiy .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vX6djoiy .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vX6djoiy .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vX6djoiy .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vX6djoiy .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vX6djoiy .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vX6djoiy .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vX6djoiy .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vX6djoiy .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vX6djoiy .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vX6djoiy .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vX6djoiy .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vX6djoiy .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-svf1fjbXXW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-svf1fjbXXW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svf1fjbXXW .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-svf1fjbXXW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svf1fjbXXW .inner-container {
    width: 100% !important;
  }
}
.cid-svf1fjkFSn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-svf1fjkFSn .mbr-section-subtitle {
  color: #767676;
}
.cid-svf1fjkFSn .container-table {
  margin: 0 auto;
}
.cid-svf1fjkFSn .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-svf1fjkFSn .dataTables_wrapper {
  display: block;
}
.cid-svf1fjkFSn .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-svf1fjkFSn .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-svf1fjkFSn table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-svf1fjkFSn table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-svf1fjkFSn table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-svf1fjkFSn table td {
  border-top: 1px solid #232323;
}
.cid-svf1fjkFSn table.table {
  background: #cccccc;
}
.cid-svf1fjkFSn .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-svf1fjkFSn .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-svf1fjkFSn .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-svf1fjkFSn .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-svf1fjkFSn .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-svf1fjkFSn .dataTables_filter {
    text-align: center;
  }
  .cid-svf1fjkFSn .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-svf1fjkFSn .mbr-section-title {
  color: #232323;
}
.cid-svf1fjkFSn .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-svf1fjkFSn .body-item {
  text-align: center;
}
.cid-svf1fjZ5Cb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-svf1fjZ5Cb .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-svf1fjZ5Cb div.b {
  padding-top: 2rem;
}
.cid-svf1fjZ5Cb H5 {
  color: #232323;
}
.cid-svzG0lgAaP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svzG0lgAaP .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svzG0lgAaP .section-text {
  padding: 2rem 0;
}
.cid-svzG0lgAaP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svzG0lgAaP .inner-container {
    width: 100% !important;
  }
}
.cid-v7vGfXtnpO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vGfXtnpO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vGfXtnpO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vGfXtnpO .row {
  justify-content: center;
}
.cid-v7vGfXtnpO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vGfXtnpO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vGfXtnpO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vGfXtnpO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vGfXtnpO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vGfXtnpO .mbr-text_1,
.cid-v7vGfXtnpO .mbr-text_2,
.cid-v7vGfXtnpO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vGfXtnpO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGfXtnpO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vGfXtnpO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vGfXtnpO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vGfXtnpO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGfXtnpO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vGfXtnpO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vGfXtnpO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGfXtnpO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vGfXtnpO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vGfXtnpO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vGfXtnpO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vGfXtnpO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vGgOdrPU {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vGgOdrPU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vGgOdrPU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vGgOdrPU .row {
  justify-content: center;
}
.cid-v7vGgOdrPU .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vGgOdrPU .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vGgOdrPU .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vGgOdrPU .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vGgOdrPU .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vGgOdrPU .mbr-text_1,
.cid-v7vGgOdrPU .mbr-text_2,
.cid-v7vGgOdrPU .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vGgOdrPU .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGgOdrPU .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vGgOdrPU .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vGgOdrPU .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vGgOdrPU .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGgOdrPU .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vGgOdrPU .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vGgOdrPU .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGgOdrPU .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vGgOdrPU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vGgOdrPU .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vGgOdrPU .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vGgOdrPU .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-svzG0lJMz3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svzG0lJMz3 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svzG0lJMz3 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-svzG0lJMz3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svzG0lJMz3 .inner-container {
    width: 100% !important;
  }
}
.cid-svzG0lP0X3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svzGHuTnIx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-svzGHuTnIx .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svzGHuTnIx .section-text {
  padding: 2rem 0;
}
.cid-svzGHuTnIx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-svzGHuTnIx .inner-container {
    width: 100% !important;
  }
}
.cid-svzGHuTnIx .section-text DIV {
  text-align: center;
}
.cid-svzG0n6zlM {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-svzG0n6zlM .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-svzG0n6zlM div.b {
  padding-top: 2rem;
}
.cid-svzG0n6zlM H5 {
  color: #232323;
}
.cid-sydkdygpbp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sydkdygpbp .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sydkdygpbp .section-text {
  padding: 2rem 0;
}
.cid-sydkdygpbp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sydkdygpbp .inner-container {
    width: 100% !important;
  }
}
.cid-v7vGvuB3U8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vGvuB3U8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vGvuB3U8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vGvuB3U8 .row {
  justify-content: center;
}
.cid-v7vGvuB3U8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vGvuB3U8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vGvuB3U8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vGvuB3U8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vGvuB3U8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vGvuB3U8 .mbr-text_1,
.cid-v7vGvuB3U8 .mbr-text_2,
.cid-v7vGvuB3U8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vGvuB3U8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGvuB3U8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vGvuB3U8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vGvuB3U8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vGvuB3U8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGvuB3U8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vGvuB3U8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vGvuB3U8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGvuB3U8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vGvuB3U8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vGvuB3U8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vGvuB3U8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vGvuB3U8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vGwusVnB {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vGwusVnB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vGwusVnB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vGwusVnB .row {
  justify-content: center;
}
.cid-v7vGwusVnB .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vGwusVnB .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vGwusVnB .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vGwusVnB .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vGwusVnB .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vGwusVnB .mbr-text_1,
.cid-v7vGwusVnB .mbr-text_2,
.cid-v7vGwusVnB .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vGwusVnB .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGwusVnB .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vGwusVnB .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vGwusVnB .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vGwusVnB .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGwusVnB .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vGwusVnB .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vGwusVnB .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGwusVnB .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vGwusVnB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vGwusVnB .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vGwusVnB .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vGwusVnB .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sydkdyEjHV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sydkdyEjHV .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sydkdyEjHV .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-sydkdyEjHV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sydkdyEjHV .inner-container {
    width: 100% !important;
  }
}
.cid-v8aEArTWJd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aEArTWJd .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aEArTWJd .container-table {
  margin: 0 auto;
}
.cid-v8aEArTWJd .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aEArTWJd .dataTables_wrapper {
  display: block;
}
.cid-v8aEArTWJd .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aEArTWJd .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aEArTWJd table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aEArTWJd table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aEArTWJd table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aEArTWJd table td {
  border-top: 1px solid #232323;
}
.cid-v8aEArTWJd .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aEArTWJd .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aEArTWJd .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aEArTWJd .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aEArTWJd .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aEArTWJd .dataTables_filter {
    text-align: center;
  }
  .cid-v8aEArTWJd .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aEArTWJd .mbr-section-title {
  color: #232323;
}
.cid-v8aEArTWJd .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aEArTWJd .body-item {
  text-align: center;
}
.cid-sydkdyMg7A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sydkdyMg7A .mbr-section-subtitle {
  color: #767676;
}
.cid-sydkdyMg7A .container-table {
  margin: 0 auto;
}
.cid-sydkdyMg7A .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sydkdyMg7A .dataTables_wrapper {
  display: block;
}
.cid-sydkdyMg7A .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sydkdyMg7A .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sydkdyMg7A table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-sydkdyMg7A table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sydkdyMg7A table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-sydkdyMg7A table td {
  border-top: 1px solid #232323;
}
.cid-sydkdyMg7A .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sydkdyMg7A .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sydkdyMg7A .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sydkdyMg7A .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sydkdyMg7A .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sydkdyMg7A .dataTables_filter {
    text-align: center;
  }
  .cid-sydkdyMg7A .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sydkdyMg7A .mbr-section-title {
  color: #232323;
}
.cid-sydkdyMg7A .head-item {
  text-align: center;
  color: #232323;
}
.cid-sydkdyMg7A .body-item {
  text-align: center;
}
.cid-sydkdz6UP1 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-sydkdz6UP1 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-sydkdz6UP1 div.b {
  padding-top: 2rem;
}
.cid-sydkdz6UP1 H5 {
  color: #232323;
}
.cid-sydkGDCuqH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sydkGDCuqH .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sydkGDCuqH .section-text {
  padding: 2rem 0;
}
.cid-sydkGDCuqH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sydkGDCuqH .inner-container {
    width: 100% !important;
  }
}
.cid-v7vHOS6Ntt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vHOS6Ntt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vHOS6Ntt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vHOS6Ntt .row {
  justify-content: center;
}
.cid-v7vHOS6Ntt .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vHOS6Ntt .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vHOS6Ntt .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vHOS6Ntt .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vHOS6Ntt .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vHOS6Ntt .mbr-text_1,
.cid-v7vHOS6Ntt .mbr-text_2,
.cid-v7vHOS6Ntt .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vHOS6Ntt .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vHOS6Ntt .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vHOS6Ntt .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vHOS6Ntt .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vHOS6Ntt .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vHOS6Ntt .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vHOS6Ntt .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vHOS6Ntt .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vHOS6Ntt .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vHOS6Ntt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vHOS6Ntt .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vHOS6Ntt .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vHOS6Ntt .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vHPEeN82 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vHPEeN82 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vHPEeN82 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vHPEeN82 .row {
  justify-content: center;
}
.cid-v7vHPEeN82 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vHPEeN82 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vHPEeN82 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vHPEeN82 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vHPEeN82 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vHPEeN82 .mbr-text_1,
.cid-v7vHPEeN82 .mbr-text_2,
.cid-v7vHPEeN82 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vHPEeN82 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vHPEeN82 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vHPEeN82 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vHPEeN82 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vHPEeN82 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vHPEeN82 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vHPEeN82 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vHPEeN82 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vHPEeN82 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vHPEeN82 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vHPEeN82 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vHPEeN82 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vHPEeN82 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sydkGE2OnD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sydkGE2OnD .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sydkGE2OnD .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-sydkGE2OnD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sydkGE2OnD .inner-container {
    width: 100% !important;
  }
}
.cid-sydkGE9Mm0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-sydlSaKPed {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sydlSaKPed .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sydlSaKPed .section-text {
  padding: 2rem 0;
}
.cid-sydlSaKPed .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sydlSaKPed .inner-container {
    width: 100% !important;
  }
}
.cid-sydlSaKPed .section-text DIV {
  text-align: center;
}
.cid-sydkGF65GJ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-sydkGF65GJ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-sydkGF65GJ div.b {
  padding-top: 2rem;
}
.cid-sydkGF65GJ H5 {
  color: #232323;
}
.cid-sydq1Oyb13 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sydq1Oyb13 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sydq1Oyb13 .section-text {
  padding: 2rem 0;
}
.cid-sydq1Oyb13 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sydq1Oyb13 .inner-container {
    width: 100% !important;
  }
}
.cid-v7vIftRzb6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vIftRzb6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vIftRzb6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vIftRzb6 .row {
  justify-content: center;
}
.cid-v7vIftRzb6 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vIftRzb6 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vIftRzb6 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vIftRzb6 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vIftRzb6 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vIftRzb6 .mbr-text_1,
.cid-v7vIftRzb6 .mbr-text_2,
.cid-v7vIftRzb6 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vIftRzb6 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vIftRzb6 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vIftRzb6 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vIftRzb6 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vIftRzb6 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vIftRzb6 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vIftRzb6 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vIftRzb6 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vIftRzb6 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vIftRzb6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vIftRzb6 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vIftRzb6 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vIftRzb6 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vIglouwK {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vIglouwK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vIglouwK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vIglouwK .row {
  justify-content: center;
}
.cid-v7vIglouwK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vIglouwK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vIglouwK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vIglouwK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vIglouwK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vIglouwK .mbr-text_1,
.cid-v7vIglouwK .mbr-text_2,
.cid-v7vIglouwK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vIglouwK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vIglouwK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vIglouwK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vIglouwK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vIglouwK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vIglouwK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vIglouwK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vIglouwK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vIglouwK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vIglouwK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vIglouwK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vIglouwK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vIglouwK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sydq1OZVIY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sydq1OZVIY .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sydq1OZVIY .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-sydq1OZVIY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sydq1OZVIY .inner-container {
    width: 100% !important;
  }
}
.cid-sydq1P5du0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-sydtvvsLxG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sydtvvsLxG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sydtvvsLxG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sydtvvsLxG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sydtvvsLxG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sydtvvsLxG .row > .row {
  display: block;
}
.cid-sydtvvsLxG .mbr-gallery-item {
  width: 100%;
}
.cid-sydtvvsLxG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sydtvvsLxG .mbr-gallery-item > div {
  position: relative;
}
.cid-sydtvvsLxG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sydtvvsLxG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sydtvvsLxG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sydtvvsLxG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sydq1PbIjF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sydq1PbIjF .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sydq1PbIjF .section-text {
  padding: 2rem 0;
}
.cid-sydq1PbIjF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sydq1PbIjF .inner-container {
    width: 100% !important;
  }
}
.cid-sydq1PbIjF .section-text DIV {
  text-align: center;
}
.cid-sydq1Pj9Q7 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-sydq1Pj9Q7 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-sydq1Pj9Q7 div.b {
  padding-top: 2rem;
}
.cid-sydq1Pj9Q7 H5 {
  color: #232323;
}
.cid-szRvKpWV0G {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-szRvKpWV0G .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-szRvKpWV0G .section-text {
  padding: 2rem 0;
}
.cid-szRvKpWV0G .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-szRvKpWV0G .inner-container {
    width: 100% !important;
  }
}
.cid-v7vIQ2JpKs {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vIQ2JpKs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vIQ2JpKs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vIQ2JpKs .row {
  justify-content: center;
}
.cid-v7vIQ2JpKs .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vIQ2JpKs .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vIQ2JpKs .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vIQ2JpKs .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vIQ2JpKs .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vIQ2JpKs .mbr-text_1,
.cid-v7vIQ2JpKs .mbr-text_2,
.cid-v7vIQ2JpKs .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vIQ2JpKs .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vIQ2JpKs .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vIQ2JpKs .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vIQ2JpKs .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vIQ2JpKs .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vIQ2JpKs .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vIQ2JpKs .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vIQ2JpKs .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vIQ2JpKs .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vIQ2JpKs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vIQ2JpKs .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vIQ2JpKs .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vIQ2JpKs .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vIQKN40J {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vIQKN40J .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vIQKN40J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vIQKN40J .row {
  justify-content: center;
}
.cid-v7vIQKN40J .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vIQKN40J .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vIQKN40J .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vIQKN40J .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vIQKN40J .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vIQKN40J .mbr-text_1,
.cid-v7vIQKN40J .mbr-text_2,
.cid-v7vIQKN40J .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vIQKN40J .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vIQKN40J .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vIQKN40J .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vIQKN40J .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vIQKN40J .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vIQKN40J .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vIQKN40J .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vIQKN40J .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vIQKN40J .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vIQKN40J .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vIQKN40J .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vIQKN40J .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vIQKN40J .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-szRvKqm0ro {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-szRvKqm0ro .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-szRvKqm0ro .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-szRvKqm0ro .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-szRvKqm0ro .inner-container {
    width: 100% !important;
  }
}
.cid-szRvKqsyfJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-szRvKqO08w {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-szRvKqO08w .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-szRvKqO08w .section-text {
  padding: 2rem 0;
}
.cid-szRvKqO08w .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-szRvKqO08w .inner-container {
    width: 100% !important;
  }
}
.cid-szRvKqO08w .section-text DIV {
  text-align: center;
}
.cid-szRvKqVyVD {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-szRvKqVyVD .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-szRvKqVyVD div.b {
  padding-top: 2rem;
}
.cid-szRvKqVyVD H5 {
  color: #232323;
}
.cid-sEUJammJKj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sEUJammJKj .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sEUJammJKj .section-text {
  padding: 2rem 0;
}
.cid-sEUJammJKj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sEUJammJKj .inner-container {
    width: 100% !important;
  }
}
.cid-v7vI2ddDzV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vI2ddDzV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vI2ddDzV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vI2ddDzV .row {
  justify-content: center;
}
.cid-v7vI2ddDzV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vI2ddDzV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vI2ddDzV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vI2ddDzV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vI2ddDzV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vI2ddDzV .mbr-text_1,
.cid-v7vI2ddDzV .mbr-text_2,
.cid-v7vI2ddDzV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vI2ddDzV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vI2ddDzV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vI2ddDzV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vI2ddDzV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vI2ddDzV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vI2ddDzV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vI2ddDzV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vI2ddDzV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vI2ddDzV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vI2ddDzV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vI2ddDzV .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vI2ddDzV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vI2ddDzV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vI3p2l77 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vI3p2l77 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vI3p2l77 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vI3p2l77 .row {
  justify-content: center;
}
.cid-v7vI3p2l77 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vI3p2l77 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vI3p2l77 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vI3p2l77 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vI3p2l77 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vI3p2l77 .mbr-text_1,
.cid-v7vI3p2l77 .mbr-text_2,
.cid-v7vI3p2l77 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vI3p2l77 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vI3p2l77 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vI3p2l77 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vI3p2l77 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vI3p2l77 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vI3p2l77 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vI3p2l77 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vI3p2l77 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vI3p2l77 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vI3p2l77 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vI3p2l77 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vI3p2l77 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vI3p2l77 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sEUJamNaR6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sEUJamNaR6 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sEUJamNaR6 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-sEUJamNaR6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sEUJamNaR6 .inner-container {
    width: 100% !important;
  }
}
.cid-sEUJamUN9r {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-sEUKPD60mS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sEUKPD60mS .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sEUKPD60mS .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-sEUKPD60mS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sEUKPD60mS .inner-container {
    width: 100% !important;
  }
}
.cid-sEUKQnRfHN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sEUKQnRfHN .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sEUKQnRfHN .section-text {
  padding: 2rem 0;
}
.cid-sEUKQnRfHN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sEUKQnRfHN .inner-container {
    width: 100% !important;
  }
}
.cid-sEUKQnRfHN .section-text DIV {
  text-align: center;
}
.cid-sEUJan8GbK {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-sEUJan8GbK .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-sEUJan8GbK div.b {
  padding-top: 2rem;
}
.cid-sEUJan8GbK H5 {
  color: #232323;
}
.cid-sKLk4ERiSx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sKLk4ERiSx .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sKLk4ERiSx .section-text {
  padding: 2rem 0;
}
.cid-sKLk4ERiSx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sKLk4ERiSx .inner-container {
    width: 100% !important;
  }
}
.cid-v7vJ3Lr3AM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vJ3Lr3AM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vJ3Lr3AM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vJ3Lr3AM .row {
  justify-content: center;
}
.cid-v7vJ3Lr3AM .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vJ3Lr3AM .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vJ3Lr3AM .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vJ3Lr3AM .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vJ3Lr3AM .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vJ3Lr3AM .mbr-text_1,
.cid-v7vJ3Lr3AM .mbr-text_2,
.cid-v7vJ3Lr3AM .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vJ3Lr3AM .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJ3Lr3AM .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vJ3Lr3AM .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vJ3Lr3AM .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vJ3Lr3AM .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJ3Lr3AM .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vJ3Lr3AM .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vJ3Lr3AM .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJ3Lr3AM .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vJ3Lr3AM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vJ3Lr3AM .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vJ3Lr3AM .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vJ3Lr3AM .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vJ4uKQnn {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vJ4uKQnn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vJ4uKQnn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vJ4uKQnn .row {
  justify-content: center;
}
.cid-v7vJ4uKQnn .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vJ4uKQnn .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vJ4uKQnn .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vJ4uKQnn .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vJ4uKQnn .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vJ4uKQnn .mbr-text_1,
.cid-v7vJ4uKQnn .mbr-text_2,
.cid-v7vJ4uKQnn .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vJ4uKQnn .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJ4uKQnn .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vJ4uKQnn .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vJ4uKQnn .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vJ4uKQnn .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJ4uKQnn .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vJ4uKQnn .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vJ4uKQnn .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJ4uKQnn .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vJ4uKQnn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vJ4uKQnn .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vJ4uKQnn .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vJ4uKQnn .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sKLk4Fhi9h {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sKLk4Fhi9h .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sKLk4Fhi9h .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-sKLk4Fhi9h .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sKLk4Fhi9h .inner-container {
    width: 100% !important;
  }
}
.cid-sKLk4Foa87 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-sKLk4FKsJV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sKLk4FKsJV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sKLk4FKsJV .section-text {
  padding: 2rem 0;
}
.cid-sKLk4FKsJV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sKLk4FKsJV .inner-container {
    width: 100% !important;
  }
}
.cid-sKLk4FKsJV .section-text DIV {
  text-align: center;
}
.cid-sKLk4FRgLD {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-sKLk4FRgLD .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-sKLk4FRgLD div.b {
  padding-top: 2rem;
}
.cid-sKLk4FRgLD H5 {
  color: #232323;
}
.cid-sTrFXkd2AK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTrFXkd2AK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTrFXkd2AK .section-text {
  padding: 2rem 0;
}
.cid-sTrFXkd2AK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sTrFXkd2AK .inner-container {
    width: 100% !important;
  }
}
.cid-v6Xt1MSBAU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6Xt1MSBAU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Xt1MSBAU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Xt1MSBAU .row {
  justify-content: center;
}
.cid-v6Xt1MSBAU .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Xt1MSBAU .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Xt1MSBAU .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Xt1MSBAU .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Xt1MSBAU .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Xt1MSBAU .mbr-text_1,
.cid-v6Xt1MSBAU .mbr-text_2,
.cid-v6Xt1MSBAU .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Xt1MSBAU .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xt1MSBAU .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xt1MSBAU .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xt1MSBAU .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xt1MSBAU .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xt1MSBAU .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xt1MSBAU .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Xt1MSBAU .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xt1MSBAU .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Xt1MSBAU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Xt1MSBAU .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Xt1MSBAU .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Xt1MSBAU .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6Xt2MSzsn {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6Xt2MSzsn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Xt2MSzsn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Xt2MSzsn .row {
  justify-content: center;
}
.cid-v6Xt2MSzsn .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Xt2MSzsn .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Xt2MSzsn .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Xt2MSzsn .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Xt2MSzsn .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Xt2MSzsn .mbr-text_1,
.cid-v6Xt2MSzsn .mbr-text_2,
.cid-v6Xt2MSzsn .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Xt2MSzsn .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xt2MSzsn .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xt2MSzsn .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xt2MSzsn .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xt2MSzsn .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xt2MSzsn .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xt2MSzsn .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Xt2MSzsn .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xt2MSzsn .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xt2MSzsn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Xt2MSzsn .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Xt2MSzsn .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Xt2MSzsn .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XsYrJFVT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6XsYrJFVT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6XsYrJFVT .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6XsYrJFVT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6XsYrJFVT .inner-container {
    width: 100% !important;
  }
}
.cid-sTrFXkBGNS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTrFXkBGNS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTrFXkBGNS .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-sTrFXkBGNS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sTrFXkBGNS .inner-container {
    width: 100% !important;
  }
}
.cid-uybfhA514v {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybfhA514v .mbr-section-subtitle {
  color: #767676;
}
.cid-uybfhA514v .container-table {
  margin: 0 auto;
}
.cid-uybfhA514v .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybfhA514v .dataTables_wrapper {
  display: block;
}
.cid-uybfhA514v .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybfhA514v .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybfhA514v table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybfhA514v table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybfhA514v table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybfhA514v table td {
  border-top: 1px solid #232323;
}
.cid-uybfhA514v .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybfhA514v .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybfhA514v .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybfhA514v .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybfhA514v .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybfhA514v .dataTables_filter {
    text-align: center;
  }
  .cid-uybfhA514v .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybfhA514v .mbr-section-title {
  color: #ff3366;
}
.cid-uybfhA514v .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybfhA514v .body-item {
  text-align: center;
}
.cid-sTrFXloj8o {
  background: #64df87;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-sTrFXloj8o .image-block {
  margin: auto;
}
.cid-sTrFXloj8o figcaption {
  position: relative;
}
.cid-sTrFXloj8o figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sTrFXloj8o .image-block {
    width: 100% !important;
  }
}
.cid-sTrFXlxjE6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTrFXlxjE6 .mbr-section-subtitle {
  color: #232323;
}
.cid-sTrFXlxjE6 .container-table {
  margin: 0 auto;
}
.cid-sTrFXlxjE6 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sTrFXlxjE6 .dataTables_wrapper {
  display: block;
}
.cid-sTrFXlxjE6 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sTrFXlxjE6 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sTrFXlxjE6 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-sTrFXlxjE6 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sTrFXlxjE6 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-sTrFXlxjE6 table td {
  border-top: 1px solid #232323;
}
.cid-sTrFXlxjE6 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sTrFXlxjE6 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sTrFXlxjE6 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sTrFXlxjE6 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sTrFXlxjE6 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sTrFXlxjE6 .dataTables_filter {
    text-align: center;
  }
  .cid-sTrFXlxjE6 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sTrFXlxjE6 .mbr-section-title {
  color: #232323;
}
.cid-sTrFXlxjE6 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-sTrFXlxjE6 .body-item {
  text-align: center;
}
.cid-sTrFXlUlFT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sTrFXlZnqJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTrFXlZnqJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrFXlZnqJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrFXlZnqJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrFXlZnqJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrFXlZnqJ .row > .row {
  display: block;
}
.cid-sTrFXlZnqJ .mbr-gallery-item {
  width: 100%;
}
.cid-sTrFXlZnqJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrFXlZnqJ .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrFXlZnqJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrFXlZnqJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrFXlZnqJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrFXlZnqJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrFXmt1mc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sTrFXmBKy1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTrFXmBKy1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrFXmBKy1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrFXmBKy1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrFXmBKy1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrFXmBKy1 .row > .row {
  display: block;
}
.cid-sTrFXmBKy1 .mbr-gallery-item {
  width: 100%;
}
.cid-sTrFXmBKy1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrFXmBKy1 .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrFXmBKy1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrFXmBKy1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrFXmBKy1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrFXmBKy1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrFXmUohm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sTrFXn28TJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTrFXn28TJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrFXn28TJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrFXn28TJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrFXn28TJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrFXn28TJ .row > .row {
  display: block;
}
.cid-sTrFXn28TJ .mbr-gallery-item {
  width: 100%;
}
.cid-sTrFXn28TJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrFXn28TJ .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrFXn28TJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrFXn28TJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrFXn28TJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrFXn28TJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrFXnl49r {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sTrFXnsr26 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTrFXnsr26 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrFXnsr26 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrFXnsr26 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrFXnsr26 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrFXnsr26 .row > .row {
  display: block;
}
.cid-sTrFXnsr26 .mbr-gallery-item {
  width: 100%;
}
.cid-sTrFXnsr26 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrFXnsr26 .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrFXnsr26 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrFXnsr26 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrFXnsr26 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrFXnsr26 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrFXnKMIo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sTrFXnTfrf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTrFXnTfrf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrFXnTfrf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrFXnTfrf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrFXnTfrf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrFXnTfrf .row > .row {
  display: block;
}
.cid-sTrFXnTfrf .mbr-gallery-item {
  width: 100%;
}
.cid-sTrFXnTfrf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrFXnTfrf .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrFXnTfrf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrFXnTfrf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrFXnTfrf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrFXnTfrf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrFXocp72 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sTrFXol02v {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTrFXol02v .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrFXol02v .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrFXol02v .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrFXol02v .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrFXol02v .row > .row {
  display: block;
}
.cid-sTrFXol02v .mbr-gallery-item {
  width: 100%;
}
.cid-sTrFXol02v .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrFXol02v .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrFXol02v .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrFXol02v .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrFXol02v .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrFXol02v .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrFXoziMK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sTrFXoIZfs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sTrFXoR5lY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sTrFXp0aKq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTrFXp0aKq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrFXp0aKq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrFXp0aKq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrFXp0aKq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrFXp0aKq .row > .row {
  display: block;
}
.cid-sTrFXp0aKq .mbr-gallery-item {
  width: 100%;
}
.cid-sTrFXp0aKq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrFXp0aKq .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrFXp0aKq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrFXp0aKq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrFXp0aKq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrFXp0aKq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrFXpgnMq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sTrFXpqENr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTrFXpqENr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrFXpqENr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrFXpqENr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrFXpqENr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrFXpqENr .row > .row {
  display: block;
}
.cid-sTrFXpqENr .mbr-gallery-item {
  width: 100%;
}
.cid-sTrFXpqENr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrFXpqENr .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrFXpqENr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrFXpqENr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrFXpqENr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrFXpqENr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrFXpKpIa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sTrFXpV1E8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTrFXpV1E8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrFXpV1E8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrFXpV1E8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrFXpV1E8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrFXpV1E8 .row > .row {
  display: block;
}
.cid-sTrFXpV1E8 .mbr-gallery-item {
  width: 100%;
}
.cid-sTrFXpV1E8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrFXpV1E8 .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrFXpV1E8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrFXpV1E8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrFXpV1E8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrFXpV1E8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrFXqicY5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sTrFXquUEr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTrFXquUEr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrFXquUEr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrFXquUEr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrFXquUEr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrFXquUEr .row > .row {
  display: block;
}
.cid-sTrFXquUEr .mbr-gallery-item {
  width: 100%;
}
.cid-sTrFXquUEr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrFXquUEr .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrFXquUEr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrFXquUEr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrFXquUEr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrFXquUEr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrFXqT1F7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-sTrFXr7UG0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-sTrFXr7UG0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrFXr7UG0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrFXr7UG0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrFXr7UG0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrFXr7UG0 .row > .row {
  display: block;
}
.cid-sTrFXr7UG0 .mbr-gallery-item {
  width: 100%;
}
.cid-sTrFXr7UG0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrFXr7UG0 .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrFXr7UG0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrFXr7UG0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrFXr7UG0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrFXr7UG0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrFXrvWgW {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-sTrFXrvWgW .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-sTrFXrvWgW div.b {
  padding-top: 2rem;
}
.cid-sTrFXrvWgW H5 {
  color: #232323;
}
.cid-sTrHtWpmtM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sTrHtWpmtM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTrHtWpmtM .section-text {
  padding: 2rem 0;
}
.cid-sTrHtWpmtM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sTrHtWpmtM .inner-container {
    width: 100% !important;
  }
}
.cid-v78CYx4zoY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #15ece0;
}
.cid-v78CYx4zoY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78CYx4zoY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78CYx4zoY .row {
  justify-content: center;
}
.cid-v78CYx4zoY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78CYx4zoY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78CYx4zoY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78CYx4zoY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78CYx4zoY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78CYx4zoY .mbr-text_1,
.cid-v78CYx4zoY .mbr-text_2,
.cid-v78CYx4zoY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78CYx4zoY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78CYx4zoY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78CYx4zoY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78CYx4zoY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78CYx4zoY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78CYx4zoY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78CYx4zoY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78CYx4zoY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78CYx4zoY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78CYx4zoY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78CYx4zoY .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78CYx4zoY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78CYx4zoY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78CZHRb8o {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #15ece0;
}
.cid-v78CZHRb8o .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78CZHRb8o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78CZHRb8o .row {
  justify-content: center;
}
.cid-v78CZHRb8o .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78CZHRb8o .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78CZHRb8o .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78CZHRb8o .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78CZHRb8o .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78CZHRb8o .mbr-text_1,
.cid-v78CZHRb8o .mbr-text_2,
.cid-v78CZHRb8o .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78CZHRb8o .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78CZHRb8o .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78CZHRb8o .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78CZHRb8o .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78CZHRb8o .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78CZHRb8o .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78CZHRb8o .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78CZHRb8o .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78CZHRb8o .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78CZHRb8o .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78CZHRb8o .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78CZHRb8o .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78CZHRb8o .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78D1YOgFH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78D1YOgFH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v78D1YOgFH .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v78D1YOgFH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v78D1YOgFH .inner-container {
    width: 100% !important;
  }
}
.cid-v78D4zHlRs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78D4zHlRs .mbr-section-subtitle {
  color: #767676;
}
.cid-v78D4zHlRs .container-table {
  margin: 0 auto;
}
.cid-v78D4zHlRs .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v78D4zHlRs .dataTables_wrapper {
  display: block;
}
.cid-v78D4zHlRs .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v78D4zHlRs .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v78D4zHlRs table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v78D4zHlRs table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v78D4zHlRs table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v78D4zHlRs table td {
  border-top: 1px solid #232323;
}
.cid-v78D4zHlRs table.table {
  background: #15ece0;
}
.cid-v78D4zHlRs .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v78D4zHlRs .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v78D4zHlRs .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v78D4zHlRs .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v78D4zHlRs .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v78D4zHlRs .dataTables_filter {
    text-align: center;
  }
  .cid-v78D4zHlRs .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v78D4zHlRs .mbr-section-title {
  color: #232323;
}
.cid-v78D4zHlRs .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v78D4zHlRs .body-item {
  text-align: center;
}
.cid-sTrHtXpZRV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sTrHtXpZRV .mbr-section-subtitle {
  color: #232323;
}
.cid-sTrHtXpZRV .container-table {
  margin: 0 auto;
}
.cid-sTrHtXpZRV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sTrHtXpZRV .dataTables_wrapper {
  display: block;
}
.cid-sTrHtXpZRV .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sTrHtXpZRV .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sTrHtXpZRV table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-sTrHtXpZRV table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sTrHtXpZRV table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-sTrHtXpZRV table td {
  border-top: 1px solid #232323;
}
.cid-sTrHtXpZRV table.table {
  background: #15ece0;
}
.cid-sTrHtXpZRV .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sTrHtXpZRV .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sTrHtXpZRV .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sTrHtXpZRV .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sTrHtXpZRV .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sTrHtXpZRV .dataTables_filter {
    text-align: center;
  }
  .cid-sTrHtXpZRV .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sTrHtXpZRV .mbr-section-title {
  color: #232323;
}
.cid-sTrHtXpZRV .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-sTrHtXpZRV .body-item {
  text-align: center;
  color: #232323;
}
.cid-sTrHtXGFoO {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-sTrHtXGFoO .image-block {
  margin: auto;
}
.cid-sTrHtXGFoO figcaption {
  position: relative;
}
.cid-sTrHtXGFoO figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sTrHtXGFoO .image-block {
    width: 100% !important;
  }
}
.cid-sTrHtXMQ6s {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sTrHtXRpZC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sTrHtXRpZC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrHtXRpZC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrHtXRpZC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrHtXRpZC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrHtXRpZC .row > .row {
  display: block;
}
.cid-sTrHtXRpZC .mbr-gallery-item {
  width: 100%;
}
.cid-sTrHtXRpZC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrHtXRpZC .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrHtXRpZC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrHtXRpZC .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrHtXRpZC .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrHtXRpZC .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrHtYeWon {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sTrHtYl4Xh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sTrHtYl4Xh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrHtYl4Xh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrHtYl4Xh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrHtYl4Xh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrHtYl4Xh .row > .row {
  display: block;
}
.cid-sTrHtYl4Xh .mbr-gallery-item {
  width: 100%;
}
.cid-sTrHtYl4Xh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrHtYl4Xh .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrHtYl4Xh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrHtYl4Xh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrHtYl4Xh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrHtYl4Xh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrHtYCVZh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sTrHtYIKfw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sTrHtYIKfw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrHtYIKfw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrHtYIKfw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrHtYIKfw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrHtYIKfw .row > .row {
  display: block;
}
.cid-sTrHtYIKfw .mbr-gallery-item {
  width: 100%;
}
.cid-sTrHtYIKfw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrHtYIKfw .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrHtYIKfw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrHtYIKfw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrHtYIKfw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrHtYIKfw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrHtZ0I21 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sTrHtZ8qWF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sTrHtZ8qWF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrHtZ8qWF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrHtZ8qWF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrHtZ8qWF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrHtZ8qWF .row > .row {
  display: block;
}
.cid-sTrHtZ8qWF .mbr-gallery-item {
  width: 100%;
}
.cid-sTrHtZ8qWF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrHtZ8qWF .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrHtZ8qWF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrHtZ8qWF .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrHtZ8qWF .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrHtZ8qWF .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrHtZnYjN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sTrHtZu7dV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sTrHtZu7dV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrHtZu7dV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrHtZu7dV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrHtZu7dV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrHtZu7dV .row > .row {
  display: block;
}
.cid-sTrHtZu7dV .mbr-gallery-item {
  width: 100%;
}
.cid-sTrHtZu7dV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrHtZu7dV .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrHtZu7dV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrHtZu7dV .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrHtZu7dV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrHtZu7dV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrHtZL59i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sTrHtZWV5g {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sTrHtZWV5g .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrHtZWV5g .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrHtZWV5g .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrHtZWV5g .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrHtZWV5g .row > .row {
  display: block;
}
.cid-sTrHtZWV5g .mbr-gallery-item {
  width: 100%;
}
.cid-sTrHtZWV5g .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrHtZWV5g .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrHtZWV5g .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrHtZWV5g .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrHtZWV5g .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrHtZWV5g .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrHu0e3B4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sTrHu0opA0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sTrHu0opA0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrHu0opA0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrHu0opA0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrHu0opA0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrHu0opA0 .row > .row {
  display: block;
}
.cid-sTrHu0opA0 .mbr-gallery-item {
  width: 100%;
}
.cid-sTrHu0opA0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrHu0opA0 .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrHu0opA0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrHu0opA0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrHu0opA0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrHu0opA0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrHu0H9XS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sTrHu0RAtg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sTrHu0RAtg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrHu0RAtg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrHu0RAtg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrHu0RAtg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrHu0RAtg .row > .row {
  display: block;
}
.cid-sTrHu0RAtg .mbr-gallery-item {
  width: 100%;
}
.cid-sTrHu0RAtg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrHu0RAtg .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrHu0RAtg .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrHu0RAtg .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrHu0RAtg .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrHu0RAtg .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrHu19huF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sTrHu1jMZG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sTrHu1jMZG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrHu1jMZG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrHu1jMZG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrHu1jMZG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrHu1jMZG .row > .row {
  display: block;
}
.cid-sTrHu1jMZG .mbr-gallery-item {
  width: 100%;
}
.cid-sTrHu1jMZG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrHu1jMZG .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrHu1jMZG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrHu1jMZG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrHu1jMZG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrHu1jMZG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrHu1GTOz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sTrHu1RelE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sTrHu1RelE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrHu1RelE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrHu1RelE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrHu1RelE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrHu1RelE .row > .row {
  display: block;
}
.cid-sTrHu1RelE .mbr-gallery-item {
  width: 100%;
}
.cid-sTrHu1RelE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrHu1RelE .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrHu1RelE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrHu1RelE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrHu1RelE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrHu1RelE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrHu2b0e1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sTrHu2nLwB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sTrHu2nLwB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrHu2nLwB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrHu2nLwB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrHu2nLwB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrHu2nLwB .row > .row {
  display: block;
}
.cid-sTrHu2nLwB .mbr-gallery-item {
  width: 100%;
}
.cid-sTrHu2nLwB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrHu2nLwB .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrHu2nLwB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrHu2nLwB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrHu2nLwB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrHu2nLwB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrHu2N9DE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-sTrHu31y8E {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-sTrHu31y8E .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrHu31y8E .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrHu31y8E .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrHu31y8E .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrHu31y8E .row > .row {
  display: block;
}
.cid-sTrHu31y8E .mbr-gallery-item {
  width: 100%;
}
.cid-sTrHu31y8E .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrHu31y8E .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrHu31y8E .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrHu31y8E .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrHu31y8E .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrHu31y8E .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrHu3spg6 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #15ece0;
}
.cid-sTrHu3spg6 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-sTrHu3spg6 div.b {
  padding-top: 2rem;
}
.cid-sTrHu3spg6 H5 {
  color: #232323;
}
.cid-sTrINRsafQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrINRsafQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTrINRsafQ .section-text {
  padding: 2rem 0;
}
.cid-sTrINRsafQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sTrINRsafQ .inner-container {
    width: 100% !important;
  }
}
.cid-v72p2FETzP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v72p2FETzP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72p2FETzP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72p2FETzP .row {
  justify-content: center;
}
.cid-v72p2FETzP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72p2FETzP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72p2FETzP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72p2FETzP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72p2FETzP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72p2FETzP .mbr-text_1,
.cid-v72p2FETzP .mbr-text_2,
.cid-v72p2FETzP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72p2FETzP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72p2FETzP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72p2FETzP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72p2FETzP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72p2FETzP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72p2FETzP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72p2FETzP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72p2FETzP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72p2FETzP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72p2FETzP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72p2FETzP .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72p2FETzP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72p2FETzP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72p46z1DE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v72p46z1DE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72p46z1DE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72p46z1DE .row {
  justify-content: center;
}
.cid-v72p46z1DE .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72p46z1DE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72p46z1DE .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72p46z1DE .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72p46z1DE .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72p46z1DE .mbr-text_1,
.cid-v72p46z1DE .mbr-text_2,
.cid-v72p46z1DE .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72p46z1DE .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72p46z1DE .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72p46z1DE .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72p46z1DE .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72p46z1DE .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72p46z1DE .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72p46z1DE .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72p46z1DE .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72p46z1DE .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72p46z1DE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72p46z1DE .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72p46z1DE .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72p46z1DE .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72p5OZoFR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72p5OZoFR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v72p5OZoFR .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v72p5OZoFR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v72p5OZoFR .inner-container {
    width: 100% !important;
  }
}
.cid-sTrINRSPwX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrINRSPwX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTrINRSPwX .section-text {
  padding: 2rem 0;
}
.cid-sTrINRSPwX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sTrINRSPwX .inner-container {
    width: 100% !important;
  }
}
.cid-v72p0ykjSX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72p0ykjSX .mbr-section-subtitle {
  color: #767676;
}
.cid-v72p0ykjSX .container-table {
  margin: 0 auto;
}
.cid-v72p0ykjSX .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v72p0ykjSX .dataTables_wrapper {
  display: block;
}
.cid-v72p0ykjSX .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v72p0ykjSX .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v72p0ykjSX table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v72p0ykjSX table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v72p0ykjSX table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v72p0ykjSX table td {
  border-top: 1px solid #232323;
}
.cid-v72p0ykjSX table.table {
  background: #ecae15;
}
.cid-v72p0ykjSX .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v72p0ykjSX .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v72p0ykjSX .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v72p0ykjSX .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v72p0ykjSX .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v72p0ykjSX .dataTables_filter {
    text-align: center;
  }
  .cid-v72p0ykjSX .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v72p0ykjSX .mbr-section-title {
  color: #232323;
}
.cid-v72p0ykjSX .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v72p0ykjSX .body-item {
  text-align: center;
}
.cid-sTrINSysJt {
  background: #ecae15;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-sTrINSysJt .image-block {
  margin: auto;
}
.cid-sTrINSysJt figcaption {
  position: relative;
}
.cid-sTrINSysJt figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sTrINSysJt .image-block {
    width: 100% !important;
  }
}
.cid-sTrINSFGxw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrINSL2hz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrINSL2hz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrINSL2hz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrINSL2hz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrINSL2hz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrINSL2hz .row > .row {
  display: block;
}
.cid-sTrINSL2hz .mbr-gallery-item {
  width: 100%;
}
.cid-sTrINSL2hz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrINSL2hz .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrINSL2hz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrINSL2hz .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrINSL2hz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrINSL2hz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrINT0Cbw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrINT0Cbw .mbr-section-subtitle {
  color: #232323;
}
.cid-sTrINT0Cbw .container-table {
  margin: 0 auto;
}
.cid-sTrINT0Cbw .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sTrINT0Cbw .dataTables_wrapper {
  display: block;
}
.cid-sTrINT0Cbw .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sTrINT0Cbw .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sTrINT0Cbw table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-sTrINT0Cbw table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sTrINT0Cbw table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-sTrINT0Cbw table td {
  border-top: 1px solid #232323;
}
.cid-sTrINT0Cbw table.table {
  background: #ecae15;
}
.cid-sTrINT0Cbw .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sTrINT0Cbw .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sTrINT0Cbw .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sTrINT0Cbw .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sTrINT0Cbw .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sTrINT0Cbw .dataTables_filter {
    text-align: center;
  }
  .cid-sTrINT0Cbw .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sTrINT0Cbw .mbr-section-title {
  color: #232323;
}
.cid-sTrINT0Cbw .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-sTrINT0Cbw .body-item {
  text-align: center;
  color: #212529;
}
.cid-sTrINTvGEo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrINTBCNR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrINTBCNR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrINTBCNR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrINTBCNR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrINTBCNR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrINTBCNR .row > .row {
  display: block;
}
.cid-sTrINTBCNR .mbr-gallery-item {
  width: 100%;
}
.cid-sTrINTBCNR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrINTBCNR .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrINTBCNR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrINTBCNR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrINTBCNR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrINTBCNR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrINU5MZa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrINUerEz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrINUerEz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrINUerEz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrINUerEz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrINUerEz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrINUerEz .row > .row {
  display: block;
}
.cid-sTrINUerEz .mbr-gallery-item {
  width: 100%;
}
.cid-sTrINUerEz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrINUerEz .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrINUerEz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrINUerEz .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrINUerEz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrINUerEz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrINUIv78 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrINUTV3A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrINUTV3A .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrINUTV3A .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrINUTV3A .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrINUTV3A .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrINUTV3A .row > .row {
  display: block;
}
.cid-sTrINUTV3A .mbr-gallery-item {
  width: 100%;
}
.cid-sTrINUTV3A .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrINUTV3A .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrINUTV3A .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrINUTV3A .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrINUTV3A .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrINUTV3A .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrINVrZ0z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrINVCgk8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrINVCgk8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrINVCgk8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrINVCgk8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrINVCgk8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrINVCgk8 .row > .row {
  display: block;
}
.cid-sTrINVCgk8 .mbr-gallery-item {
  width: 100%;
}
.cid-sTrINVCgk8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrINVCgk8 .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrINVCgk8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrINVCgk8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrINVCgk8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrINVCgk8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrINWfgd2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrINWuwF4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrINWuwF4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrINWuwF4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrINWuwF4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrINWuwF4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrINWuwF4 .row > .row {
  display: block;
}
.cid-sTrINWuwF4 .mbr-gallery-item {
  width: 100%;
}
.cid-sTrINWuwF4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrINWuwF4 .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrINWuwF4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrINWuwF4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrINWuwF4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrINWuwF4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrINX8DsF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrINXqwN6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrINXqwN6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrINXqwN6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrINXqwN6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrINXqwN6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrINXqwN6 .row > .row {
  display: block;
}
.cid-sTrINXqwN6 .mbr-gallery-item {
  width: 100%;
}
.cid-sTrINXqwN6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrINXqwN6 .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrINXqwN6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrINXqwN6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrINXqwN6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrINXqwN6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrINY3IcY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrINYkR5I {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrINYkR5I .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrINYkR5I .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrINYkR5I .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrINYkR5I .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrINYkR5I .row > .row {
  display: block;
}
.cid-sTrINYkR5I .mbr-gallery-item {
  width: 100%;
}
.cid-sTrINYkR5I .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrINYkR5I .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrINYkR5I .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrINYkR5I .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrINYkR5I .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrINYkR5I .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrINYZKaU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrINZkaK4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrINZkaK4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrINZkaK4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrINZkaK4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrINZkaK4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrINZkaK4 .row > .row {
  display: block;
}
.cid-sTrINZkaK4 .mbr-gallery-item {
  width: 100%;
}
.cid-sTrINZkaK4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrINZkaK4 .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrINZkaK4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrINZkaK4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrINZkaK4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrINZkaK4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrIO02jnP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrIO0qd2u {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrIO0qd2u .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrIO0qd2u .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrIO0qd2u .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrIO0qd2u .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrIO0qd2u .row > .row {
  display: block;
}
.cid-sTrIO0qd2u .mbr-gallery-item {
  width: 100%;
}
.cid-sTrIO0qd2u .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrIO0qd2u .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrIO0qd2u .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrIO0qd2u .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrIO0qd2u .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrIO0qd2u .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrIO18Btz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrIO1wFC6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrIO1wFC6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrIO1wFC6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrIO1wFC6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrIO1wFC6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrIO1wFC6 .row > .row {
  display: block;
}
.cid-sTrIO1wFC6 .mbr-gallery-item {
  width: 100%;
}
.cid-sTrIO1wFC6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrIO1wFC6 .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrIO1wFC6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrIO1wFC6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrIO1wFC6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrIO1wFC6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrIO2gj9o {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrIO2FkiJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrIO2FkiJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrIO2FkiJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrIO2FkiJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrIO2FkiJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrIO2FkiJ .row > .row {
  display: block;
}
.cid-sTrIO2FkiJ .mbr-gallery-item {
  width: 100%;
}
.cid-sTrIO2FkiJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrIO2FkiJ .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrIO2FkiJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrIO2FkiJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrIO2FkiJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrIO2FkiJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrIO3ujNS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-sTrIO3Wbtz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-sTrIO3Wbtz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sTrIO3Wbtz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTrIO3Wbtz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTrIO3Wbtz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sTrIO3Wbtz .row > .row {
  display: block;
}
.cid-sTrIO3Wbtz .mbr-gallery-item {
  width: 100%;
}
.cid-sTrIO3Wbtz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sTrIO3Wbtz .mbr-gallery-item > div {
  position: relative;
}
.cid-sTrIO3Wbtz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sTrIO3Wbtz .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sTrIO3Wbtz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sTrIO3Wbtz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sTrIO4MAwr {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-sTrIO4MAwr .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-sTrIO4MAwr div.b {
  padding-top: 2rem;
}
.cid-sTrIO4MAwr H5 {
  color: #232323;
}
.cid-sUzTh5Pyjm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sUzTh5Pyjm .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUzTh5Pyjm .section-text {
  padding: 2rem 0;
}
.cid-sUzTh5Pyjm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sUzTh5Pyjm .inner-container {
    width: 100% !important;
  }
}
.cid-v9XdK1sgAw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9XdK1sgAw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XdK1sgAw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XdK1sgAw .row {
  justify-content: center;
}
.cid-v9XdK1sgAw .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XdK1sgAw .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XdK1sgAw .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XdK1sgAw .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XdK1sgAw .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XdK1sgAw .mbr-text_1,
.cid-v9XdK1sgAw .mbr-text_2,
.cid-v9XdK1sgAw .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XdK1sgAw .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XdK1sgAw .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XdK1sgAw .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XdK1sgAw .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XdK1sgAw .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XdK1sgAw .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XdK1sgAw .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XdK1sgAw .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XdK1sgAw .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XdK1sgAw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XdK1sgAw .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XdK1sgAw .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XdK1sgAw .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9XdLngioH {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9XdLngioH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XdLngioH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XdLngioH .row {
  justify-content: center;
}
.cid-v9XdLngioH .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XdLngioH .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XdLngioH .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XdLngioH .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XdLngioH .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XdLngioH .mbr-text_1,
.cid-v9XdLngioH .mbr-text_2,
.cid-v9XdLngioH .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XdLngioH .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XdLngioH .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XdLngioH .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XdLngioH .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XdLngioH .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XdLngioH .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XdLngioH .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XdLngioH .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XdLngioH .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9XdLngioH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XdLngioH .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XdLngioH .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XdLngioH .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sUzTh6e3Bm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sUzTh6e3Bm .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUzTh6e3Bm .section-text {
  padding: 2rem 0;
}
.cid-sUzTh6e3Bm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sUzTh6e3Bm .inner-container {
    width: 100% !important;
  }
}
.cid-sUzTh6lFna {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sUzTh6lFna .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUzTh6lFna .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-sUzTh6lFna .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sUzTh6lFna .inner-container {
    width: 100% !important;
  }
}
.cid-v9XdMaSZTB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9XdMaSZTB .mbr-section-subtitle {
  color: #767676;
}
.cid-v9XdMaSZTB .container-table {
  margin: 0 auto;
}
.cid-v9XdMaSZTB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9XdMaSZTB .dataTables_wrapper {
  display: block;
}
.cid-v9XdMaSZTB .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9XdMaSZTB .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9XdMaSZTB table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9XdMaSZTB table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9XdMaSZTB table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9XdMaSZTB table td {
  border-top: 1px solid #232323;
}
.cid-v9XdMaSZTB table.table {
  background: #3eddea;
}
.cid-v9XdMaSZTB .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9XdMaSZTB .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9XdMaSZTB .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9XdMaSZTB .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9XdMaSZTB .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9XdMaSZTB .dataTables_filter {
    text-align: center;
  }
  .cid-v9XdMaSZTB .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9XdMaSZTB .mbr-section-title {
  color: #ff3366;
}
.cid-v9XdMaSZTB .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9XdMaSZTB .body-item {
  text-align: center;
}
.cid-sUzTh6rdgQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sUzTh6rdgQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUzTh6rdgQ .section-text {
  padding: 2rem 0;
}
.cid-sUzTh6rdgQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sUzTh6rdgQ .inner-container {
    width: 100% !important;
  }
}
.cid-sUzTh6rdgQ .section-text DIV {
  text-align: center;
}
.cid-sUzTh6wCAL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-sUzUt5Z93c {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sUzUt5Z93c .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sUzUt5Z93c .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sUzUt5Z93c .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sUzUt5Z93c .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sUzUt5Z93c .row > .row {
  display: block;
}
.cid-sUzUt5Z93c .mbr-gallery-item {
  width: 100%;
}
.cid-sUzUt5Z93c .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sUzUt5Z93c .mbr-gallery-item > div {
  position: relative;
}
.cid-sUzUt5Z93c .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sUzUt5Z93c .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sUzUt5Z93c .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sUzUt5Z93c .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sUzUruNWle {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-sUzUruNWle .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sUzUruNWle .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sUzUruNWle .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sUzUruNWle .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sUzUruNWle .row > .row {
  display: block;
}
.cid-sUzUruNWle .mbr-gallery-item {
  width: 100%;
}
.cid-sUzUruNWle .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sUzUruNWle .mbr-gallery-item > div {
  position: relative;
}
.cid-sUzUruNWle .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sUzUruNWle .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sUzUruNWle .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sUzUruNWle .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sUzTh7RTWl {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-sUzTh7RTWl .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-sUzTh7RTWl div.b {
  padding-top: 2rem;
}
.cid-sUzWE0gYtq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sUzWE0gYtq .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUzWE0gYtq .section-text {
  padding: 2rem 0;
}
.cid-sUzWE0gYtq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sUzWE0gYtq .inner-container {
    width: 100% !important;
  }
}
.cid-v7vJp7NTyW {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vJp7NTyW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vJp7NTyW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vJp7NTyW .row {
  justify-content: center;
}
.cid-v7vJp7NTyW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vJp7NTyW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vJp7NTyW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vJp7NTyW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vJp7NTyW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vJp7NTyW .mbr-text_1,
.cid-v7vJp7NTyW .mbr-text_2,
.cid-v7vJp7NTyW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vJp7NTyW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJp7NTyW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vJp7NTyW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vJp7NTyW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vJp7NTyW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJp7NTyW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vJp7NTyW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vJp7NTyW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJp7NTyW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vJp7NTyW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vJp7NTyW .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vJp7NTyW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vJp7NTyW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vJpWUC93 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vJpWUC93 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vJpWUC93 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vJpWUC93 .row {
  justify-content: center;
}
.cid-v7vJpWUC93 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vJpWUC93 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vJpWUC93 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vJpWUC93 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vJpWUC93 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vJpWUC93 .mbr-text_1,
.cid-v7vJpWUC93 .mbr-text_2,
.cid-v7vJpWUC93 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vJpWUC93 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJpWUC93 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vJpWUC93 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vJpWUC93 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vJpWUC93 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJpWUC93 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vJpWUC93 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vJpWUC93 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJpWUC93 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vJpWUC93 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vJpWUC93 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vJpWUC93 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vJpWUC93 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-sUzWE0T4B3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sUzWE0T4B3 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUzWE0T4B3 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-sUzWE0T4B3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sUzWE0T4B3 .inner-container {
    width: 100% !important;
  }
}
.cid-sUzWE10SIR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-sUzXylLty8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sUzXylLty8 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUzXylLty8 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-sUzXylLty8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sUzXylLty8 .inner-container {
    width: 100% !important;
  }
}
.cid-sUzXzaorHy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sUzXzaorHy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sUzXzaorHy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sUzXzaorHy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sUzXzaorHy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sUzXzaorHy .row > .row {
  display: block;
}
.cid-sUzXzaorHy .mbr-gallery-item {
  width: 100%;
}
.cid-sUzXzaorHy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sUzXzaorHy .mbr-gallery-item > div {
  position: relative;
}
.cid-sUzXzaorHy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sUzXzaorHy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sUzXzaorHy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sUzXzaorHy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sUzXApTwxe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-sUzXApTwxe .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sUzXApTwxe .section-text {
  padding: 2rem 0;
}
.cid-sUzXApTwxe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sUzXApTwxe .inner-container {
    width: 100% !important;
  }
}
.cid-sUzXApTwxe .section-text DIV {
  text-align: center;
}
.cid-sUzWE1avfP {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-sUzWE1avfP .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-sUzWE1avfP div.b {
  padding-top: 2rem;
}
.cid-sUzWE1avfP H5 {
  color: #232323;
}
.cid-taHjUKUgEU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-taHjUKUgEU .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taHjUKUgEU .section-text {
  padding: 2rem 0;
}
.cid-taHjUKUgEU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taHjUKUgEU .inner-container {
    width: 100% !important;
  }
}
.cid-v7rBpFYsHi {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rBpFYsHi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rBpFYsHi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rBpFYsHi .row {
  justify-content: center;
}
.cid-v7rBpFYsHi .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rBpFYsHi .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rBpFYsHi .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rBpFYsHi .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rBpFYsHi .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rBpFYsHi .mbr-text_1,
.cid-v7rBpFYsHi .mbr-text_2,
.cid-v7rBpFYsHi .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rBpFYsHi .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rBpFYsHi .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rBpFYsHi .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rBpFYsHi .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rBpFYsHi .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rBpFYsHi .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rBpFYsHi .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rBpFYsHi .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rBpFYsHi .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rBpFYsHi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rBpFYsHi .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rBpFYsHi .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rBpFYsHi .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rBqpBIUR {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rBqpBIUR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rBqpBIUR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rBqpBIUR .row {
  justify-content: center;
}
.cid-v7rBqpBIUR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rBqpBIUR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rBqpBIUR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rBqpBIUR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rBqpBIUR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rBqpBIUR .mbr-text_1,
.cid-v7rBqpBIUR .mbr-text_2,
.cid-v7rBqpBIUR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rBqpBIUR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rBqpBIUR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rBqpBIUR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rBqpBIUR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rBqpBIUR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rBqpBIUR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rBqpBIUR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rBqpBIUR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rBqpBIUR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rBqpBIUR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rBqpBIUR .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rBqpBIUR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rBqpBIUR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-taHjULCQnY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-taHjULCQnY .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taHjULCQnY .section-text {
  padding: 2rem 0;
}
.cid-taHjULCQnY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taHjULCQnY .inner-container {
    width: 100% !important;
  }
}
.cid-taHjULJGke {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-taHjULJGke .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taHjULJGke .section-text {
  padding: 2rem 0;
}
.cid-taHjULJGke .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taHjULJGke .inner-container {
    width: 100% !important;
  }
}
.cid-taHjULQNz1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-taHjULQNz1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-taHjULQNz1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taHjULQNz1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-taHjULQNz1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-taHjULQNz1 .row > .row {
  display: block;
}
.cid-taHjULQNz1 .mbr-gallery-item {
  width: 100%;
}
.cid-taHjULQNz1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-taHjULQNz1 .mbr-gallery-item > div {
  position: relative;
}
.cid-taHjULQNz1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-taHjULQNz1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-taHjULQNz1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-taHjULQNz1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-taHjUMrhYf {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-taHjUMrhYf .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-taHjUMrhYf div.b {
  padding-top: 2rem;
}
.cid-taHjUMrhYf H5 {
  color: #232323;
}
.cid-taHrWPIlqF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taHrWPIlqF .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taHrWPIlqF .section-text {
  padding: 2rem 0;
}
.cid-taHrWPIlqF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taHrWPIlqF .inner-container {
    width: 100% !important;
  }
}
.cid-v7vGNJ2bIw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vGNJ2bIw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vGNJ2bIw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vGNJ2bIw .row {
  justify-content: center;
}
.cid-v7vGNJ2bIw .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vGNJ2bIw .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vGNJ2bIw .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vGNJ2bIw .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vGNJ2bIw .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vGNJ2bIw .mbr-text_1,
.cid-v7vGNJ2bIw .mbr-text_2,
.cid-v7vGNJ2bIw .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vGNJ2bIw .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGNJ2bIw .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vGNJ2bIw .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vGNJ2bIw .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vGNJ2bIw .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGNJ2bIw .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vGNJ2bIw .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vGNJ2bIw .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGNJ2bIw .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vGNJ2bIw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vGNJ2bIw .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vGNJ2bIw .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vGNJ2bIw .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vGOvPWJl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vGOvPWJl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vGOvPWJl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vGOvPWJl .row {
  justify-content: center;
}
.cid-v7vGOvPWJl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vGOvPWJl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vGOvPWJl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vGOvPWJl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vGOvPWJl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vGOvPWJl .mbr-text_1,
.cid-v7vGOvPWJl .mbr-text_2,
.cid-v7vGOvPWJl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vGOvPWJl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGOvPWJl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vGOvPWJl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vGOvPWJl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vGOvPWJl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGOvPWJl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vGOvPWJl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vGOvPWJl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vGOvPWJl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vGOvPWJl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vGOvPWJl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vGOvPWJl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vGOvPWJl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-taHrWQ8ztb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taHrWQ8ztb .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taHrWQ8ztb .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-taHrWQ8ztb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taHrWQ8ztb .inner-container {
    width: 100% !important;
  }
}
.cid-v8aEGvo0Pl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aEGvo0Pl .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aEGvo0Pl .container-table {
  margin: 0 auto;
}
.cid-v8aEGvo0Pl .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aEGvo0Pl .dataTables_wrapper {
  display: block;
}
.cid-v8aEGvo0Pl .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aEGvo0Pl .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aEGvo0Pl table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aEGvo0Pl table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aEGvo0Pl table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aEGvo0Pl table td {
  border-top: 1px solid #232323;
}
.cid-v8aEGvo0Pl .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aEGvo0Pl .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aEGvo0Pl .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aEGvo0Pl .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aEGvo0Pl .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aEGvo0Pl .dataTables_filter {
    text-align: center;
  }
  .cid-v8aEGvo0Pl .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aEGvo0Pl .mbr-section-title {
  color: #232323;
}
.cid-v8aEGvo0Pl .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aEGvo0Pl .body-item {
  text-align: center;
}
.cid-taHrWQgANf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taHrWQgANf .mbr-section-subtitle {
  color: #767676;
}
.cid-taHrWQgANf .container-table {
  margin: 0 auto;
}
.cid-taHrWQgANf .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-taHrWQgANf .dataTables_wrapper {
  display: block;
}
.cid-taHrWQgANf .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-taHrWQgANf .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-taHrWQgANf table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-taHrWQgANf table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-taHrWQgANf table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-taHrWQgANf table td {
  border-top: 1px solid #232323;
}
.cid-taHrWQgANf .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-taHrWQgANf .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-taHrWQgANf .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-taHrWQgANf .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-taHrWQgANf .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-taHrWQgANf .dataTables_filter {
    text-align: center;
  }
  .cid-taHrWQgANf .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-taHrWQgANf .mbr-section-title {
  color: #232323;
}
.cid-taHrWQgANf .head-item {
  text-align: center;
  color: #232323;
}
.cid-taHrWQgANf .body-item {
  text-align: center;
}
.cid-taHrWQZh7B {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-taHrWQZh7B .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-taHrWQZh7B div.b {
  padding-top: 2rem;
}
.cid-taHrWQZh7B H5 {
  color: #232323;
}
.cid-taI1mkFqPD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI1mkFqPD .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taI1mkFqPD .section-text {
  padding: 2rem 0;
}
.cid-taI1mkFqPD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taI1mkFqPD .inner-container {
    width: 100% !important;
  }
}
.cid-v7vJEIsdu2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vJEIsdu2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vJEIsdu2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vJEIsdu2 .row {
  justify-content: center;
}
.cid-v7vJEIsdu2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vJEIsdu2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vJEIsdu2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vJEIsdu2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vJEIsdu2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vJEIsdu2 .mbr-text_1,
.cid-v7vJEIsdu2 .mbr-text_2,
.cid-v7vJEIsdu2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vJEIsdu2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJEIsdu2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vJEIsdu2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vJEIsdu2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vJEIsdu2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJEIsdu2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vJEIsdu2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vJEIsdu2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJEIsdu2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vJEIsdu2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vJEIsdu2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vJEIsdu2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vJEIsdu2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vJFAdqWu {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vJFAdqWu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vJFAdqWu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vJFAdqWu .row {
  justify-content: center;
}
.cid-v7vJFAdqWu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vJFAdqWu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vJFAdqWu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vJFAdqWu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vJFAdqWu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vJFAdqWu .mbr-text_1,
.cid-v7vJFAdqWu .mbr-text_2,
.cid-v7vJFAdqWu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vJFAdqWu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJFAdqWu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vJFAdqWu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vJFAdqWu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vJFAdqWu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJFAdqWu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vJFAdqWu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vJFAdqWu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJFAdqWu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vJFAdqWu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vJFAdqWu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vJFAdqWu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vJFAdqWu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-taI1ml6xec {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI1ml6xec .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taI1ml6xec .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-taI1ml6xec .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taI1ml6xec .inner-container {
    width: 100% !important;
  }
}
.cid-taI1mlc1el {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-taI1mlgyfK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI1mlgyfK .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taI1mlgyfK .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-taI1mlgyfK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taI1mlgyfK .inner-container {
    width: 100% !important;
  }
}
.cid-taI1mllEeM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI1mllEeM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-taI1mllEeM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taI1mllEeM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-taI1mllEeM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-taI1mllEeM .row > .row {
  display: block;
}
.cid-taI1mllEeM .mbr-gallery-item {
  width: 100%;
}
.cid-taI1mllEeM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-taI1mllEeM .mbr-gallery-item > div {
  position: relative;
}
.cid-taI1mllEeM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-taI1mllEeM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-taI1mllEeM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-taI1mllEeM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-taI1mlJ2CO {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-taI1mlJ2CO .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-taI1mlJ2CO div.b {
  padding-top: 2rem;
}
.cid-taI1mlJ2CO H5 {
  color: #232323;
}
.cid-taI1EX7sd5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI1EX7sd5 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taI1EX7sd5 .section-text {
  padding: 2rem 0;
}
.cid-taI1EX7sd5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taI1EX7sd5 .inner-container {
    width: 100% !important;
  }
}
.cid-v7vJZJyHlX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vJZJyHlX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vJZJyHlX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vJZJyHlX .row {
  justify-content: center;
}
.cid-v7vJZJyHlX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vJZJyHlX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vJZJyHlX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vJZJyHlX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vJZJyHlX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vJZJyHlX .mbr-text_1,
.cid-v7vJZJyHlX .mbr-text_2,
.cid-v7vJZJyHlX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vJZJyHlX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJZJyHlX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vJZJyHlX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vJZJyHlX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vJZJyHlX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJZJyHlX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vJZJyHlX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vJZJyHlX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vJZJyHlX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vJZJyHlX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vJZJyHlX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vJZJyHlX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vJZJyHlX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vK0woLoO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vK0woLoO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vK0woLoO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vK0woLoO .row {
  justify-content: center;
}
.cid-v7vK0woLoO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vK0woLoO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vK0woLoO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vK0woLoO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vK0woLoO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vK0woLoO .mbr-text_1,
.cid-v7vK0woLoO .mbr-text_2,
.cid-v7vK0woLoO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vK0woLoO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vK0woLoO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vK0woLoO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vK0woLoO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vK0woLoO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vK0woLoO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vK0woLoO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vK0woLoO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vK0woLoO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vK0woLoO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vK0woLoO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vK0woLoO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vK0woLoO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-taI1EXwugl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI1EXwugl .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taI1EXwugl .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-taI1EXwugl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taI1EXwugl .inner-container {
    width: 100% !important;
  }
}
.cid-taI1EXBi9t {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-taI1EXEMAv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI1EXEMAv .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taI1EXEMAv .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-taI1EXEMAv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taI1EXEMAv .inner-container {
    width: 100% !important;
  }
}
.cid-taI1EXXwGG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI1EXXwGG .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taI1EXXwGG .section-text {
  padding: 2rem 0;
}
.cid-taI1EXXwGG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taI1EXXwGG .inner-container {
    width: 100% !important;
  }
}
.cid-taI1EXXwGG .section-text DIV {
  text-align: center;
}
.cid-taI1EXJxEp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI1EXJxEp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-taI1EXJxEp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taI1EXJxEp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-taI1EXJxEp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-taI1EXJxEp .row > .row {
  display: block;
}
.cid-taI1EXJxEp .mbr-gallery-item {
  width: 100%;
}
.cid-taI1EXJxEp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-taI1EXJxEp .mbr-gallery-item > div {
  position: relative;
}
.cid-taI1EXJxEp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-taI1EXJxEp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-taI1EXJxEp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-taI1EXJxEp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-taI1EY4t18 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-taI1EY4t18 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-taI1EY4t18 div.b {
  padding-top: 2rem;
}
.cid-taI1EY4t18 H5 {
  color: #232323;
}
.cid-taI1YYl6zN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI1YYl6zN .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taI1YYl6zN .section-text {
  padding: 2rem 0;
}
.cid-taI1YYl6zN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taI1YYl6zN .inner-container {
    width: 100% !important;
  }
}
.cid-v7vKjbfU3G {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vKjbfU3G .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vKjbfU3G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vKjbfU3G .row {
  justify-content: center;
}
.cid-v7vKjbfU3G .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vKjbfU3G .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vKjbfU3G .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vKjbfU3G .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vKjbfU3G .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vKjbfU3G .mbr-text_1,
.cid-v7vKjbfU3G .mbr-text_2,
.cid-v7vKjbfU3G .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vKjbfU3G .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKjbfU3G .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vKjbfU3G .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vKjbfU3G .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vKjbfU3G .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKjbfU3G .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vKjbfU3G .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vKjbfU3G .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKjbfU3G .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vKjbfU3G .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vKjbfU3G .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vKjbfU3G .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vKjbfU3G .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vKk2b4NF {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vKk2b4NF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vKk2b4NF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vKk2b4NF .row {
  justify-content: center;
}
.cid-v7vKk2b4NF .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vKk2b4NF .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vKk2b4NF .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vKk2b4NF .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vKk2b4NF .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vKk2b4NF .mbr-text_1,
.cid-v7vKk2b4NF .mbr-text_2,
.cid-v7vKk2b4NF .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vKk2b4NF .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKk2b4NF .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vKk2b4NF .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vKk2b4NF .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vKk2b4NF .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKk2b4NF .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vKk2b4NF .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vKk2b4NF .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKk2b4NF .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vKk2b4NF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vKk2b4NF .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vKk2b4NF .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vKk2b4NF .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-taI1YYKeag {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI1YYKeag .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taI1YYKeag .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-taI1YYKeag .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taI1YYKeag .inner-container {
    width: 100% !important;
  }
}
.cid-taI7bEmvfb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-taI1YYUJwu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI1YYUJwu .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taI1YYUJwu .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-taI1YYUJwu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taI1YYUJwu .inner-container {
    width: 100% !important;
  }
}
.cid-taI1YYYion {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI1YYYion .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-taI1YYYion .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taI1YYYion .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-taI1YYYion .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-taI1YYYion .row > .row {
  display: block;
}
.cid-taI1YYYion .mbr-gallery-item {
  width: 100%;
}
.cid-taI1YYYion .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-taI1YYYion .mbr-gallery-item > div {
  position: relative;
}
.cid-taI1YYYion .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-taI1YYYion .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-taI1YYYion .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-taI1YYYion .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-taI1YZew7e {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI1YZew7e .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taI1YZew7e .section-text {
  padding: 2rem 0;
}
.cid-taI1YZew7e .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taI1YZew7e .inner-container {
    width: 100% !important;
  }
}
.cid-taI1YZew7e .section-text DIV {
  text-align: center;
}
.cid-taI1YZlpza {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-taI1YZlpza .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-taI1YZlpza div.b {
  padding-top: 2rem;
}
.cid-taI1YZlpza H5 {
  color: #232323;
}
.cid-taI2copgwr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI2copgwr .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taI2copgwr .section-text {
  padding: 2rem 0;
}
.cid-taI2copgwr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taI2copgwr .inner-container {
    width: 100% !important;
  }
}
.cid-v7vKCds8AV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vKCds8AV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vKCds8AV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vKCds8AV .row {
  justify-content: center;
}
.cid-v7vKCds8AV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vKCds8AV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vKCds8AV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vKCds8AV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vKCds8AV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vKCds8AV .mbr-text_1,
.cid-v7vKCds8AV .mbr-text_2,
.cid-v7vKCds8AV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vKCds8AV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKCds8AV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vKCds8AV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vKCds8AV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vKCds8AV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKCds8AV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vKCds8AV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vKCds8AV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKCds8AV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vKCds8AV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vKCds8AV .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vKCds8AV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vKCds8AV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vKDcDbWx {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vKDcDbWx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vKDcDbWx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vKDcDbWx .row {
  justify-content: center;
}
.cid-v7vKDcDbWx .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vKDcDbWx .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vKDcDbWx .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vKDcDbWx .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vKDcDbWx .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vKDcDbWx .mbr-text_1,
.cid-v7vKDcDbWx .mbr-text_2,
.cid-v7vKDcDbWx .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vKDcDbWx .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKDcDbWx .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vKDcDbWx .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vKDcDbWx .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vKDcDbWx .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKDcDbWx .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vKDcDbWx .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vKDcDbWx .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKDcDbWx .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vKDcDbWx .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vKDcDbWx .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vKDcDbWx .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vKDcDbWx .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-taI2coUXJW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI2coUXJW .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taI2coUXJW .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-taI2coUXJW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taI2coUXJW .inner-container {
    width: 100% !important;
  }
}
.cid-taI2cp30ZD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-taI2cp9bh8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI2cp9bh8 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-taI2cp9bh8 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-taI2cp9bh8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-taI2cp9bh8 .inner-container {
    width: 100% !important;
  }
}
.cid-taI2cpfg6w {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-taI2cpfg6w .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-taI2cpfg6w .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taI2cpfg6w .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-taI2cpfg6w .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-taI2cpfg6w .row > .row {
  display: block;
}
.cid-taI2cpfg6w .mbr-gallery-item {
  width: 100%;
}
.cid-taI2cpfg6w .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-taI2cpfg6w .mbr-gallery-item > div {
  position: relative;
}
.cid-taI2cpfg6w .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-taI2cpfg6w .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-taI2cpfg6w .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-taI2cpfg6w .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-taI2cpChjI {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-taI2cpChjI .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-taI2cpChjI div.b {
  padding-top: 2rem;
}
.cid-taI2cpChjI H5 {
  color: #232323;
}
.cid-tk4Qu8aipX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-tk4Qu8aipX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tk4Qu8aipX .section-text {
  padding: 2rem 0;
}
.cid-tk4Qu8aipX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tk4Qu8aipX .inner-container {
    width: 100% !important;
  }
}
.cid-v7rCD0WpNS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rCD0WpNS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rCD0WpNS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rCD0WpNS .row {
  justify-content: center;
}
.cid-v7rCD0WpNS .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rCD0WpNS .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rCD0WpNS .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rCD0WpNS .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rCD0WpNS .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rCD0WpNS .mbr-text_1,
.cid-v7rCD0WpNS .mbr-text_2,
.cid-v7rCD0WpNS .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rCD0WpNS .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rCD0WpNS .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rCD0WpNS .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rCD0WpNS .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rCD0WpNS .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rCD0WpNS .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rCD0WpNS .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rCD0WpNS .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rCD0WpNS .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rCD0WpNS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rCD0WpNS .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rCD0WpNS .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rCD0WpNS .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rCDJxydG {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rCDJxydG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rCDJxydG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rCDJxydG .row {
  justify-content: center;
}
.cid-v7rCDJxydG .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rCDJxydG .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rCDJxydG .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rCDJxydG .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rCDJxydG .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rCDJxydG .mbr-text_1,
.cid-v7rCDJxydG .mbr-text_2,
.cid-v7rCDJxydG .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rCDJxydG .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rCDJxydG .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rCDJxydG .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rCDJxydG .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rCDJxydG .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rCDJxydG .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rCDJxydG .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rCDJxydG .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rCDJxydG .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rCDJxydG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rCDJxydG .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rCDJxydG .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rCDJxydG .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tk4Qu8Byyy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-tk4Qu8Byyy .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tk4Qu8Byyy .section-text {
  padding: 2rem 0;
}
.cid-tk4Qu8Byyy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tk4Qu8Byyy .inner-container {
    width: 100% !important;
  }
}
.cid-tk4Qu8JjTT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-tk4Qu8JjTT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tk4Qu8JjTT .section-text {
  padding: 2rem 0;
}
.cid-tk4Qu8JjTT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tk4Qu8JjTT .inner-container {
    width: 100% !important;
  }
}
.cid-tk4Qu8Q6Ur {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-tk4Qu8Q6Ur .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tk4Qu8Q6Ur .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tk4Qu8Q6Ur .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tk4Qu8Q6Ur .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tk4Qu8Q6Ur .row > .row {
  display: block;
}
.cid-tk4Qu8Q6Ur .mbr-gallery-item {
  width: 100%;
}
.cid-tk4Qu8Q6Ur .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tk4Qu8Q6Ur .mbr-gallery-item > div {
  position: relative;
}
.cid-tk4Qu8Q6Ur .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tk4Qu8Q6Ur .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tk4Qu8Q6Ur .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tk4Qu8Q6Ur .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tk4Qu9aFPD {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-tk4Qu9aFPD .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tk4Qu9aFPD div.b {
  padding-top: 2rem;
}
.cid-tk4Qu9aFPD H5 {
  color: #232323;
}
.cid-tm6PIU1xoU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6PIU1xoU .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tm6PIU1xoU .section-text {
  padding: 2rem 0;
}
.cid-tm6PIU1xoU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tm6PIU1xoU .inner-container {
    width: 100% !important;
  }
}
.cid-v7vKSNO7mg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vKSNO7mg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vKSNO7mg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vKSNO7mg .row {
  justify-content: center;
}
.cid-v7vKSNO7mg .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vKSNO7mg .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vKSNO7mg .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vKSNO7mg .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vKSNO7mg .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vKSNO7mg .mbr-text_1,
.cid-v7vKSNO7mg .mbr-text_2,
.cid-v7vKSNO7mg .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vKSNO7mg .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKSNO7mg .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vKSNO7mg .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vKSNO7mg .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vKSNO7mg .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKSNO7mg .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vKSNO7mg .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vKSNO7mg .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKSNO7mg .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vKSNO7mg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vKSNO7mg .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vKSNO7mg .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vKSNO7mg .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vKTJXitF {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vKTJXitF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vKTJXitF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vKTJXitF .row {
  justify-content: center;
}
.cid-v7vKTJXitF .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vKTJXitF .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vKTJXitF .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vKTJXitF .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vKTJXitF .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vKTJXitF .mbr-text_1,
.cid-v7vKTJXitF .mbr-text_2,
.cid-v7vKTJXitF .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vKTJXitF .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKTJXitF .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vKTJXitF .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vKTJXitF .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vKTJXitF .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKTJXitF .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vKTJXitF .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vKTJXitF .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vKTJXitF .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vKTJXitF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vKTJXitF .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vKTJXitF .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vKTJXitF .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tm6PIUm8Xq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6PIUm8Xq .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tm6PIUm8Xq .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-tm6PIUm8Xq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tm6PIUm8Xq .inner-container {
    width: 100% !important;
  }
}
.cid-tm6PIUsrfG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-tm77w2FH8A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm77w2FH8A .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tm77w2FH8A .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tm77w2FH8A .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tm77w2FH8A .inner-container {
    width: 100% !important;
  }
}
.cid-tm6RFgQRgM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6RFgQRgM .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tm6RFgQRgM .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tm6RFgQRgM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tm6RFgQRgM .inner-container {
    width: 100% !important;
  }
}
.cid-tm6RHiJR0b {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6RHiJR0b .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tm6RHiJR0b .section-text {
  padding: 2rem 0;
}
.cid-tm6RHiJR0b .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tm6RHiJR0b .inner-container {
    width: 100% !important;
  }
}
.cid-tm6RHiJR0b .section-text DIV {
  text-align: center;
}
.cid-tm6S3zYxzf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6S3zYxzf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tm6S3zYxzf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tm6S3zYxzf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tm6S3zYxzf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tm6S3zYxzf .row > .row {
  display: block;
}
.cid-tm6S3zYxzf .mbr-gallery-item {
  width: 100%;
}
.cid-tm6S3zYxzf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tm6S3zYxzf .mbr-gallery-item > div {
  position: relative;
}
.cid-tm6S3zYxzf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tm6S3zYxzf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tm6S3zYxzf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tm6S3zYxzf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tm6SAhsM4q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6SAhsM4q .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tm6SAhsM4q .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tm6SAhsM4q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tm6SAhsM4q .inner-container {
    width: 100% !important;
  }
}
.cid-tm6Sagmaxf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6Sagmaxf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tm6Sagmaxf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tm6Sagmaxf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tm6Sagmaxf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tm6Sagmaxf .row > .row {
  display: block;
}
.cid-tm6Sagmaxf .mbr-gallery-item {
  width: 100%;
}
.cid-tm6Sagmaxf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tm6Sagmaxf .mbr-gallery-item > div {
  position: relative;
}
.cid-tm6Sagmaxf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tm6Sagmaxf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tm6Sagmaxf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tm6Sagmaxf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tm6SJTRodu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6SJTRodu .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tm6SJTRodu .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tm6SJTRodu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tm6SJTRodu .inner-container {
    width: 100% !important;
  }
}
.cid-tm6SLl1Aax {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6SLl1Aax .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tm6SLl1Aax .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tm6SLl1Aax .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tm6SLl1Aax .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tm6SLl1Aax .row > .row {
  display: block;
}
.cid-tm6SLl1Aax .mbr-gallery-item {
  width: 100%;
}
.cid-tm6SLl1Aax .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tm6SLl1Aax .mbr-gallery-item > div {
  position: relative;
}
.cid-tm6SLl1Aax .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tm6SLl1Aax .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tm6SLl1Aax .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tm6SLl1Aax .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tm6SNXqvgn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6SNXqvgn .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tm6SNXqvgn .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tm6SNXqvgn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tm6SNXqvgn .inner-container {
    width: 100% !important;
  }
}
.cid-tm6SPxdAS1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6SPxdAS1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tm6SPxdAS1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tm6SPxdAS1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tm6SPxdAS1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tm6SPxdAS1 .row > .row {
  display: block;
}
.cid-tm6SPxdAS1 .mbr-gallery-item {
  width: 100%;
}
.cid-tm6SPxdAS1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tm6SPxdAS1 .mbr-gallery-item > div {
  position: relative;
}
.cid-tm6SPxdAS1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tm6SPxdAS1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tm6SPxdAS1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tm6SPxdAS1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tm6SR7Xzvb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6SR7Xzvb .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tm6SR7Xzvb .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tm6SR7Xzvb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tm6SR7Xzvb .inner-container {
    width: 100% !important;
  }
}
.cid-tm6SRYRXlA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6SRYRXlA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tm6SRYRXlA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tm6SRYRXlA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tm6SRYRXlA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tm6SRYRXlA .row > .row {
  display: block;
}
.cid-tm6SRYRXlA .mbr-gallery-item {
  width: 100%;
}
.cid-tm6SRYRXlA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tm6SRYRXlA .mbr-gallery-item > div {
  position: relative;
}
.cid-tm6SRYRXlA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tm6SRYRXlA .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tm6SRYRXlA .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tm6SRYRXlA .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tm6STqABac {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6STqABac .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tm6STqABac .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tm6STqABac .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tm6STqABac .inner-container {
    width: 100% !important;
  }
}
.cid-tm6SUpIKk5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6SUpIKk5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tm6SUpIKk5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tm6SUpIKk5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tm6SUpIKk5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tm6SUpIKk5 .row > .row {
  display: block;
}
.cid-tm6SUpIKk5 .mbr-gallery-item {
  width: 100%;
}
.cid-tm6SUpIKk5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tm6SUpIKk5 .mbr-gallery-item > div {
  position: relative;
}
.cid-tm6SUpIKk5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tm6SUpIKk5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tm6SUpIKk5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tm6SUpIKk5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tm6SVnoHxW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6SVnoHxW .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tm6SVnoHxW .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tm6SVnoHxW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tm6SVnoHxW .inner-container {
    width: 100% !important;
  }
}
.cid-tm6SVXRyA7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6SVXRyA7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tm6SVXRyA7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tm6SVXRyA7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tm6SVXRyA7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tm6SVXRyA7 .row > .row {
  display: block;
}
.cid-tm6SVXRyA7 .mbr-gallery-item {
  width: 100%;
}
.cid-tm6SVXRyA7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tm6SVXRyA7 .mbr-gallery-item > div {
  position: relative;
}
.cid-tm6SVXRyA7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tm6SVXRyA7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tm6SVXRyA7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tm6SVXRyA7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tm6SX1fIE0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6SX1fIE0 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tm6SX1fIE0 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tm6SX1fIE0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tm6SX1fIE0 .inner-container {
    width: 100% !important;
  }
}
.cid-tm6SYpvYKN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6SYpvYKN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tm6SYpvYKN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tm6SYpvYKN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tm6SYpvYKN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tm6SYpvYKN .row > .row {
  display: block;
}
.cid-tm6SYpvYKN .mbr-gallery-item {
  width: 100%;
}
.cid-tm6SYpvYKN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tm6SYpvYKN .mbr-gallery-item > div {
  position: relative;
}
.cid-tm6SYpvYKN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tm6SYpvYKN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tm6SYpvYKN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tm6SYpvYKN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tm6T001hcm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6T001hcm .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tm6T001hcm .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tm6T001hcm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tm6T001hcm .inner-container {
    width: 100% !important;
  }
}
.cid-tm6T0OFndz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6T0OFndz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tm6T0OFndz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tm6T0OFndz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tm6T0OFndz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tm6T0OFndz .row > .row {
  display: block;
}
.cid-tm6T0OFndz .mbr-gallery-item {
  width: 100%;
}
.cid-tm6T0OFndz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tm6T0OFndz .mbr-gallery-item > div {
  position: relative;
}
.cid-tm6T0OFndz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tm6T0OFndz .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tm6T0OFndz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tm6T0OFndz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tm6T1PKz0Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6T1PKz0Q .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tm6T1PKz0Q .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tm6T1PKz0Q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tm6T1PKz0Q .inner-container {
    width: 100% !important;
  }
}
.cid-tm6T2BkA7U {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tm6T2BkA7U .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tm6T2BkA7U .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tm6T2BkA7U .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tm6T2BkA7U .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tm6T2BkA7U .row > .row {
  display: block;
}
.cid-tm6T2BkA7U .mbr-gallery-item {
  width: 100%;
}
.cid-tm6T2BkA7U .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tm6T2BkA7U .mbr-gallery-item > div {
  position: relative;
}
.cid-tm6T2BkA7U .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tm6T2BkA7U .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tm6T2BkA7U .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tm6T2BkA7U .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tm6PIUXl9x {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-tm6PIUXl9x .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tm6PIUXl9x div.b {
  padding-top: 2rem;
}
.cid-tm6PIUXl9x H5 {
  color: #232323;
}
.cid-tmONOMekup {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tmONOMekup .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tmONOMekup .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-tmONOMekup .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tmONOMekup .inner-container {
    width: 100% !important;
  }
}
.cid-v7eavRzEzM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7eavRzEzM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7eavRzEzM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7eavRzEzM .row {
  justify-content: center;
}
.cid-v7eavRzEzM .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7eavRzEzM .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7eavRzEzM .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7eavRzEzM .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7eavRzEzM .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7eavRzEzM .mbr-text_1,
.cid-v7eavRzEzM .mbr-text_2,
.cid-v7eavRzEzM .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7eavRzEzM .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eavRzEzM .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7eavRzEzM .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7eavRzEzM .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7eavRzEzM .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eavRzEzM .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7eavRzEzM .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7eavRzEzM .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eavRzEzM .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7eavRzEzM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7eavRzEzM .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7eavRzEzM .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7eavRzEzM .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7eawS8SO5 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7eawS8SO5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7eawS8SO5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7eawS8SO5 .row {
  justify-content: center;
}
.cid-v7eawS8SO5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7eawS8SO5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7eawS8SO5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7eawS8SO5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7eawS8SO5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7eawS8SO5 .mbr-text_1,
.cid-v7eawS8SO5 .mbr-text_2,
.cid-v7eawS8SO5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7eawS8SO5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eawS8SO5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7eawS8SO5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7eawS8SO5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7eawS8SO5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eawS8SO5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7eawS8SO5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7eawS8SO5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eawS8SO5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7eawS8SO5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7eawS8SO5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7eawS8SO5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7eawS8SO5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tmONOMDj0u {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tmONOMDj0u .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tmONOMDj0u .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-tmONOMDj0u .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tmONOMDj0u .inner-container {
    width: 100% !important;
  }
}
.cid-v7eay9IfUV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7eay9IfUV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7eay9IfUV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7eay9IfUV .row {
  justify-content: center;
}
.cid-v7eay9IfUV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7eay9IfUV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7eay9IfUV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7eay9IfUV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7eay9IfUV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7eay9IfUV .mbr-text_1,
.cid-v7eay9IfUV .mbr-text_2,
.cid-v7eay9IfUV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7eay9IfUV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eay9IfUV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7eay9IfUV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7eay9IfUV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7eay9IfUV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eay9IfUV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7eay9IfUV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7eay9IfUV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eay9IfUV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7eay9IfUV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7eay9IfUV .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7eay9IfUV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7eay9IfUV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tmONOMI3g9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmONOMNlkb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tmONOMNlkb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tmONOMNlkb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmONOMNlkb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmONOMNlkb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tmONOMNlkb .row > .row {
  display: block;
}
.cid-tmONOMNlkb .mbr-gallery-item {
  width: 100%;
}
.cid-tmONOMNlkb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tmONOMNlkb .mbr-gallery-item > div {
  position: relative;
}
.cid-tmONOMNlkb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tmONOMNlkb .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tmONOMNlkb .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tmONOMNlkb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tmONONdekb {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-tmONONdekb .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tmONONdekb div.b {
  padding-top: 2rem;
}
.cid-trMqKSvraG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKSvraG .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-trMqKSvraG .section-text {
  padding: 2rem 0;
}
.cid-trMqKSvraG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-trMqKSvraG .inner-container {
    width: 100% !important;
  }
}
.cid-v6XtZufgbY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6XtZufgbY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XtZufgbY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XtZufgbY .row {
  justify-content: center;
}
.cid-v6XtZufgbY .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XtZufgbY .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XtZufgbY .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XtZufgbY .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XtZufgbY .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XtZufgbY .mbr-text_1,
.cid-v6XtZufgbY .mbr-text_2,
.cid-v6XtZufgbY .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XtZufgbY .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XtZufgbY .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XtZufgbY .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XtZufgbY .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XtZufgbY .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XtZufgbY .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XtZufgbY .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XtZufgbY .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XtZufgbY .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XtZufgbY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XtZufgbY .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XtZufgbY .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XtZufgbY .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6Xu0jabMt {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6Xu0jabMt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Xu0jabMt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Xu0jabMt .row {
  justify-content: center;
}
.cid-v6Xu0jabMt .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Xu0jabMt .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Xu0jabMt .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Xu0jabMt .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Xu0jabMt .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Xu0jabMt .mbr-text_1,
.cid-v6Xu0jabMt .mbr-text_2,
.cid-v6Xu0jabMt .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Xu0jabMt .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xu0jabMt .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xu0jabMt .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xu0jabMt .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xu0jabMt .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xu0jabMt .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Xu0jabMt .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Xu0jabMt .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Xu0jabMt .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Xu0jabMt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Xu0jabMt .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Xu0jabMt .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Xu0jabMt .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XtXAPnXT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6XtXAPnXT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6XtXAPnXT .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6XtXAPnXT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6XtXAPnXT .inner-container {
    width: 100% !important;
  }
}
.cid-trMqKT4di0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKT4di0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-trMqKT4di0 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-trMqKT4di0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-trMqKT4di0 .inner-container {
    width: 100% !important;
  }
}
.cid-uybfwV3zgK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uybfwV3zgK .mbr-section-subtitle {
  color: #767676;
}
.cid-uybfwV3zgK .container-table {
  margin: 0 auto;
}
.cid-uybfwV3zgK .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uybfwV3zgK .dataTables_wrapper {
  display: block;
}
.cid-uybfwV3zgK .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uybfwV3zgK .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uybfwV3zgK table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uybfwV3zgK table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uybfwV3zgK table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uybfwV3zgK table td {
  border-top: 1px solid #232323;
}
.cid-uybfwV3zgK .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uybfwV3zgK .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uybfwV3zgK .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uybfwV3zgK .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uybfwV3zgK .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uybfwV3zgK .dataTables_filter {
    text-align: center;
  }
  .cid-uybfwV3zgK .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uybfwV3zgK .mbr-section-title {
  color: #ff3366;
}
.cid-uybfwV3zgK .head-item {
  text-align: center;
  color: #232323;
}
.cid-uybfwV3zgK .body-item {
  text-align: center;
}
.cid-trMqKTMtCD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKTMtCD .mbr-section-subtitle {
  color: #232323;
}
.cid-trMqKTMtCD .container-table {
  margin: 0 auto;
}
.cid-trMqKTMtCD .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-trMqKTMtCD .dataTables_wrapper {
  display: block;
}
.cid-trMqKTMtCD .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-trMqKTMtCD .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-trMqKTMtCD table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-trMqKTMtCD table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-trMqKTMtCD table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-trMqKTMtCD table td {
  border-top: 1px solid #232323;
}
.cid-trMqKTMtCD .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-trMqKTMtCD .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-trMqKTMtCD .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-trMqKTMtCD .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-trMqKTMtCD .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-trMqKTMtCD .dataTables_filter {
    text-align: center;
  }
  .cid-trMqKTMtCD .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-trMqKTMtCD .mbr-section-title {
  color: #232323;
}
.cid-trMqKTMtCD .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-trMqKTMtCD .body-item {
  text-align: center;
}
.cid-tRZ2nzdyvQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-tRZ2nzdyvQ .mbr-section-subtitle {
  color: #232323;
}
.cid-tRZ2nzdyvQ .container-table {
  margin: 0 auto;
}
.cid-tRZ2nzdyvQ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tRZ2nzdyvQ .dataTables_wrapper {
  display: block;
}
.cid-tRZ2nzdyvQ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tRZ2nzdyvQ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tRZ2nzdyvQ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tRZ2nzdyvQ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tRZ2nzdyvQ table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tRZ2nzdyvQ table td {
  border-top: 1px solid #232323;
}
.cid-tRZ2nzdyvQ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tRZ2nzdyvQ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tRZ2nzdyvQ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tRZ2nzdyvQ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tRZ2nzdyvQ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tRZ2nzdyvQ .dataTables_filter {
    text-align: center;
  }
  .cid-tRZ2nzdyvQ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tRZ2nzdyvQ .mbr-section-title {
  color: #232323;
}
.cid-tRZ2nzdyvQ .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-tRZ2nzdyvQ .body-item {
  text-align: center;
}
.cid-trMqKUdfBv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKUdfBv .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-trMqKUdfBv .section-text {
  padding: 2rem 0;
}
.cid-trMqKUdfBv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-trMqKUdfBv .inner-container {
    width: 100% !important;
  }
}
.cid-trMqKUdfBv .section-text DIV {
  text-align: center;
}
.cid-trMqKUlf0H {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKUlf0H .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trMqKUlf0H .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trMqKUlf0H .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trMqKUlf0H .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trMqKUlf0H .row > .row {
  display: block;
}
.cid-trMqKUlf0H .mbr-gallery-item {
  width: 100%;
}
.cid-trMqKUlf0H .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-trMqKUlf0H .mbr-gallery-item > div {
  position: relative;
}
.cid-trMqKUlf0H .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-trMqKUlf0H .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-trMqKUlf0H .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-trMqKUlf0H .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqKUAfuy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-trMqKUGFhx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKUGFhx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trMqKUGFhx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trMqKUGFhx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trMqKUGFhx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trMqKUGFhx .row > .row {
  display: block;
}
.cid-trMqKUGFhx .mbr-gallery-item {
  width: 100%;
}
.cid-trMqKUGFhx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-trMqKUGFhx .mbr-gallery-item > div {
  position: relative;
}
.cid-trMqKUGFhx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-trMqKUGFhx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-trMqKUGFhx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-trMqKUGFhx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqKUY6FH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-trMqKV4hae {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKV4hae .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trMqKV4hae .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trMqKV4hae .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trMqKV4hae .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trMqKV4hae .row > .row {
  display: block;
}
.cid-trMqKV4hae .mbr-gallery-item {
  width: 100%;
}
.cid-trMqKV4hae .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-trMqKV4hae .mbr-gallery-item > div {
  position: relative;
}
.cid-trMqKV4hae .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-trMqKV4hae .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-trMqKV4hae .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-trMqKV4hae .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqKVhvvg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-trMqKVnimD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKVnimD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trMqKVnimD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trMqKVnimD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trMqKVnimD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trMqKVnimD .row > .row {
  display: block;
}
.cid-trMqKVnimD .mbr-gallery-item {
  width: 100%;
}
.cid-trMqKVnimD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-trMqKVnimD .mbr-gallery-item > div {
  position: relative;
}
.cid-trMqKVnimD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-trMqKVnimD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-trMqKVnimD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-trMqKVnimD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqKVDfOV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-trMqKVKJ5j {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKVKJ5j .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trMqKVKJ5j .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trMqKVKJ5j .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trMqKVKJ5j .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trMqKVKJ5j .row > .row {
  display: block;
}
.cid-trMqKVKJ5j .mbr-gallery-item {
  width: 100%;
}
.cid-trMqKVKJ5j .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-trMqKVKJ5j .mbr-gallery-item > div {
  position: relative;
}
.cid-trMqKVKJ5j .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-trMqKVKJ5j .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-trMqKVKJ5j .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-trMqKVKJ5j .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqKW3iKP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-trMqKWbmm0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKWbmm0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trMqKWbmm0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trMqKWbmm0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trMqKWbmm0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trMqKWbmm0 .row > .row {
  display: block;
}
.cid-trMqKWbmm0 .mbr-gallery-item {
  width: 100%;
}
.cid-trMqKWbmm0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-trMqKWbmm0 .mbr-gallery-item > div {
  position: relative;
}
.cid-trMqKWbmm0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-trMqKWbmm0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-trMqKWbmm0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-trMqKWbmm0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqKWt9Af {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-tGq3Wtnoh1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-tGq3Wtnoh1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGq3Wtnoh1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGq3Wtnoh1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGq3Wtnoh1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGq3Wtnoh1 .row > .row {
  display: block;
}
.cid-tGq3Wtnoh1 .mbr-gallery-item {
  width: 100%;
}
.cid-tGq3Wtnoh1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tGq3Wtnoh1 .mbr-gallery-item > div {
  position: relative;
}
.cid-tGq3Wtnoh1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tGq3Wtnoh1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tGq3Wtnoh1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tGq3Wtnoh1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqKWLlLB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-trMqKWTZMG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-trMqKX2Y2s {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-trMqKXaq2y {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKXaq2y .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trMqKXaq2y .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trMqKXaq2y .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trMqKXaq2y .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trMqKXaq2y .row > .row {
  display: block;
}
.cid-trMqKXaq2y .mbr-gallery-item {
  width: 100%;
}
.cid-trMqKXaq2y .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-trMqKXaq2y .mbr-gallery-item > div {
  position: relative;
}
.cid-trMqKXaq2y .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-trMqKXaq2y .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-trMqKXaq2y .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-trMqKXaq2y .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqKXuxQi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-trMqKXFrrr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKXFrrr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trMqKXFrrr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trMqKXFrrr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trMqKXFrrr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trMqKXFrrr .row > .row {
  display: block;
}
.cid-trMqKXFrrr .mbr-gallery-item {
  width: 100%;
}
.cid-trMqKXFrrr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-trMqKXFrrr .mbr-gallery-item > div {
  position: relative;
}
.cid-trMqKXFrrr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-trMqKXFrrr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-trMqKXFrrr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-trMqKXFrrr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqKXX82a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-trMqKY747Z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKY747Z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trMqKY747Z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trMqKY747Z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trMqKY747Z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trMqKY747Z .row > .row {
  display: block;
}
.cid-trMqKY747Z .mbr-gallery-item {
  width: 100%;
}
.cid-trMqKY747Z .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-trMqKY747Z .mbr-gallery-item > div {
  position: relative;
}
.cid-trMqKY747Z .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-trMqKY747Z .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-trMqKY747Z .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-trMqKY747Z .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqKYtML7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-trMqKYE81W {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKYE81W .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trMqKYE81W .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trMqKYE81W .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trMqKYE81W .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trMqKYE81W .row > .row {
  display: block;
}
.cid-trMqKYE81W .mbr-gallery-item {
  width: 100%;
}
.cid-trMqKYE81W .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-trMqKYE81W .mbr-gallery-item > div {
  position: relative;
}
.cid-trMqKYE81W .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-trMqKYE81W .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-trMqKYE81W .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-trMqKYE81W .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqKZ115u {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-trMqKZdgCN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-trMqKZdgCN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trMqKZdgCN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trMqKZdgCN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trMqKZdgCN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trMqKZdgCN .row > .row {
  display: block;
}
.cid-trMqKZdgCN .mbr-gallery-item {
  width: 100%;
}
.cid-trMqKZdgCN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-trMqKZdgCN .mbr-gallery-item > div {
  position: relative;
}
.cid-trMqKZdgCN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-trMqKZdgCN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-trMqKZdgCN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-trMqKZdgCN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqKZyg51 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-trMqKZyg51 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-trMqKZyg51 div.b {
  padding-top: 2rem;
}
.cid-trMqKZyg51 H5 {
  color: #232323;
}
.cid-trMqTXyVRJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-trMqTXyVRJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-trMqTXyVRJ .section-text {
  padding: 2rem 0;
}
.cid-trMqTXyVRJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-trMqTXyVRJ .inner-container {
    width: 100% !important;
  }
}
.cid-uyf7xLEWjb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uyf7xLEWjb .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uyf7xLEWjb .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-uyf7xLEWjb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uyf7xLEWjb .inner-container {
    width: 100% !important;
  }
}
.cid-v72mjavfq4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72mjavfq4 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v72mjavfq4 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v72mjavfq4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v72mjavfq4 .inner-container {
    width: 100% !important;
  }
}
.cid-v72mdOh4ur {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v72mdOh4ur .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72mdOh4ur .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72mdOh4ur .row {
  justify-content: center;
}
.cid-v72mdOh4ur .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72mdOh4ur .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72mdOh4ur .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72mdOh4ur .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72mdOh4ur .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72mdOh4ur .mbr-text_1,
.cid-v72mdOh4ur .mbr-text_2,
.cid-v72mdOh4ur .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72mdOh4ur .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72mdOh4ur .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72mdOh4ur .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72mdOh4ur .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72mdOh4ur .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72mdOh4ur .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72mdOh4ur .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72mdOh4ur .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72mdOh4ur .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72mdOh4ur .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72mdOh4ur .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72mdOh4ur .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72mdOh4ur .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72meRTg1a {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v72meRTg1a .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72meRTg1a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72meRTg1a .row {
  justify-content: center;
}
.cid-v72meRTg1a .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72meRTg1a .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72meRTg1a .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72meRTg1a .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72meRTg1a .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72meRTg1a .mbr-text_1,
.cid-v72meRTg1a .mbr-text_2,
.cid-v72meRTg1a .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72meRTg1a .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72meRTg1a .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72meRTg1a .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72meRTg1a .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72meRTg1a .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72meRTg1a .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72meRTg1a .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72meRTg1a .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72meRTg1a .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72meRTg1a .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72meRTg1a .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72meRTg1a .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72meRTg1a .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-trMqTY8yZE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-trMqTY8yZE .mbr-section-subtitle {
  color: #767676;
}
.cid-trMqTY8yZE .container-table {
  margin: 0 auto;
}
.cid-trMqTY8yZE .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-trMqTY8yZE .dataTables_wrapper {
  display: block;
}
.cid-trMqTY8yZE .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-trMqTY8yZE .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-trMqTY8yZE table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-trMqTY8yZE table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-trMqTY8yZE table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-trMqTY8yZE table td {
  border-top: 1px solid #232323;
}
.cid-trMqTY8yZE table.table {
  background: #ecae15;
}
.cid-trMqTY8yZE .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-trMqTY8yZE .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-trMqTY8yZE .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-trMqTY8yZE .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-trMqTY8yZE .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-trMqTY8yZE .dataTables_filter {
    text-align: center;
  }
  .cid-trMqTY8yZE .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-trMqTY8yZE .mbr-section-title {
  color: #232323;
}
.cid-trMqTY8yZE .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-trMqTY8yZE .body-item {
  text-align: center;
}
.cid-uhJkIMVW9r {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uhJkIMVW9r .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uhJkIMVW9r .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uhJkIMVW9r .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uhJkIMVW9r .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uhJkIMVW9r .row > .row {
  display: block;
}
.cid-uhJkIMVW9r .mbr-gallery-item {
  width: 100%;
}
.cid-uhJkIMVW9r .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uhJkIMVW9r .mbr-gallery-item > div {
  position: relative;
}
.cid-uhJkIMVW9r .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uhJkIMVW9r .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uhJkIMVW9r .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uhJkIMVW9r .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqTYExhX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-trMqTYExhX .mbr-section-subtitle {
  color: #232323;
}
.cid-trMqTYExhX .container-table {
  margin: 0 auto;
}
.cid-trMqTYExhX .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-trMqTYExhX .dataTables_wrapper {
  display: block;
}
.cid-trMqTYExhX .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-trMqTYExhX .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-trMqTYExhX table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-trMqTYExhX table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-trMqTYExhX table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-trMqTYExhX table td {
  border-top: 1px solid #232323;
}
.cid-trMqTYExhX table.table {
  background: #ecae15;
}
.cid-trMqTYExhX .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-trMqTYExhX .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-trMqTYExhX .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-trMqTYExhX .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-trMqTYExhX .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-trMqTYExhX .dataTables_filter {
    text-align: center;
  }
  .cid-trMqTYExhX .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-trMqTYExhX .mbr-section-title {
  color: #232323;
}
.cid-trMqTYExhX .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-trMqTYExhX .body-item {
  text-align: center;
  color: #232323;
}
.cid-tRjreaD73X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-tRjreaD73X .mbr-section-subtitle {
  color: #232323;
}
.cid-tRjreaD73X .container-table {
  margin: 0 auto;
}
.cid-tRjreaD73X .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tRjreaD73X .dataTables_wrapper {
  display: block;
}
.cid-tRjreaD73X .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tRjreaD73X .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tRjreaD73X table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tRjreaD73X table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tRjreaD73X table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tRjreaD73X table td {
  border-top: 1px solid #232323;
}
.cid-tRjreaD73X table.table {
  background: #ecae15;
}
.cid-tRjreaD73X .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tRjreaD73X .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tRjreaD73X .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tRjreaD73X .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tRjreaD73X .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tRjreaD73X .dataTables_filter {
    text-align: center;
  }
  .cid-tRjreaD73X .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tRjreaD73X .mbr-section-title {
  color: #232323;
}
.cid-tRjreaD73X .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-tRjreaD73X .body-item {
  text-align: center;
  color: #232323;
}
.cid-trMqTZ81yT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-trMqTZeuMH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-trMqTZeuMH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trMqTZeuMH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trMqTZeuMH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trMqTZeuMH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trMqTZeuMH .row > .row {
  display: block;
}
.cid-trMqTZeuMH .mbr-gallery-item {
  width: 100%;
}
.cid-trMqTZeuMH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-trMqTZeuMH .mbr-gallery-item > div {
  position: relative;
}
.cid-trMqTZeuMH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-trMqTZeuMH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-trMqTZeuMH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-trMqTZeuMH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqTZMQkZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05O5z7AwH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05O5z7AwH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05O5z7AwH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05O5z7AwH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05O5z7AwH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05O5z7AwH .row > .row {
  display: block;
}
.cid-u05O5z7AwH .mbr-gallery-item {
  width: 100%;
}
.cid-u05O5z7AwH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05O5z7AwH .mbr-gallery-item > div {
  position: relative;
}
.cid-u05O5z7AwH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05O5z7AwH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05O5z7AwH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05O5z7AwH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u5NrfcVtEy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u5NrfcVtEy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u5NrfcVtEy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5NrfcVtEy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u5NrfcVtEy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u5NrfcVtEy .row > .row {
  display: block;
}
.cid-u5NrfcVtEy .mbr-gallery-item {
  width: 100%;
}
.cid-u5NrfcVtEy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u5NrfcVtEy .mbr-gallery-item > div {
  position: relative;
}
.cid-u5NrfcVtEy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u5NrfcVtEy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u5NrfcVtEy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u5NrfcVtEy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqU0pBP4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05O7mAkqQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05O7mAkqQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05O7mAkqQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05O7mAkqQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05O7mAkqQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05O7mAkqQ .row > .row {
  display: block;
}
.cid-u05O7mAkqQ .mbr-gallery-item {
  width: 100%;
}
.cid-u05O7mAkqQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05O7mAkqQ .mbr-gallery-item > div {
  position: relative;
}
.cid-u05O7mAkqQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05O7mAkqQ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05O7mAkqQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05O7mAkqQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u8uuk8zcqW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u8uuk8zcqW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u8uuk8zcqW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8uuk8zcqW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u8uuk8zcqW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u8uuk8zcqW .row > .row {
  display: block;
}
.cid-u8uuk8zcqW .mbr-gallery-item {
  width: 100%;
}
.cid-u8uuk8zcqW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u8uuk8zcqW .mbr-gallery-item > div {
  position: relative;
}
.cid-u8uuk8zcqW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u8uuk8zcqW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u8uuk8zcqW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u8uuk8zcqW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqU18dIA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05O8xRIod {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05O8xRIod .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05O8xRIod .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05O8xRIod .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05O8xRIod .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05O8xRIod .row > .row {
  display: block;
}
.cid-u05O8xRIod .mbr-gallery-item {
  width: 100%;
}
.cid-u05O8xRIod .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05O8xRIod .mbr-gallery-item > div {
  position: relative;
}
.cid-u05O8xRIod .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05O8xRIod .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05O8xRIod .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05O8xRIod .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ubv4nK8ERY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-ubv4nK8ERY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ubv4nK8ERY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ubv4nK8ERY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ubv4nK8ERY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ubv4nK8ERY .row > .row {
  display: block;
}
.cid-ubv4nK8ERY .mbr-gallery-item {
  width: 100%;
}
.cid-ubv4nK8ERY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-ubv4nK8ERY .mbr-gallery-item > div {
  position: relative;
}
.cid-ubv4nK8ERY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ubv4nK8ERY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-ubv4nK8ERY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-ubv4nK8ERY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqU1VQRL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05O9zUJOj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05O9zUJOj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05O9zUJOj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05O9zUJOj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05O9zUJOj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05O9zUJOj .row > .row {
  display: block;
}
.cid-u05O9zUJOj .mbr-gallery-item {
  width: 100%;
}
.cid-u05O9zUJOj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05O9zUJOj .mbr-gallery-item > div {
  position: relative;
}
.cid-u05O9zUJOj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05O9zUJOj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05O9zUJOj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05O9zUJOj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ueqmvJ47Pz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-ueqmvJ47Pz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ueqmvJ47Pz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ueqmvJ47Pz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ueqmvJ47Pz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ueqmvJ47Pz .row > .row {
  display: block;
}
.cid-ueqmvJ47Pz .mbr-gallery-item {
  width: 100%;
}
.cid-ueqmvJ47Pz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-ueqmvJ47Pz .mbr-gallery-item > div {
  position: relative;
}
.cid-ueqmvJ47Pz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ueqmvJ47Pz .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-ueqmvJ47Pz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-ueqmvJ47Pz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqU2NS46 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05OaBp9o3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05OaBp9o3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05OaBp9o3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05OaBp9o3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05OaBp9o3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05OaBp9o3 .row > .row {
  display: block;
}
.cid-u05OaBp9o3 .mbr-gallery-item {
  width: 100%;
}
.cid-u05OaBp9o3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05OaBp9o3 .mbr-gallery-item > div {
  position: relative;
}
.cid-u05OaBp9o3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05OaBp9o3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05OaBp9o3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05OaBp9o3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uh9PZiGqKh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uh9PZiGqKh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uh9PZiGqKh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uh9PZiGqKh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uh9PZiGqKh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uh9PZiGqKh .row > .row {
  display: block;
}
.cid-uh9PZiGqKh .mbr-gallery-item {
  width: 100%;
}
.cid-uh9PZiGqKh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uh9PZiGqKh .mbr-gallery-item > div {
  position: relative;
}
.cid-uh9PZiGqKh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uh9PZiGqKh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uh9PZiGqKh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uh9PZiGqKh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqU3K0WN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05ObGo4pz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05ObGo4pz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05ObGo4pz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05ObGo4pz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05ObGo4pz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05ObGo4pz .row > .row {
  display: block;
}
.cid-u05ObGo4pz .mbr-gallery-item {
  width: 100%;
}
.cid-u05ObGo4pz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05ObGo4pz .mbr-gallery-item > div {
  position: relative;
}
.cid-u05ObGo4pz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05ObGo4pz .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05ObGo4pz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05ObGo4pz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uk4Lo5ELz1 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uk4Lo5ELz1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uk4Lo5ELz1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uk4Lo5ELz1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uk4Lo5ELz1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uk4Lo5ELz1 .row > .row {
  display: block;
}
.cid-uk4Lo5ELz1 .mbr-gallery-item {
  width: 100%;
}
.cid-uk4Lo5ELz1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uk4Lo5ELz1 .mbr-gallery-item > div {
  position: relative;
}
.cid-uk4Lo5ELz1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uk4Lo5ELz1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uk4Lo5ELz1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uk4Lo5ELz1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqU4J0yc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05OrdbZsK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05OrdbZsK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05OrdbZsK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05OrdbZsK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05OrdbZsK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05OrdbZsK .row > .row {
  display: block;
}
.cid-u05OrdbZsK .mbr-gallery-item {
  width: 100%;
}
.cid-u05OrdbZsK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05OrdbZsK .mbr-gallery-item > div {
  position: relative;
}
.cid-u05OrdbZsK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05OrdbZsK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05OrdbZsK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05OrdbZsK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-umWCWQczHX {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-umWCWQczHX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-umWCWQczHX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umWCWQczHX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-umWCWQczHX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-umWCWQczHX .row > .row {
  display: block;
}
.cid-umWCWQczHX .mbr-gallery-item {
  width: 100%;
}
.cid-umWCWQczHX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-umWCWQczHX .mbr-gallery-item > div {
  position: relative;
}
.cid-umWCWQczHX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-umWCWQczHX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-umWCWQczHX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-umWCWQczHX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqU5NHSZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05OlEHQlt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05OlEHQlt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05OlEHQlt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05OlEHQlt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05OlEHQlt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05OlEHQlt .row > .row {
  display: block;
}
.cid-u05OlEHQlt .mbr-gallery-item {
  width: 100%;
}
.cid-u05OlEHQlt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05OlEHQlt .mbr-gallery-item > div {
  position: relative;
}
.cid-u05OlEHQlt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05OlEHQlt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05OlEHQlt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05OlEHQlt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqU73RTu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05OjopeQg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05OjopeQg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05OjopeQg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05OjopeQg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05OjopeQg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05OjopeQg .row > .row {
  display: block;
}
.cid-u05OjopeQg .mbr-gallery-item {
  width: 100%;
}
.cid-u05OjopeQg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05OjopeQg .mbr-gallery-item > div {
  position: relative;
}
.cid-u05OjopeQg .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05OjopeQg .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05OjopeQg .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05OjopeQg .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-usDqxjVNOa {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-usDqxjVNOa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-usDqxjVNOa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usDqxjVNOa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-usDqxjVNOa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-usDqxjVNOa .row > .row {
  display: block;
}
.cid-usDqxjVNOa .mbr-gallery-item {
  width: 100%;
}
.cid-usDqxjVNOa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-usDqxjVNOa .mbr-gallery-item > div {
  position: relative;
}
.cid-usDqxjVNOa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-usDqxjVNOa .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-usDqxjVNOa .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-usDqxjVNOa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqU8jXHP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05Oh6LfhV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05Oh6LfhV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05Oh6LfhV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05Oh6LfhV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05Oh6LfhV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05Oh6LfhV .row > .row {
  display: block;
}
.cid-u05Oh6LfhV .mbr-gallery-item {
  width: 100%;
}
.cid-u05Oh6LfhV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05Oh6LfhV .mbr-gallery-item > div {
  position: relative;
}
.cid-u05Oh6LfhV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05Oh6LfhV .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-u05Oh6LfhV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05Oh6LfhV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uvuy168pVP {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uvuy168pVP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uvuy168pVP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uvuy168pVP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uvuy168pVP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uvuy168pVP .row > .row {
  display: block;
}
.cid-uvuy168pVP .mbr-gallery-item {
  width: 100%;
}
.cid-uvuy168pVP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uvuy168pVP .mbr-gallery-item > div {
  position: relative;
}
.cid-uvuy168pVP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uvuy168pVP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uvuy168pVP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uvuy168pVP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqU9CmWF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05OdLgZoT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05OdLgZoT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05OdLgZoT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05OdLgZoT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05OdLgZoT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05OdLgZoT .row > .row {
  display: block;
}
.cid-u05OdLgZoT .mbr-gallery-item {
  width: 100%;
}
.cid-u05OdLgZoT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05OdLgZoT .mbr-gallery-item > div {
  position: relative;
}
.cid-u05OdLgZoT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05OdLgZoT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05OdLgZoT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05OdLgZoT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uyF135RQ9b {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uyF135RQ9b .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uyF135RQ9b .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyF135RQ9b .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyF135RQ9b .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uyF135RQ9b .row > .row {
  display: block;
}
.cid-uyF135RQ9b .mbr-gallery-item {
  width: 100%;
}
.cid-uyF135RQ9b .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uyF135RQ9b .mbr-gallery-item > div {
  position: relative;
}
.cid-uyF135RQ9b .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uyF135RQ9b .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uyF135RQ9b .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uyF135RQ9b .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMqUckon3 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-trMqUckon3 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-trMqUckon3 div.b {
  padding-top: 2rem;
}
.cid-trMqUckon3 H5 {
  color: #232323;
}
.cid-trMr0f1iEj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-trMr0f1iEj .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-trMr0f1iEj .section-text {
  padding: 2rem 0;
}
.cid-trMr0f1iEj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-trMr0f1iEj .inner-container {
    width: 100% !important;
  }
}
.cid-v78E73zoeJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #15ece0;
}
.cid-v78E73zoeJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78E73zoeJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78E73zoeJ .row {
  justify-content: center;
}
.cid-v78E73zoeJ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78E73zoeJ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78E73zoeJ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78E73zoeJ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78E73zoeJ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78E73zoeJ .mbr-text_1,
.cid-v78E73zoeJ .mbr-text_2,
.cid-v78E73zoeJ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78E73zoeJ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78E73zoeJ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78E73zoeJ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78E73zoeJ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78E73zoeJ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78E73zoeJ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78E73zoeJ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78E73zoeJ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78E73zoeJ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78E73zoeJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78E73zoeJ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78E73zoeJ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78E73zoeJ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78E7Pt9aD {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #15ece0;
}
.cid-v78E7Pt9aD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78E7Pt9aD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78E7Pt9aD .row {
  justify-content: center;
}
.cid-v78E7Pt9aD .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78E7Pt9aD .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78E7Pt9aD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78E7Pt9aD .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78E7Pt9aD .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78E7Pt9aD .mbr-text_1,
.cid-v78E7Pt9aD .mbr-text_2,
.cid-v78E7Pt9aD .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78E7Pt9aD .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78E7Pt9aD .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78E7Pt9aD .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78E7Pt9aD .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78E7Pt9aD .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78E7Pt9aD .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78E7Pt9aD .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78E7Pt9aD .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78E7Pt9aD .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78E7Pt9aD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78E7Pt9aD .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78E7Pt9aD .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78E7Pt9aD .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78E8X5ZHI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78E8X5ZHI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v78E8X5ZHI .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v78E8X5ZHI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v78E8X5ZHI .inner-container {
    width: 100% !important;
  }
}
.cid-v78Ea1Fa0V {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78Ea1Fa0V .mbr-section-subtitle {
  color: #767676;
}
.cid-v78Ea1Fa0V .container-table {
  margin: 0 auto;
}
.cid-v78Ea1Fa0V .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v78Ea1Fa0V .dataTables_wrapper {
  display: block;
}
.cid-v78Ea1Fa0V .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v78Ea1Fa0V .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v78Ea1Fa0V table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v78Ea1Fa0V table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v78Ea1Fa0V table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v78Ea1Fa0V table td {
  border-top: 1px solid #232323;
}
.cid-v78Ea1Fa0V table.table {
  background: #15ece0;
}
.cid-v78Ea1Fa0V .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v78Ea1Fa0V .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v78Ea1Fa0V .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v78Ea1Fa0V .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v78Ea1Fa0V .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v78Ea1Fa0V .dataTables_filter {
    text-align: center;
  }
  .cid-v78Ea1Fa0V .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v78Ea1Fa0V .mbr-section-title {
  color: #232323;
}
.cid-v78Ea1Fa0V .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v78Ea1Fa0V .body-item {
  text-align: center;
}
.cid-trMr0g2mH9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-trMr0g2mH9 .mbr-section-subtitle {
  color: #232323;
}
.cid-trMr0g2mH9 .container-table {
  margin: 0 auto;
}
.cid-trMr0g2mH9 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-trMr0g2mH9 .dataTables_wrapper {
  display: block;
}
.cid-trMr0g2mH9 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-trMr0g2mH9 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-trMr0g2mH9 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-trMr0g2mH9 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-trMr0g2mH9 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-trMr0g2mH9 table td {
  border-top: 1px solid #232323;
}
.cid-trMr0g2mH9 table.table {
  background: #15ece0;
}
.cid-trMr0g2mH9 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-trMr0g2mH9 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-trMr0g2mH9 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-trMr0g2mH9 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-trMr0g2mH9 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-trMr0g2mH9 .dataTables_filter {
    text-align: center;
  }
  .cid-trMr0g2mH9 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-trMr0g2mH9 .mbr-section-title {
  color: #232323;
}
.cid-trMr0g2mH9 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-trMr0g2mH9 .body-item {
  text-align: center;
  color: #232323;
}
.cid-tRMC8M2n9N {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-tRMC8M2n9N .mbr-section-subtitle {
  color: #232323;
}
.cid-tRMC8M2n9N .container-table {
  margin: 0 auto;
}
.cid-tRMC8M2n9N .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tRMC8M2n9N .dataTables_wrapper {
  display: block;
}
.cid-tRMC8M2n9N .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tRMC8M2n9N .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tRMC8M2n9N table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tRMC8M2n9N table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tRMC8M2n9N table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tRMC8M2n9N table td {
  border-top: 1px solid #232323;
}
.cid-tRMC8M2n9N table.table {
  background: #15ece0;
}
.cid-tRMC8M2n9N .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tRMC8M2n9N .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tRMC8M2n9N .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tRMC8M2n9N .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tRMC8M2n9N .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tRMC8M2n9N .dataTables_filter {
    text-align: center;
  }
  .cid-tRMC8M2n9N .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tRMC8M2n9N .mbr-section-title {
  color: #232323;
}
.cid-tRMC8M2n9N .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-tRMC8M2n9N .body-item {
  text-align: center;
  color: #232323;
}
.cid-uhJJVw97hv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uhJJVw97hv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uhJJVw97hv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uhJJVw97hv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uhJJVw97hv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uhJJVw97hv .row > .row {
  display: block;
}
.cid-uhJJVw97hv .mbr-gallery-item {
  width: 100%;
}
.cid-uhJJVw97hv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uhJJVw97hv .mbr-gallery-item > div {
  position: relative;
}
.cid-uhJJVw97hv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uhJJVw97hv .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uhJJVw97hv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uhJJVw97hv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMr0guIoi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-trMr0gAbM5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-trMr0gAbM5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trMr0gAbM5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trMr0gAbM5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trMr0gAbM5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trMr0gAbM5 .row > .row {
  display: block;
}
.cid-trMr0gAbM5 .mbr-gallery-item {
  width: 100%;
}
.cid-trMr0gAbM5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-trMr0gAbM5 .mbr-gallery-item > div {
  position: relative;
}
.cid-trMr0gAbM5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-trMr0gAbM5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-trMr0gAbM5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-trMr0gAbM5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMr0gUcvy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05TFchItK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05TFchItK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05TFchItK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05TFchItK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05TFchItK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05TFchItK .row > .row {
  display: block;
}
.cid-u05TFchItK .mbr-gallery-item {
  width: 100%;
}
.cid-u05TFchItK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05TFchItK .mbr-gallery-item > div {
  position: relative;
}
.cid-u05TFchItK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05TFchItK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05TFchItK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05TFchItK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMr0hgVdF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05TGsH9gF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05TGsH9gF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05TGsH9gF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05TGsH9gF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05TGsH9gF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05TGsH9gF .row > .row {
  display: block;
}
.cid-u05TGsH9gF .mbr-gallery-item {
  width: 100%;
}
.cid-u05TGsH9gF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05TGsH9gF .mbr-gallery-item > div {
  position: relative;
}
.cid-u05TGsH9gF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05TGsH9gF .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05TGsH9gF .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05TGsH9gF .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMr0hGj67 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05THyuxxj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05THyuxxj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05THyuxxj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05THyuxxj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05THyuxxj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05THyuxxj .row > .row {
  display: block;
}
.cid-u05THyuxxj .mbr-gallery-item {
  width: 100%;
}
.cid-u05THyuxxj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05THyuxxj .mbr-gallery-item > div {
  position: relative;
}
.cid-u05THyuxxj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05THyuxxj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05THyuxxj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05THyuxxj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMr0i15MQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05TIucazg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05TIucazg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05TIucazg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05TIucazg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05TIucazg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05TIucazg .row > .row {
  display: block;
}
.cid-u05TIucazg .mbr-gallery-item {
  width: 100%;
}
.cid-u05TIucazg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05TIucazg .mbr-gallery-item > div {
  position: relative;
}
.cid-u05TIucazg .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05TIucazg .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05TIucazg .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05TIucazg .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMr0irUpf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05TJq3NGY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05TJq3NGY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05TJq3NGY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05TJq3NGY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05TJq3NGY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05TJq3NGY .row > .row {
  display: block;
}
.cid-u05TJq3NGY .mbr-gallery-item {
  width: 100%;
}
.cid-u05TJq3NGY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05TJq3NGY .mbr-gallery-item > div {
  position: relative;
}
.cid-u05TJq3NGY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05TJq3NGY .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05TJq3NGY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05TJq3NGY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMr0iRLlI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05TKehoi6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05TKehoi6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05TKehoi6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05TKehoi6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05TKehoi6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05TKehoi6 .row > .row {
  display: block;
}
.cid-u05TKehoi6 .mbr-gallery-item {
  width: 100%;
}
.cid-u05TKehoi6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05TKehoi6 .mbr-gallery-item > div {
  position: relative;
}
.cid-u05TKehoi6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05TKehoi6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05TKehoi6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05TKehoi6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMr0jpUP2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05TL83rdm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05TL83rdm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05TL83rdm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05TL83rdm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05TL83rdm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05TL83rdm .row > .row {
  display: block;
}
.cid-u05TL83rdm .mbr-gallery-item {
  width: 100%;
}
.cid-u05TL83rdm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05TL83rdm .mbr-gallery-item > div {
  position: relative;
}
.cid-u05TL83rdm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05TL83rdm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05TL83rdm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05TL83rdm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMr0jXmPw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05TLTEu09 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05TLTEu09 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05TLTEu09 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05TLTEu09 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05TLTEu09 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05TLTEu09 .row > .row {
  display: block;
}
.cid-u05TLTEu09 .mbr-gallery-item {
  width: 100%;
}
.cid-u05TLTEu09 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05TLTEu09 .mbr-gallery-item > div {
  position: relative;
}
.cid-u05TLTEu09 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05TLTEu09 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05TLTEu09 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05TLTEu09 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMr0kr9IP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05TN2CzUu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05TN2CzUu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05TN2CzUu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05TN2CzUu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05TN2CzUu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05TN2CzUu .row > .row {
  display: block;
}
.cid-u05TN2CzUu .mbr-gallery-item {
  width: 100%;
}
.cid-u05TN2CzUu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05TN2CzUu .mbr-gallery-item > div {
  position: relative;
}
.cid-u05TN2CzUu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05TN2CzUu .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05TN2CzUu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05TN2CzUu .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMr0kZYve {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05TNWz7xX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05TNWz7xX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05TNWz7xX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05TNWz7xX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05TNWz7xX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05TNWz7xX .row > .row {
  display: block;
}
.cid-u05TNWz7xX .mbr-gallery-item {
  width: 100%;
}
.cid-u05TNWz7xX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05TNWz7xX .mbr-gallery-item > div {
  position: relative;
}
.cid-u05TNWz7xX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05TNWz7xX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05TNWz7xX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05TNWz7xX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMr0lxINI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05TOIjjCq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05TOIjjCq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05TOIjjCq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05TOIjjCq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05TOIjjCq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05TOIjjCq .row > .row {
  display: block;
}
.cid-u05TOIjjCq .mbr-gallery-item {
  width: 100%;
}
.cid-u05TOIjjCq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05TOIjjCq .mbr-gallery-item > div {
  position: relative;
}
.cid-u05TOIjjCq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05TOIjjCq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05TOIjjCq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05TOIjjCq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-trMr0m9HTj {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #15ece0;
}
.cid-trMr0m9HTj .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-trMr0m9HTj div.b {
  padding-top: 2rem;
}
.cid-trMr0m9HTj H5 {
  color: #232323;
}
.cid-tujDG2onIT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujDG2onIT .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tujDG2onIT .section-text {
  padding: 2rem 0;
}
.cid-tujDG2onIT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tujDG2onIT .inner-container {
    width: 100% !important;
  }
}
.cid-v7vL5meMm7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vL5meMm7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vL5meMm7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vL5meMm7 .row {
  justify-content: center;
}
.cid-v7vL5meMm7 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vL5meMm7 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vL5meMm7 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vL5meMm7 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vL5meMm7 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vL5meMm7 .mbr-text_1,
.cid-v7vL5meMm7 .mbr-text_2,
.cid-v7vL5meMm7 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vL5meMm7 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vL5meMm7 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vL5meMm7 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vL5meMm7 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vL5meMm7 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vL5meMm7 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vL5meMm7 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vL5meMm7 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vL5meMm7 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vL5meMm7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vL5meMm7 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vL5meMm7 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vL5meMm7 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vL66B2ZA {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vL66B2ZA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vL66B2ZA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vL66B2ZA .row {
  justify-content: center;
}
.cid-v7vL66B2ZA .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vL66B2ZA .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vL66B2ZA .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vL66B2ZA .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vL66B2ZA .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vL66B2ZA .mbr-text_1,
.cid-v7vL66B2ZA .mbr-text_2,
.cid-v7vL66B2ZA .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vL66B2ZA .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vL66B2ZA .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vL66B2ZA .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vL66B2ZA .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vL66B2ZA .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vL66B2ZA .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vL66B2ZA .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vL66B2ZA .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vL66B2ZA .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vL66B2ZA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vL66B2ZA .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vL66B2ZA .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vL66B2ZA .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tujDG2PBI3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujDG2PBI3 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tujDG2PBI3 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-tujDG2PBI3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tujDG2PBI3 .inner-container {
    width: 100% !important;
  }
}
.cid-tujDG2VL5F {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-tujEzKzl5d {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujEzKzl5d .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tujEzKzl5d .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tujEzKzl5d .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tujEzKzl5d .inner-container {
    width: 100% !important;
  }
}
.cid-tujEARaC3e {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujEARaC3e .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tujEARaC3e .section-text {
  padding: 2rem 0;
}
.cid-tujEARaC3e .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tujEARaC3e .inner-container {
    width: 100% !important;
  }
}
.cid-tujEBPsJEa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujEBPsJEa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tujEBPsJEa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tujEBPsJEa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tujEBPsJEa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tujEBPsJEa .row > .row {
  display: block;
}
.cid-tujEBPsJEa .mbr-gallery-item {
  width: 100%;
}
.cid-tujEBPsJEa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tujEBPsJEa .mbr-gallery-item > div {
  position: relative;
}
.cid-tujEBPsJEa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tujEBPsJEa .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tujEBPsJEa .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tujEBPsJEa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tujECTdGmq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujECTdGmq .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tujECTdGmq .section-text {
  padding: 2rem 0;
}
.cid-tujECTdGmq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tujECTdGmq .inner-container {
    width: 100% !important;
  }
}
.cid-tujEDER34z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujEDER34z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tujEDER34z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tujEDER34z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tujEDER34z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tujEDER34z .row > .row {
  display: block;
}
.cid-tujEDER34z .mbr-gallery-item {
  width: 100%;
}
.cid-tujEDER34z .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tujEDER34z .mbr-gallery-item > div {
  position: relative;
}
.cid-tujEDER34z .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tujEDER34z .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tujEDER34z .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tujEDER34z .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tujEEk0SvX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujEEk0SvX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tujEEk0SvX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tujEEk0SvX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tujEEk0SvX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tujEEk0SvX .row > .row {
  display: block;
}
.cid-tujEEk0SvX .mbr-gallery-item {
  width: 100%;
}
.cid-tujEEk0SvX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tujEEk0SvX .mbr-gallery-item > div {
  position: relative;
}
.cid-tujEEk0SvX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tujEEk0SvX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tujEEk0SvX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tujEEk0SvX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tujEFMfGsl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujEFMfGsl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tujEFMfGsl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tujEFMfGsl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tujEFMfGsl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tujEFMfGsl .row > .row {
  display: block;
}
.cid-tujEFMfGsl .mbr-gallery-item {
  width: 100%;
}
.cid-tujEFMfGsl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tujEFMfGsl .mbr-gallery-item > div {
  position: relative;
}
.cid-tujEFMfGsl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tujEFMfGsl .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tujEFMfGsl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tujEFMfGsl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tujDG86TV8 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-tujDG86TV8 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tujDG86TV8 div.b {
  padding-top: 2rem;
}
.cid-tujDG86TV8 H5 {
  color: #232323;
}
.cid-tujJAUjkIn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujJAUjkIn .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tujJAUjkIn .section-text {
  padding: 2rem 0;
}
.cid-tujJAUjkIn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tujJAUjkIn .inner-container {
    width: 100% !important;
  }
}
.cid-v7vLk0L6Ek {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vLk0L6Ek .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vLk0L6Ek .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vLk0L6Ek .row {
  justify-content: center;
}
.cid-v7vLk0L6Ek .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vLk0L6Ek .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vLk0L6Ek .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vLk0L6Ek .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vLk0L6Ek .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vLk0L6Ek .mbr-text_1,
.cid-v7vLk0L6Ek .mbr-text_2,
.cid-v7vLk0L6Ek .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vLk0L6Ek .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLk0L6Ek .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vLk0L6Ek .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vLk0L6Ek .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vLk0L6Ek .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLk0L6Ek .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vLk0L6Ek .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vLk0L6Ek .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLk0L6Ek .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vLk0L6Ek .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vLk0L6Ek .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vLk0L6Ek .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vLk0L6Ek .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vLkMW10a {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vLkMW10a .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vLkMW10a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vLkMW10a .row {
  justify-content: center;
}
.cid-v7vLkMW10a .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vLkMW10a .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vLkMW10a .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vLkMW10a .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vLkMW10a .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vLkMW10a .mbr-text_1,
.cid-v7vLkMW10a .mbr-text_2,
.cid-v7vLkMW10a .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vLkMW10a .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLkMW10a .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vLkMW10a .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vLkMW10a .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vLkMW10a .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLkMW10a .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vLkMW10a .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vLkMW10a .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLkMW10a .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vLkMW10a .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vLkMW10a .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vLkMW10a .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vLkMW10a .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tujJAV4VSD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujJAV4VSD .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tujJAV4VSD .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-tujJAV4VSD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tujJAV4VSD .inner-container {
    width: 100% !important;
  }
}
.cid-tujJAVcMCJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-tujK8gpH90 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujK8gpH90 .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tujK8gpH90 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tujK8gpH90 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tujK8gpH90 .inner-container {
    width: 100% !important;
  }
}
.cid-tujK9yXfdX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujK9yXfdX .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tujK9yXfdX .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tujK9yXfdX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tujK9yXfdX .inner-container {
    width: 100% !important;
  }
}
.cid-tujKaQXNMJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujKaQXNMJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tujKaQXNMJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tujKaQXNMJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tujKaQXNMJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tujKaQXNMJ .row > .row {
  display: block;
}
.cid-tujKaQXNMJ .mbr-gallery-item {
  width: 100%;
}
.cid-tujKaQXNMJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tujKaQXNMJ .mbr-gallery-item > div {
  position: relative;
}
.cid-tujKaQXNMJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tujKaQXNMJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tujKaQXNMJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tujKaQXNMJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tujJAXVRMX {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-tujJAXVRMX .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tujJAXVRMX div.b {
  padding-top: 2rem;
}
.cid-tujJAXVRMX H5 {
  color: #232323;
}
.cid-tvj0GAS7yn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tvj0GAS7yn .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tvj0GAS7yn .section-text {
  padding: 2rem 0;
}
.cid-tvj0GAS7yn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tvj0GAS7yn .inner-container {
    width: 100% !important;
  }
}
.cid-v7vH1x9WDG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vH1x9WDG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vH1x9WDG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vH1x9WDG .row {
  justify-content: center;
}
.cid-v7vH1x9WDG .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vH1x9WDG .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vH1x9WDG .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vH1x9WDG .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vH1x9WDG .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vH1x9WDG .mbr-text_1,
.cid-v7vH1x9WDG .mbr-text_2,
.cid-v7vH1x9WDG .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vH1x9WDG .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vH1x9WDG .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vH1x9WDG .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vH1x9WDG .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vH1x9WDG .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vH1x9WDG .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vH1x9WDG .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vH1x9WDG .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vH1x9WDG .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vH1x9WDG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vH1x9WDG .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vH1x9WDG .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vH1x9WDG .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vH2i8jfr {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vH2i8jfr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vH2i8jfr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vH2i8jfr .row {
  justify-content: center;
}
.cid-v7vH2i8jfr .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vH2i8jfr .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vH2i8jfr .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vH2i8jfr .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vH2i8jfr .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vH2i8jfr .mbr-text_1,
.cid-v7vH2i8jfr .mbr-text_2,
.cid-v7vH2i8jfr .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vH2i8jfr .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vH2i8jfr .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vH2i8jfr .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vH2i8jfr .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vH2i8jfr .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vH2i8jfr .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vH2i8jfr .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vH2i8jfr .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vH2i8jfr .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vH2i8jfr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vH2i8jfr .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vH2i8jfr .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vH2i8jfr .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tvj0GBfnOp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tvj0GBfnOp .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tvj0GBfnOp .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-tvj0GBfnOp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tvj0GBfnOp .inner-container {
    width: 100% !important;
  }
}
.cid-v8aEMdqAR6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aEMdqAR6 .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aEMdqAR6 .container-table {
  margin: 0 auto;
}
.cid-v8aEMdqAR6 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aEMdqAR6 .dataTables_wrapper {
  display: block;
}
.cid-v8aEMdqAR6 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aEMdqAR6 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aEMdqAR6 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aEMdqAR6 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aEMdqAR6 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aEMdqAR6 table td {
  border-top: 1px solid #232323;
}
.cid-v8aEMdqAR6 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aEMdqAR6 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aEMdqAR6 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aEMdqAR6 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aEMdqAR6 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aEMdqAR6 .dataTables_filter {
    text-align: center;
  }
  .cid-v8aEMdqAR6 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aEMdqAR6 .mbr-section-title {
  color: #232323;
}
.cid-v8aEMdqAR6 .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aEMdqAR6 .body-item {
  text-align: center;
}
.cid-tvj0GBk6md {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tvj0GBk6md .mbr-section-subtitle {
  color: #767676;
}
.cid-tvj0GBk6md .container-table {
  margin: 0 auto;
}
.cid-tvj0GBk6md .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tvj0GBk6md .dataTables_wrapper {
  display: block;
}
.cid-tvj0GBk6md .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tvj0GBk6md .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tvj0GBk6md table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tvj0GBk6md table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tvj0GBk6md table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tvj0GBk6md table td {
  border-top: 1px solid #232323;
}
.cid-tvj0GBk6md .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tvj0GBk6md .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tvj0GBk6md .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tvj0GBk6md .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tvj0GBk6md .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tvj0GBk6md .dataTables_filter {
    text-align: center;
  }
  .cid-tvj0GBk6md .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tvj0GBk6md .mbr-section-title {
  color: #232323;
}
.cid-tvj0GBk6md .head-item {
  text-align: center;
  color: #232323;
}
.cid-tvj0GBk6md .body-item {
  text-align: center;
}
.cid-tvj0GBOZk1 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-tvj0GBOZk1 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tvj0GBOZk1 div.b {
  padding-top: 2rem;
}
.cid-tvj0GBOZk1 H5 {
  color: #232323;
}
.cid-tvj1wHcQsN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tvj1wHcQsN .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tvj1wHcQsN .section-text {
  padding: 2rem 0;
}
.cid-tvj1wHcQsN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tvj1wHcQsN .inner-container {
    width: 100% !important;
  }
}
.cid-v7vLABJRWr {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vLABJRWr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vLABJRWr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vLABJRWr .row {
  justify-content: center;
}
.cid-v7vLABJRWr .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vLABJRWr .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vLABJRWr .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vLABJRWr .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vLABJRWr .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vLABJRWr .mbr-text_1,
.cid-v7vLABJRWr .mbr-text_2,
.cid-v7vLABJRWr .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vLABJRWr .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLABJRWr .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vLABJRWr .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vLABJRWr .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vLABJRWr .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLABJRWr .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vLABJRWr .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vLABJRWr .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLABJRWr .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vLABJRWr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vLABJRWr .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vLABJRWr .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vLABJRWr .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vLBqkfyt {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vLBqkfyt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vLBqkfyt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vLBqkfyt .row {
  justify-content: center;
}
.cid-v7vLBqkfyt .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vLBqkfyt .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vLBqkfyt .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vLBqkfyt .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vLBqkfyt .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vLBqkfyt .mbr-text_1,
.cid-v7vLBqkfyt .mbr-text_2,
.cid-v7vLBqkfyt .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vLBqkfyt .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLBqkfyt .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vLBqkfyt .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vLBqkfyt .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vLBqkfyt .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLBqkfyt .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vLBqkfyt .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vLBqkfyt .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLBqkfyt .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vLBqkfyt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vLBqkfyt .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vLBqkfyt .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vLBqkfyt .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tvj1wHu3Do {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tvj1wHu3Do .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tvj1wHu3Do .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-tvj1wHu3Do .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tvj1wHu3Do .inner-container {
    width: 100% !important;
  }
}
.cid-tvj1wHA5Ez {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-tvj1wHE8ff {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tvj1wHE8ff .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tvj1wHE8ff .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tvj1wHE8ff .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tvj1wHE8ff .inner-container {
    width: 100% !important;
  }
}
.cid-tvj1wHUDPB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tvj1wHUDPB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tvj1wHUDPB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tvj1wHUDPB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tvj1wHUDPB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tvj1wHUDPB .row > .row {
  display: block;
}
.cid-tvj1wHUDPB .mbr-gallery-item {
  width: 100%;
}
.cid-tvj1wHUDPB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tvj1wHUDPB .mbr-gallery-item > div {
  position: relative;
}
.cid-tvj1wHUDPB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tvj1wHUDPB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tvj1wHUDPB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tvj1wHUDPB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tvj1wIknAF {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-tvj1wIknAF .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tvj1wIknAF div.b {
  padding-top: 2rem;
}
.cid-tvj1wIknAF H5 {
  color: #232323;
}
.cid-tBZ5GoUjOs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tBZ5GoUjOs .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tBZ5GoUjOs .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-tBZ5GoUjOs .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tBZ5GoUjOs .inner-container {
    width: 100% !important;
  }
}
.cid-v7eaTwpIi0 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7eaTwpIi0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7eaTwpIi0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7eaTwpIi0 .row {
  justify-content: center;
}
.cid-v7eaTwpIi0 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7eaTwpIi0 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7eaTwpIi0 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7eaTwpIi0 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7eaTwpIi0 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7eaTwpIi0 .mbr-text_1,
.cid-v7eaTwpIi0 .mbr-text_2,
.cid-v7eaTwpIi0 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7eaTwpIi0 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eaTwpIi0 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7eaTwpIi0 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7eaTwpIi0 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7eaTwpIi0 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eaTwpIi0 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7eaTwpIi0 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7eaTwpIi0 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eaTwpIi0 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7eaTwpIi0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7eaTwpIi0 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7eaTwpIi0 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7eaTwpIi0 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7eaUqInNX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7eaUqInNX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7eaUqInNX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7eaUqInNX .row {
  justify-content: center;
}
.cid-v7eaUqInNX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7eaUqInNX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7eaUqInNX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7eaUqInNX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7eaUqInNX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7eaUqInNX .mbr-text_1,
.cid-v7eaUqInNX .mbr-text_2,
.cid-v7eaUqInNX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7eaUqInNX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eaUqInNX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7eaUqInNX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7eaUqInNX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7eaUqInNX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eaUqInNX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7eaUqInNX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7eaUqInNX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eaUqInNX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7eaUqInNX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7eaUqInNX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7eaUqInNX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7eaUqInNX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tBZ5GqqbGW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tBZ5GqqbGW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tBZ5GqqbGW .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-tBZ5GqqbGW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tBZ5GqqbGW .inner-container {
    width: 100% !important;
  }
}
.cid-v7eaVvR0cC {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7eaVvR0cC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7eaVvR0cC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7eaVvR0cC .row {
  justify-content: center;
}
.cid-v7eaVvR0cC .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7eaVvR0cC .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7eaVvR0cC .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7eaVvR0cC .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7eaVvR0cC .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7eaVvR0cC .mbr-text_1,
.cid-v7eaVvR0cC .mbr-text_2,
.cid-v7eaVvR0cC .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7eaVvR0cC .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eaVvR0cC .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7eaVvR0cC .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7eaVvR0cC .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7eaVvR0cC .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eaVvR0cC .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7eaVvR0cC .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7eaVvR0cC .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7eaVvR0cC .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7eaVvR0cC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7eaVvR0cC .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7eaVvR0cC .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7eaVvR0cC .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tBZ5GqLB9y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBZ5GqS2JN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tBZ5GqS2JN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tBZ5GqS2JN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBZ5GqS2JN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tBZ5GqS2JN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tBZ5GqS2JN .row > .row {
  display: block;
}
.cid-tBZ5GqS2JN .mbr-gallery-item {
  width: 100%;
}
.cid-tBZ5GqS2JN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tBZ5GqS2JN .mbr-gallery-item > div {
  position: relative;
}
.cid-tBZ5GqS2JN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tBZ5GqS2JN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tBZ5GqS2JN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tBZ5GqS2JN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tBZ5GrftDS {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-tBZ5GrftDS .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tBZ5GrftDS div.b {
  padding-top: 2rem;
}
.cid-tIoQTIMePy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-tIoQTIMePy .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIoQTIMePy .section-text {
  padding: 2rem 0;
}
.cid-tIoQTIMePy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tIoQTIMePy .inner-container {
    width: 100% !important;
  }
}
.cid-v7rD91Ejfh {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3bec15;
}
.cid-v7rD91Ejfh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rD91Ejfh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rD91Ejfh .row {
  justify-content: center;
}
.cid-v7rD91Ejfh .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rD91Ejfh .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rD91Ejfh .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rD91Ejfh .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rD91Ejfh .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rD91Ejfh .mbr-text_1,
.cid-v7rD91Ejfh .mbr-text_2,
.cid-v7rD91Ejfh .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rD91Ejfh .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rD91Ejfh .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rD91Ejfh .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rD91Ejfh .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rD91Ejfh .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rD91Ejfh .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rD91Ejfh .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rD91Ejfh .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rD91Ejfh .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rD91Ejfh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rD91Ejfh .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rD91Ejfh .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rD91Ejfh .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rD9Sa3Nc {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3bec15;
}
.cid-v7rD9Sa3Nc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rD9Sa3Nc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rD9Sa3Nc .row {
  justify-content: center;
}
.cid-v7rD9Sa3Nc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rD9Sa3Nc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rD9Sa3Nc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rD9Sa3Nc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rD9Sa3Nc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rD9Sa3Nc .mbr-text_1,
.cid-v7rD9Sa3Nc .mbr-text_2,
.cid-v7rD9Sa3Nc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rD9Sa3Nc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rD9Sa3Nc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rD9Sa3Nc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rD9Sa3Nc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rD9Sa3Nc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rD9Sa3Nc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rD9Sa3Nc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rD9Sa3Nc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rD9Sa3Nc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rD9Sa3Nc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rD9Sa3Nc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rD9Sa3Nc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rD9Sa3Nc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tIoQTJwdlG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-tIoQTJwdlG .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIoQTJwdlG .section-text {
  padding: 2rem 0;
}
.cid-tIoQTJwdlG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tIoQTJwdlG .inner-container {
    width: 100% !important;
  }
}
.cid-tIoQTJCIMV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-tIoQTJCIMV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIoQTJCIMV .section-text {
  padding: 2rem 0;
}
.cid-tIoQTJCIMV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tIoQTJCIMV .inner-container {
    width: 100% !important;
  }
}
.cid-tIoQTJHq7D {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3bec15;
}
.cid-tIoQTJHq7D .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tIoQTJHq7D .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIoQTJHq7D .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tIoQTJHq7D .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tIoQTJHq7D .row > .row {
  display: block;
}
.cid-tIoQTJHq7D .mbr-gallery-item {
  width: 100%;
}
.cid-tIoQTJHq7D .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tIoQTJHq7D .mbr-gallery-item > div {
  position: relative;
}
.cid-tIoQTJHq7D .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tIoQTJHq7D .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tIoQTJHq7D .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tIoQTJHq7D .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tIoQTK0F4q {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3bec15;
}
.cid-tIoQTK0F4q .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tIoQTK0F4q div.b {
  padding-top: 2rem;
}
.cid-tIoQTK0F4q H5 {
  color: #232323;
}
.cid-tIuPfdX1ah {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tIuPfdX1ah .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIuPfdX1ah .section-text {
  padding: 2rem 0;
}
.cid-tIuPfdX1ah .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tIuPfdX1ah .inner-container {
    width: 100% !important;
  }
}
.cid-v7vLRoixNO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vLRoixNO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vLRoixNO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vLRoixNO .row {
  justify-content: center;
}
.cid-v7vLRoixNO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vLRoixNO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vLRoixNO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vLRoixNO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vLRoixNO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vLRoixNO .mbr-text_1,
.cid-v7vLRoixNO .mbr-text_2,
.cid-v7vLRoixNO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vLRoixNO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLRoixNO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vLRoixNO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vLRoixNO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vLRoixNO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLRoixNO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vLRoixNO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vLRoixNO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLRoixNO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vLRoixNO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vLRoixNO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vLRoixNO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vLRoixNO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vLS7HhwX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vLS7HhwX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vLS7HhwX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vLS7HhwX .row {
  justify-content: center;
}
.cid-v7vLS7HhwX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vLS7HhwX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vLS7HhwX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vLS7HhwX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vLS7HhwX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vLS7HhwX .mbr-text_1,
.cid-v7vLS7HhwX .mbr-text_2,
.cid-v7vLS7HhwX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vLS7HhwX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLS7HhwX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vLS7HhwX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vLS7HhwX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vLS7HhwX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLS7HhwX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vLS7HhwX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vLS7HhwX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vLS7HhwX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vLS7HhwX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vLS7HhwX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vLS7HhwX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vLS7HhwX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tIuPfeCwlT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tIuPfeCwlT .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIuPfeCwlT .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-tIuPfeCwlT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tIuPfeCwlT .inner-container {
    width: 100% !important;
  }
}
.cid-tIuPfeJc98 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-tIuPfePAXY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tIuPfePAXY .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIuPfePAXY .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tIuPfePAXY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tIuPfePAXY .inner-container {
    width: 100% !important;
  }
}
.cid-tIuQI4S1x5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tIuQI4S1x5 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIuQI4S1x5 .section-text {
  padding: 2rem 0;
}
.cid-tIuQI4S1x5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tIuQI4S1x5 .inner-container {
    width: 100% !important;
  }
}
.cid-tIuQK1JDog {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tIuQK1JDog .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIuQK1JDog .section-text {
  padding: 2rem 0;
}
.cid-tIuQK1JDog .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tIuQK1JDog .inner-container {
    width: 100% !important;
  }
}
.cid-tIuQK1JDog .section-text DIV {
  text-align: center;
}
.cid-tIuQM8psvB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tIuQM8psvB .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIuQM8psvB .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tIuQM8psvB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tIuQM8psvB .inner-container {
    width: 100% !important;
  }
}
.cid-tIuQP8fyQf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tIuQP8fyQf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tIuQP8fyQf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIuQP8fyQf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tIuQP8fyQf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tIuQP8fyQf .row > .row {
  display: block;
}
.cid-tIuQP8fyQf .mbr-gallery-item {
  width: 100%;
}
.cid-tIuQP8fyQf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tIuQP8fyQf .mbr-gallery-item > div {
  position: relative;
}
.cid-tIuQP8fyQf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tIuQP8fyQf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tIuQP8fyQf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tIuQP8fyQf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tIuScyuW6Z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tIuScyuW6Z .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIuScyuW6Z .section-text {
  padding: 2rem 0;
}
.cid-tIuScyuW6Z .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tIuScyuW6Z .inner-container {
    width: 100% !important;
  }
}
.cid-tIuScyuW6Z .section-text DIV {
  text-align: center;
}
.cid-tIuSfcT41T {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tIuSfcT41T .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tIuSfcT41T .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIuSfcT41T .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tIuSfcT41T .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tIuSfcT41T .row > .row {
  display: block;
}
.cid-tIuSfcT41T .mbr-gallery-item {
  width: 100%;
}
.cid-tIuSfcT41T .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tIuSfcT41T .mbr-gallery-item > div {
  position: relative;
}
.cid-tIuSfcT41T .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tIuSfcT41T .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tIuSfcT41T .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tIuSfcT41T .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tIuSlDg81V {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tIuSlDg81V .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIuSlDg81V .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tIuSlDg81V .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tIuSlDg81V .inner-container {
    width: 100% !important;
  }
}
.cid-tIuSmeQkGH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tIuSmeQkGH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tIuSmeQkGH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIuSmeQkGH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tIuSmeQkGH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tIuSmeQkGH .row > .row {
  display: block;
}
.cid-tIuSmeQkGH .mbr-gallery-item {
  width: 100%;
}
.cid-tIuSmeQkGH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tIuSmeQkGH .mbr-gallery-item > div {
  position: relative;
}
.cid-tIuSmeQkGH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tIuSmeQkGH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tIuSmeQkGH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tIuSmeQkGH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tIuPff9o5c {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-tIuPff9o5c .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tIuPff9o5c div.b {
  padding-top: 2rem;
}
.cid-tIuPff9o5c H5 {
  color: #232323;
}
.cid-tJCAjofSE0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJCAjofSE0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJCAjofSE0 .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-tJCAjofSE0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJCAjofSE0 .inner-container {
    width: 100% !important;
  }
}
.cid-v7dIfETWm0 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dIfETWm0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dIfETWm0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dIfETWm0 .row {
  justify-content: center;
}
.cid-v7dIfETWm0 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dIfETWm0 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dIfETWm0 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dIfETWm0 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dIfETWm0 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dIfETWm0 .mbr-text_1,
.cid-v7dIfETWm0 .mbr-text_2,
.cid-v7dIfETWm0 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dIfETWm0 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIfETWm0 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dIfETWm0 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dIfETWm0 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dIfETWm0 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIfETWm0 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dIfETWm0 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dIfETWm0 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIfETWm0 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dIfETWm0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dIfETWm0 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dIfETWm0 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dIfETWm0 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dIgE6mAT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dIgE6mAT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dIgE6mAT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dIgE6mAT .row {
  justify-content: center;
}
.cid-v7dIgE6mAT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dIgE6mAT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dIgE6mAT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dIgE6mAT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dIgE6mAT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dIgE6mAT .mbr-text_1,
.cid-v7dIgE6mAT .mbr-text_2,
.cid-v7dIgE6mAT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dIgE6mAT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIgE6mAT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dIgE6mAT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dIgE6mAT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dIgE6mAT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIgE6mAT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dIgE6mAT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dIgE6mAT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIgE6mAT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dIgE6mAT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dIgE6mAT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dIgE6mAT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dIgE6mAT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJCAjoPUtO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJCAjoPUtO .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJCAjoPUtO .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-tJCAjoPUtO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJCAjoPUtO .inner-container {
    width: 100% !important;
  }
}
.cid-v7dIhB8RkW {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dIhB8RkW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dIhB8RkW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dIhB8RkW .row {
  justify-content: center;
}
.cid-v7dIhB8RkW .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dIhB8RkW .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dIhB8RkW .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dIhB8RkW .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dIhB8RkW .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dIhB8RkW .mbr-text_1,
.cid-v7dIhB8RkW .mbr-text_2,
.cid-v7dIhB8RkW .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dIhB8RkW .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIhB8RkW .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dIhB8RkW .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dIhB8RkW .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dIhB8RkW .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIhB8RkW .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dIhB8RkW .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dIhB8RkW .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIhB8RkW .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dIhB8RkW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dIhB8RkW .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dIhB8RkW .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dIhB8RkW .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJwPX4CGG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJwPX4CGG .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJwPX4CGG .container-table {
  margin: 0 auto;
}
.cid-tJJwPX4CGG .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJwPX4CGG .dataTables_wrapper {
  display: block;
}
.cid-tJJwPX4CGG .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJwPX4CGG .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJwPX4CGG table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJwPX4CGG table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJwPX4CGG table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJwPX4CGG table td {
  border-top: 1px solid #232323;
}
.cid-tJJwPX4CGG table.table {
  background: #ffffff;
}
.cid-tJJwPX4CGG .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJwPX4CGG .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJwPX4CGG .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJwPX4CGG .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJwPX4CGG .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJwPX4CGG .dataTables_filter {
    text-align: center;
  }
  .cid-tJJwPX4CGG .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJwPX4CGG .mbr-section-title {
  color: #ff3366;
}
.cid-tJJwPX4CGG .head-item {
  text-align: center;
}
.cid-tJJwPX4CGG .body-item {
  text-align: center;
}
.cid-tJCAjpwDF0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tJCAwlyEto {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJCAwlyEto .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJCAwlyEto .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJCAwlyEto .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJCAwlyEto .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJCAwlyEto .row > .row {
  display: block;
}
.cid-tJCAwlyEto .mbr-gallery-item {
  width: 100%;
}
.cid-tJCAwlyEto .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJCAwlyEto .mbr-gallery-item > div {
  position: relative;
}
.cid-tJCAwlyEto .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJCAwlyEto .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJCAwlyEto .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJCAwlyEto .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJCAjpRfBz {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tJCAjpRfBz .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tJCAjpRfBz div.b {
  padding-top: 2rem;
}
.cid-tJCBDQAqVM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJCBDQAqVM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJCBDQAqVM .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-tJCBDQAqVM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJCBDQAqVM .inner-container {
    width: 100% !important;
  }
}
.cid-v7dJaq2mgC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dJaq2mgC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dJaq2mgC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dJaq2mgC .row {
  justify-content: center;
}
.cid-v7dJaq2mgC .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dJaq2mgC .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dJaq2mgC .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dJaq2mgC .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dJaq2mgC .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dJaq2mgC .mbr-text_1,
.cid-v7dJaq2mgC .mbr-text_2,
.cid-v7dJaq2mgC .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dJaq2mgC .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJaq2mgC .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJaq2mgC .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dJaq2mgC .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dJaq2mgC .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJaq2mgC .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJaq2mgC .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dJaq2mgC .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJaq2mgC .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dJaq2mgC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dJaq2mgC .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dJaq2mgC .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dJaq2mgC .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dJbt562k {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dJbt562k .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dJbt562k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dJbt562k .row {
  justify-content: center;
}
.cid-v7dJbt562k .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dJbt562k .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dJbt562k .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dJbt562k .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dJbt562k .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dJbt562k .mbr-text_1,
.cid-v7dJbt562k .mbr-text_2,
.cid-v7dJbt562k .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dJbt562k .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJbt562k .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJbt562k .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dJbt562k .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dJbt562k .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJbt562k .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJbt562k .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dJbt562k .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJbt562k .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dJbt562k .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dJbt562k .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dJbt562k .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dJbt562k .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJCBDR7qPe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJCBDR7qPe .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJCBDR7qPe .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-tJCBDR7qPe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJCBDR7qPe .inner-container {
    width: 100% !important;
  }
}
.cid-v7dJclAnK7 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dJclAnK7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dJclAnK7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dJclAnK7 .row {
  justify-content: center;
}
.cid-v7dJclAnK7 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dJclAnK7 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dJclAnK7 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dJclAnK7 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dJclAnK7 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dJclAnK7 .mbr-text_1,
.cid-v7dJclAnK7 .mbr-text_2,
.cid-v7dJclAnK7 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dJclAnK7 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJclAnK7 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJclAnK7 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dJclAnK7 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dJclAnK7 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJclAnK7 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dJclAnK7 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dJclAnK7 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dJclAnK7 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dJclAnK7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dJclAnK7 .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dJclAnK7 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dJclAnK7 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJwVqwUB8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJwVqwUB8 .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJwVqwUB8 .container-table {
  margin: 0 auto;
}
.cid-tJJwVqwUB8 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJwVqwUB8 .dataTables_wrapper {
  display: block;
}
.cid-tJJwVqwUB8 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJwVqwUB8 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJwVqwUB8 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJwVqwUB8 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJwVqwUB8 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJwVqwUB8 table td {
  border-top: 1px solid #232323;
}
.cid-tJJwVqwUB8 table.table {
  background: #ffffff;
}
.cid-tJJwVqwUB8 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJwVqwUB8 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJwVqwUB8 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJwVqwUB8 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJwVqwUB8 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJwVqwUB8 .dataTables_filter {
    text-align: center;
  }
  .cid-tJJwVqwUB8 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJwVqwUB8 .mbr-section-title {
  color: #ff3366;
}
.cid-tJJwVqwUB8 .head-item {
  text-align: center;
}
.cid-tJJwVqwUB8 .body-item {
  text-align: center;
}
.cid-tJCBDRJSzj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tJCBDRPkNn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJCBDRPkNn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJCBDRPkNn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJCBDRPkNn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJCBDRPkNn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJCBDRPkNn .row > .row {
  display: block;
}
.cid-tJCBDRPkNn .mbr-gallery-item {
  width: 100%;
}
.cid-tJCBDRPkNn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJCBDRPkNn .mbr-gallery-item > div {
  position: relative;
}
.cid-tJCBDRPkNn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJCBDRPkNn .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJCBDRPkNn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJCBDRPkNn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJCBDS4TiG {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tJCBDS4TiG .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tJCBDS4TiG div.b {
  padding-top: 2rem;
}
.cid-tJD15a9bek {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJD15a9bek .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJD15a9bek .section-text {
  padding: 2rem 0;
}
.cid-tJD15a9bek .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJD15a9bek .inner-container {
    width: 100% !important;
  }
}
.cid-v9Xe7yGrSR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9Xe7yGrSR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Xe7yGrSR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Xe7yGrSR .row {
  justify-content: center;
}
.cid-v9Xe7yGrSR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9Xe7yGrSR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9Xe7yGrSR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9Xe7yGrSR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9Xe7yGrSR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9Xe7yGrSR .mbr-text_1,
.cid-v9Xe7yGrSR .mbr-text_2,
.cid-v9Xe7yGrSR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9Xe7yGrSR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xe7yGrSR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xe7yGrSR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xe7yGrSR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xe7yGrSR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xe7yGrSR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xe7yGrSR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9Xe7yGrSR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xe7yGrSR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9Xe7yGrSR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9Xe7yGrSR .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9Xe7yGrSR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9Xe7yGrSR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9Xe8tO1tl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9Xe8tO1tl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Xe8tO1tl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Xe8tO1tl .row {
  justify-content: center;
}
.cid-v9Xe8tO1tl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9Xe8tO1tl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9Xe8tO1tl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9Xe8tO1tl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9Xe8tO1tl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9Xe8tO1tl .mbr-text_1,
.cid-v9Xe8tO1tl .mbr-text_2,
.cid-v9Xe8tO1tl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9Xe8tO1tl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xe8tO1tl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xe8tO1tl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xe8tO1tl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xe8tO1tl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xe8tO1tl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xe8tO1tl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9Xe8tO1tl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xe8tO1tl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xe8tO1tl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9Xe8tO1tl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9Xe8tO1tl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9Xe8tO1tl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJD15aPmKZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJD15aPmKZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJD15aPmKZ .section-text {
  padding: 2rem 0;
}
.cid-tJD15aPmKZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJD15aPmKZ .inner-container {
    width: 100% !important;
  }
}
.cid-tJD15b0uFZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJD15b0uFZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJD15b0uFZ .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tJD15b0uFZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJD15b0uFZ .inner-container {
    width: 100% !important;
  }
}
.cid-v9Xe9xOSdZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9Xe9xOSdZ .mbr-section-subtitle {
  color: #767676;
}
.cid-v9Xe9xOSdZ .container-table {
  margin: 0 auto;
}
.cid-v9Xe9xOSdZ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9Xe9xOSdZ .dataTables_wrapper {
  display: block;
}
.cid-v9Xe9xOSdZ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9Xe9xOSdZ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9Xe9xOSdZ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9Xe9xOSdZ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9Xe9xOSdZ table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9Xe9xOSdZ table td {
  border-top: 1px solid #232323;
}
.cid-v9Xe9xOSdZ table.table {
  background: #3eddea;
}
.cid-v9Xe9xOSdZ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9Xe9xOSdZ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9Xe9xOSdZ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9Xe9xOSdZ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9Xe9xOSdZ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9Xe9xOSdZ .dataTables_filter {
    text-align: center;
  }
  .cid-v9Xe9xOSdZ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9Xe9xOSdZ .mbr-section-title {
  color: #ff3366;
}
.cid-v9Xe9xOSdZ .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9Xe9xOSdZ .body-item {
  text-align: center;
}
.cid-tJD15beKuG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-tJD23PXTMH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJD23PXTMH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJD23PXTMH .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tJD23PXTMH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJD23PXTMH .inner-container {
    width: 100% !important;
  }
}
.cid-tJD24KIGHw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJD24KIGHw .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJD24KIGHw .section-text {
  padding: 2rem 0;
}
.cid-tJD24KIGHw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJD24KIGHw .inner-container {
    width: 100% !important;
  }
}
.cid-tJD25M343H {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJD25M343H .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJD25M343H .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJD25M343H .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJD25M343H .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJD25M343H .row > .row {
  display: block;
}
.cid-tJD25M343H .mbr-gallery-item {
  width: 100%;
}
.cid-tJD25M343H .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJD25M343H .mbr-gallery-item > div {
  position: relative;
}
.cid-tJD25M343H .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJD25M343H .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJD25M343H .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJD25M343H .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJD29PxfVp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJD29PxfVp .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJD29PxfVp .section-text {
  padding: 2rem 0;
}
.cid-tJD29PxfVp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJD29PxfVp .inner-container {
    width: 100% !important;
  }
}
.cid-tJD2aDex5O {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJD2aDex5O .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJD2aDex5O .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJD2aDex5O .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJD2aDex5O .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJD2aDex5O .row > .row {
  display: block;
}
.cid-tJD2aDex5O .mbr-gallery-item {
  width: 100%;
}
.cid-tJD2aDex5O .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJD2aDex5O .mbr-gallery-item > div {
  position: relative;
}
.cid-tJD2aDex5O .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJD2aDex5O .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJD2aDex5O .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJD2aDex5O .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJD2bBAU8E {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJD2bBAU8E .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJD2bBAU8E .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJD2bBAU8E .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJD2bBAU8E .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJD2bBAU8E .row > .row {
  display: block;
}
.cid-tJD2bBAU8E .mbr-gallery-item {
  width: 100%;
}
.cid-tJD2bBAU8E .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJD2bBAU8E .mbr-gallery-item > div {
  position: relative;
}
.cid-tJD2bBAU8E .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJD2bBAU8E .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJD2bBAU8E .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJD2bBAU8E .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJD2bIJOe4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJD2bIJOe4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJD2bIJOe4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJD2bIJOe4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJD2bIJOe4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJD2bIJOe4 .row > .row {
  display: block;
}
.cid-tJD2bIJOe4 .mbr-gallery-item {
  width: 100%;
}
.cid-tJD2bIJOe4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJD2bIJOe4 .mbr-gallery-item > div {
  position: relative;
}
.cid-tJD2bIJOe4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJD2bIJOe4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJD2bIJOe4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJD2bIJOe4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJD15cjrZQ {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-tJD15cjrZQ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tJD15cjrZQ div.b {
  padding-top: 2rem;
}
.cid-tJDoGxkuaQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDoGxkuaQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJDoGxkuaQ .section-text {
  padding: 2rem 0;
}
.cid-tJDoGxkuaQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJDoGxkuaQ .inner-container {
    width: 100% !important;
  }
}
.cid-v7agUIy9jM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7agUIy9jM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7agUIy9jM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7agUIy9jM .row {
  justify-content: center;
}
.cid-v7agUIy9jM .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7agUIy9jM .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7agUIy9jM .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7agUIy9jM .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7agUIy9jM .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7agUIy9jM .mbr-text_1,
.cid-v7agUIy9jM .mbr-text_2,
.cid-v7agUIy9jM .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7agUIy9jM .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7agUIy9jM .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7agUIy9jM .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7agUIy9jM .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7agUIy9jM .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7agUIy9jM .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7agUIy9jM .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7agUIy9jM .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7agUIy9jM .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7agUIy9jM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7agUIy9jM .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7agUIy9jM .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7agUIy9jM .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7agVpVwxO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7agVpVwxO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7agVpVwxO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7agVpVwxO .row {
  justify-content: center;
}
.cid-v7agVpVwxO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7agVpVwxO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7agVpVwxO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7agVpVwxO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7agVpVwxO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7agVpVwxO .mbr-text_1,
.cid-v7agVpVwxO .mbr-text_2,
.cid-v7agVpVwxO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7agVpVwxO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7agVpVwxO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7agVpVwxO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7agVpVwxO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7agVpVwxO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7agVpVwxO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7agVpVwxO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7agVpVwxO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7agVpVwxO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7agVpVwxO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7agVpVwxO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7agVpVwxO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7agVpVwxO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJDoGxT336 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDoGxT336 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJDoGxT336 .section-text {
  padding: 2rem 0;
}
.cid-tJDoGxT336 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJDoGxT336 .inner-container {
    width: 100% !important;
  }
}
.cid-tJDoGxYDNV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDoGxYDNV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJDoGxYDNV .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tJDoGxYDNV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJDoGxYDNV .inner-container {
    width: 100% !important;
  }
}
.cid-tJDoZF8dyD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDoZF8dyD .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJDoZF8dyD .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tJDoZF8dyD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJDoZF8dyD .inner-container {
    width: 100% !important;
  }
}
.cid-tJDp0XFdX8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDp0XFdX8 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJDp0XFdX8 .section-text {
  padding: 2rem 0;
}
.cid-tJDp0XFdX8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJDp0XFdX8 .inner-container {
    width: 100% !important;
  }
}
.cid-tJDp0XFdX8 .section-text DIV {
  text-align: center;
}
.cid-tJDp1zPIeW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDp1zPIeW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJDp1zPIeW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJDp1zPIeW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJDp1zPIeW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJDp1zPIeW .row > .row {
  display: block;
}
.cid-tJDp1zPIeW .mbr-gallery-item {
  width: 100%;
}
.cid-tJDp1zPIeW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJDp1zPIeW .mbr-gallery-item > div {
  position: relative;
}
.cid-tJDp1zPIeW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJDp1zPIeW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJDp1zPIeW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJDp1zPIeW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJDp3tVQ63 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDp3tVQ63 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJDp3tVQ63 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tJDp3tVQ63 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJDp3tVQ63 .inner-container {
    width: 100% !important;
  }
}
.cid-tJDp44qSiV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDp44qSiV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJDp44qSiV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJDp44qSiV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJDp44qSiV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJDp44qSiV .row > .row {
  display: block;
}
.cid-tJDp44qSiV .mbr-gallery-item {
  width: 100%;
}
.cid-tJDp44qSiV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJDp44qSiV .mbr-gallery-item > div {
  position: relative;
}
.cid-tJDp44qSiV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJDp44qSiV .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJDp44qSiV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJDp44qSiV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJDp4z4xcs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDp4z4xcs .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJDp4z4xcs .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tJDp4z4xcs .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJDp4z4xcs .inner-container {
    width: 100% !important;
  }
}
.cid-tJDp516qag {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDp516qag .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJDp516qag .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJDp516qag .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJDp516qag .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJDp516qag .row > .row {
  display: block;
}
.cid-tJDp516qag .mbr-gallery-item {
  width: 100%;
}
.cid-tJDp516qag .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJDp516qag .mbr-gallery-item > div {
  position: relative;
}
.cid-tJDp516qag .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJDp516qag .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJDp516qag .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJDp516qag .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJDp5EM09C {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDp5EM09C .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJDp5EM09C .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tJDp5EM09C .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJDp5EM09C .inner-container {
    width: 100% !important;
  }
}
.cid-tJDp652KOB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDp652KOB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJDp652KOB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJDp652KOB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJDp652KOB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJDp652KOB .row > .row {
  display: block;
}
.cid-tJDp652KOB .mbr-gallery-item {
  width: 100%;
}
.cid-tJDp652KOB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJDp652KOB .mbr-gallery-item > div {
  position: relative;
}
.cid-tJDp652KOB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJDp652KOB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJDp652KOB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJDp652KOB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJDp6ASbi7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDp6ASbi7 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJDp6ASbi7 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tJDp6ASbi7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJDp6ASbi7 .inner-container {
    width: 100% !important;
  }
}
.cid-tJDp6Z0YuR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDp6Z0YuR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJDp6Z0YuR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJDp6Z0YuR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJDp6Z0YuR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJDp6Z0YuR .row > .row {
  display: block;
}
.cid-tJDp6Z0YuR .mbr-gallery-item {
  width: 100%;
}
.cid-tJDp6Z0YuR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJDp6Z0YuR .mbr-gallery-item > div {
  position: relative;
}
.cid-tJDp6Z0YuR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJDp6Z0YuR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJDp6Z0YuR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJDp6Z0YuR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJDp7tYHif {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDp7tYHif .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJDp7tYHif .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tJDp7tYHif .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJDp7tYHif .inner-container {
    width: 100% !important;
  }
}
.cid-tJDp8Mrxpu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDp8Mrxpu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJDp8Mrxpu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJDp8Mrxpu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJDp8Mrxpu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJDp8Mrxpu .row > .row {
  display: block;
}
.cid-tJDp8Mrxpu .mbr-gallery-item {
  width: 100%;
}
.cid-tJDp8Mrxpu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJDp8Mrxpu .mbr-gallery-item > div {
  position: relative;
}
.cid-tJDp8Mrxpu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJDp8Mrxpu .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJDp8Mrxpu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJDp8Mrxpu .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJDp9nxreh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDp9nxreh .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJDp9nxreh .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tJDp9nxreh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJDp9nxreh .inner-container {
    width: 100% !important;
  }
}
.cid-tJDp9NGj41 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDp9NGj41 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJDp9NGj41 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJDp9NGj41 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJDp9NGj41 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJDp9NGj41 .row > .row {
  display: block;
}
.cid-tJDp9NGj41 .mbr-gallery-item {
  width: 100%;
}
.cid-tJDp9NGj41 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJDp9NGj41 .mbr-gallery-item > div {
  position: relative;
}
.cid-tJDp9NGj41 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJDp9NGj41 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJDp9NGj41 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJDp9NGj41 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJDpahwMgm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDpahwMgm .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJDpahwMgm .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tJDpahwMgm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJDpahwMgm .inner-container {
    width: 100% !important;
  }
}
.cid-tJDpaDH2ox {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDpaDH2ox .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJDpaDH2ox .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJDpaDH2ox .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJDpaDH2ox .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJDpaDH2ox .row > .row {
  display: block;
}
.cid-tJDpaDH2ox .mbr-gallery-item {
  width: 100%;
}
.cid-tJDpaDH2ox .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJDpaDH2ox .mbr-gallery-item > div {
  position: relative;
}
.cid-tJDpaDH2ox .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJDpaDH2ox .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJDpaDH2ox .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJDpaDH2ox .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJDpbcsZu6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDpbcsZu6 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJDpbcsZu6 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tJDpbcsZu6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJDpbcsZu6 .inner-container {
    width: 100% !important;
  }
}
.cid-tJDpbMLFQZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDpbMLFQZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJDpbMLFQZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJDpbMLFQZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJDpbMLFQZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJDpbMLFQZ .row > .row {
  display: block;
}
.cid-tJDpbMLFQZ .mbr-gallery-item {
  width: 100%;
}
.cid-tJDpbMLFQZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJDpbMLFQZ .mbr-gallery-item > div {
  position: relative;
}
.cid-tJDpbMLFQZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJDpbMLFQZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJDpbMLFQZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJDpbMLFQZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJDpcbi16T {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDpcbi16T .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJDpcbi16T .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tJDpcbi16T .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJDpcbi16T .inner-container {
    width: 100% !important;
  }
}
.cid-tJDpcAhZaR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-tJDpcAhZaR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJDpcAhZaR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJDpcAhZaR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJDpcAhZaR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJDpcAhZaR .row > .row {
  display: block;
}
.cid-tJDpcAhZaR .mbr-gallery-item {
  width: 100%;
}
.cid-tJDpcAhZaR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJDpcAhZaR .mbr-gallery-item > div {
  position: relative;
}
.cid-tJDpcAhZaR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJDpcAhZaR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJDpcAhZaR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJDpcAhZaR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJDoGyMDSa {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-tJDoGyMDSa .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tJDoGyMDSa div.b {
  padding-top: 2rem;
}
.cid-tJJtFy349U {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJtFy349U .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJJtFy349U .section-text {
  padding: 2rem 0;
  color: #496ede;
}
.cid-tJJtFy349U .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJJtFy349U .inner-container {
    width: 100% !important;
  }
}
.cid-v7dIDr8PpS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7dIDr8PpS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dIDr8PpS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dIDr8PpS .row {
  justify-content: center;
}
.cid-v7dIDr8PpS .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dIDr8PpS .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dIDr8PpS .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dIDr8PpS .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dIDr8PpS .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dIDr8PpS .mbr-text_1,
.cid-v7dIDr8PpS .mbr-text_2,
.cid-v7dIDr8PpS .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dIDr8PpS .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIDr8PpS .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dIDr8PpS .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dIDr8PpS .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dIDr8PpS .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIDr8PpS .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dIDr8PpS .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dIDr8PpS .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIDr8PpS .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7dIDr8PpS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dIDr8PpS .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dIDr8PpS .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dIDr8PpS .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7dIEocfUu {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dIEocfUu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dIEocfUu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dIEocfUu .row {
  justify-content: center;
}
.cid-v7dIEocfUu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dIEocfUu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dIEocfUu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dIEocfUu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dIEocfUu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dIEocfUu .mbr-text_1,
.cid-v7dIEocfUu .mbr-text_2,
.cid-v7dIEocfUu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dIEocfUu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIEocfUu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dIEocfUu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dIEocfUu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dIEocfUu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIEocfUu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dIEocfUu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dIEocfUu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIEocfUu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7dIEocfUu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dIEocfUu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7dIEocfUu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dIEocfUu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJtFyDzsV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJtFyDzsV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tJJtFyDzsV .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-tJJtFyDzsV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tJJtFyDzsV .inner-container {
    width: 100% !important;
  }
}
.cid-v7dIFbaiTh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7dIFbaiTh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7dIFbaiTh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7dIFbaiTh .row {
  justify-content: center;
}
.cid-v7dIFbaiTh .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7dIFbaiTh .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7dIFbaiTh .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7dIFbaiTh .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7dIFbaiTh .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7dIFbaiTh .mbr-text_1,
.cid-v7dIFbaiTh .mbr-text_2,
.cid-v7dIFbaiTh .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7dIFbaiTh .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ecae15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIFbaiTh .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7dIFbaiTh .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dIFbaiTh .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dIFbaiTh .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIFbaiTh .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7dIFbaiTh .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7dIFbaiTh .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ecae15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7dIFbaiTh .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7dIFbaiTh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7dIFbaiTh .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7dIFbaiTh .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7dIFbaiTh .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tJJtFySzwW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJtFySzwW .mbr-section-subtitle {
  color: #767676;
}
.cid-tJJtFySzwW .container-table {
  margin: 0 auto;
}
.cid-tJJtFySzwW .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tJJtFySzwW .dataTables_wrapper {
  display: block;
}
.cid-tJJtFySzwW .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tJJtFySzwW .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tJJtFySzwW table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tJJtFySzwW table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tJJtFySzwW table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tJJtFySzwW table td {
  border-top: 1px solid #232323;
}
.cid-tJJtFySzwW table.table {
  background: #ffffff;
}
.cid-tJJtFySzwW .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tJJtFySzwW .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tJJtFySzwW .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tJJtFySzwW .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tJJtFySzwW .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tJJtFySzwW .dataTables_filter {
    text-align: center;
  }
  .cid-tJJtFySzwW .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tJJtFySzwW .mbr-section-title {
  color: #ff3366;
}
.cid-tJJtFySzwW .head-item {
  text-align: center;
}
.cid-tJJtFySzwW .body-item {
  text-align: center;
}
.cid-tJJtFznG7c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tJJtFzzYnT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJJtFzzYnT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tJJtFzzYnT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJJtFzzYnT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJJtFzzYnT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJJtFzzYnT .row > .row {
  display: block;
}
.cid-tJJtFzzYnT .mbr-gallery-item {
  width: 100%;
}
.cid-tJJtFzzYnT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tJJtFzzYnT .mbr-gallery-item > div {
  position: relative;
}
.cid-tJJtFzzYnT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJJtFzzYnT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tJJtFzzYnT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tJJtFzzYnT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tJJtFA6dLq {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tJJtFA6dLq .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tJJtFA6dLq div.b {
  padding-top: 2rem;
}
.cid-tLtqqlqmU5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtqqlqmU5 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtqqlqmU5 .section-text {
  padding: 2rem 0;
}
.cid-tLtqqlqmU5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtqqlqmU5 .inner-container {
    width: 100% !important;
  }
}
.cid-v7vR6mmUDR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vR6mmUDR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vR6mmUDR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vR6mmUDR .row {
  justify-content: center;
}
.cid-v7vR6mmUDR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vR6mmUDR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vR6mmUDR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vR6mmUDR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vR6mmUDR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vR6mmUDR .mbr-text_1,
.cid-v7vR6mmUDR .mbr-text_2,
.cid-v7vR6mmUDR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vR6mmUDR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vR6mmUDR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vR6mmUDR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vR6mmUDR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vR6mmUDR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vR6mmUDR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vR6mmUDR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vR6mmUDR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vR6mmUDR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vR6mmUDR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vR6mmUDR .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vR6mmUDR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vR6mmUDR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vQYvKkAs {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vQYvKkAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vQYvKkAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vQYvKkAs .row {
  justify-content: center;
}
.cid-v7vQYvKkAs .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vQYvKkAs .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vQYvKkAs .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vQYvKkAs .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vQYvKkAs .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vQYvKkAs .mbr-text_1,
.cid-v7vQYvKkAs .mbr-text_2,
.cid-v7vQYvKkAs .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vQYvKkAs .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vQYvKkAs .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vQYvKkAs .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vQYvKkAs .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vQYvKkAs .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vQYvKkAs .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vQYvKkAs .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vQYvKkAs .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vQYvKkAs .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vQYvKkAs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vQYvKkAs .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vQYvKkAs .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vQYvKkAs .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tLtqqm9I2O {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtqqm9I2O .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtqqm9I2O .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-tLtqqm9I2O .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtqqm9I2O .inner-container {
    width: 100% !important;
  }
}
.cid-tLtqqmgGEi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-tLtqqmljfm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtqqmljfm .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtqqmljfm .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tLtqqmljfm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtqqmljfm .inner-container {
    width: 100% !important;
  }
}
.cid-tLtrAEnjmq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtrAEnjmq .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtrAEnjmq .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tLtrAEnjmq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtrAEnjmq .inner-container {
    width: 100% !important;
  }
}
.cid-tLtrDiLYXj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtrDiLYXj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLtrDiLYXj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLtrDiLYXj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLtrDiLYXj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLtrDiLYXj .row > .row {
  display: block;
}
.cid-tLtrDiLYXj .mbr-gallery-item {
  width: 100%;
}
.cid-tLtrDiLYXj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tLtrDiLYXj .mbr-gallery-item > div {
  position: relative;
}
.cid-tLtrDiLYXj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tLtrDiLYXj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tLtrDiLYXj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tLtrDiLYXj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tLtrENEdnI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtrENEdnI .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtrENEdnI .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tLtrENEdnI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtrENEdnI .inner-container {
    width: 100% !important;
  }
}
.cid-tLtrH556xN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtrH556xN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLtrH556xN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLtrH556xN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLtrH556xN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLtrH556xN .row > .row {
  display: block;
}
.cid-tLtrH556xN .mbr-gallery-item {
  width: 100%;
}
.cid-tLtrH556xN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tLtrH556xN .mbr-gallery-item > div {
  position: relative;
}
.cid-tLtrH556xN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tLtrH556xN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tLtrH556xN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tLtrH556xN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tM2WOMLGOS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tM2WOMLGOS .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tM2WOMLGOS .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tM2WOMLGOS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tM2WOMLGOS .inner-container {
    width: 100% !important;
  }
}
.cid-tM2WQ7xGd0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tM2WQ7xGd0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tM2WQ7xGd0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tM2WQ7xGd0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tM2WQ7xGd0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tM2WQ7xGd0 .row > .row {
  display: block;
}
.cid-tM2WQ7xGd0 .mbr-gallery-item {
  width: 100%;
}
.cid-tM2WQ7xGd0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tM2WQ7xGd0 .mbr-gallery-item > div {
  position: relative;
}
.cid-tM2WQ7xGd0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tM2WQ7xGd0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tM2WQ7xGd0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tM2WQ7xGd0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tLtrIyEOT9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtrIyEOT9 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtrIyEOT9 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tLtrIyEOT9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtrIyEOT9 .inner-container {
    width: 100% !important;
  }
}
.cid-tLtrJuutHs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtrJuutHs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLtrJuutHs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLtrJuutHs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLtrJuutHs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLtrJuutHs .row > .row {
  display: block;
}
.cid-tLtrJuutHs .mbr-gallery-item {
  width: 100%;
}
.cid-tLtrJuutHs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tLtrJuutHs .mbr-gallery-item > div {
  position: relative;
}
.cid-tLtrJuutHs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tLtrJuutHs .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tLtrJuutHs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tLtrJuutHs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tLtrKXFElo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtrKXFElo .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtrKXFElo .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tLtrKXFElo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtrKXFElo .inner-container {
    width: 100% !important;
  }
}
.cid-tLtrRP1ZZG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtrRP1ZZG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLtrRP1ZZG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLtrRP1ZZG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLtrRP1ZZG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLtrRP1ZZG .row > .row {
  display: block;
}
.cid-tLtrRP1ZZG .mbr-gallery-item {
  width: 100%;
}
.cid-tLtrRP1ZZG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tLtrRP1ZZG .mbr-gallery-item > div {
  position: relative;
}
.cid-tLtrRP1ZZG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tLtrRP1ZZG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tLtrRP1ZZG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tLtrRP1ZZG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tLtrTj6yfd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtrTj6yfd .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtrTj6yfd .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tLtrTj6yfd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtrTj6yfd .inner-container {
    width: 100% !important;
  }
}
.cid-tLtrU5MFUe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtrU5MFUe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLtrU5MFUe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLtrU5MFUe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLtrU5MFUe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLtrU5MFUe .row > .row {
  display: block;
}
.cid-tLtrU5MFUe .mbr-gallery-item {
  width: 100%;
}
.cid-tLtrU5MFUe .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tLtrU5MFUe .mbr-gallery-item > div {
  position: relative;
}
.cid-tLtrU5MFUe .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tLtrU5MFUe .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tLtrU5MFUe .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tLtrU5MFUe .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tLtrVw0z3j {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtrVw0z3j .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtrVw0z3j .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tLtrVw0z3j .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtrVw0z3j .inner-container {
    width: 100% !important;
  }
}
.cid-tLLstkKUqp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLLstkKUqp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLLstkKUqp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLLstkKUqp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLLstkKUqp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLLstkKUqp .row > .row {
  display: block;
}
.cid-tLLstkKUqp .mbr-gallery-item {
  width: 100%;
}
.cid-tLLstkKUqp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tLLstkKUqp .mbr-gallery-item > div {
  position: relative;
}
.cid-tLLstkKUqp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tLLstkKUqp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tLLstkKUqp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tLLstkKUqp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tLtrZyebqN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtrZyebqN .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtrZyebqN .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tLtrZyebqN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtrZyebqN .inner-container {
    width: 100% !important;
  }
}
.cid-tLts0CpCK7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLts0CpCK7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLts0CpCK7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLts0CpCK7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLts0CpCK7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLts0CpCK7 .row > .row {
  display: block;
}
.cid-tLts0CpCK7 .mbr-gallery-item {
  width: 100%;
}
.cid-tLts0CpCK7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tLts0CpCK7 .mbr-gallery-item > div {
  position: relative;
}
.cid-tLts0CpCK7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tLts0CpCK7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tLts0CpCK7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tLts0CpCK7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tLts21EFC9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLts21EFC9 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLts21EFC9 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tLts21EFC9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLts21EFC9 .inner-container {
    width: 100% !important;
  }
}
.cid-tLts2OqHqm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLts2OqHqm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLts2OqHqm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLts2OqHqm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLts2OqHqm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLts2OqHqm .row > .row {
  display: block;
}
.cid-tLts2OqHqm .mbr-gallery-item {
  width: 100%;
}
.cid-tLts2OqHqm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tLts2OqHqm .mbr-gallery-item > div {
  position: relative;
}
.cid-tLts2OqHqm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tLts2OqHqm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tLts2OqHqm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tLts2OqHqm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tLtqqnDQlk {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-tLtqqnDQlk .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tLtqqnDQlk div.b {
  padding-top: 2rem;
}
.cid-tLtqqnDQlk H5 {
  color: #232323;
}
.cid-tLtvi1kTy6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtvi1kTy6 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtvi1kTy6 .section-text {
  padding: 2rem 0;
}
.cid-tLtvi1kTy6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtvi1kTy6 .inner-container {
    width: 100% !important;
  }
}
.cid-v7vRvWzMZV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vRvWzMZV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vRvWzMZV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vRvWzMZV .row {
  justify-content: center;
}
.cid-v7vRvWzMZV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vRvWzMZV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vRvWzMZV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vRvWzMZV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vRvWzMZV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vRvWzMZV .mbr-text_1,
.cid-v7vRvWzMZV .mbr-text_2,
.cid-v7vRvWzMZV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vRvWzMZV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRvWzMZV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vRvWzMZV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vRvWzMZV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vRvWzMZV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRvWzMZV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vRvWzMZV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vRvWzMZV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRvWzMZV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vRvWzMZV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vRvWzMZV .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vRvWzMZV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vRvWzMZV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vRwRihFu {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vRwRihFu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vRwRihFu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vRwRihFu .row {
  justify-content: center;
}
.cid-v7vRwRihFu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vRwRihFu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vRwRihFu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vRwRihFu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vRwRihFu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vRwRihFu .mbr-text_1,
.cid-v7vRwRihFu .mbr-text_2,
.cid-v7vRwRihFu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vRwRihFu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRwRihFu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vRwRihFu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vRwRihFu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vRwRihFu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRwRihFu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vRwRihFu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vRwRihFu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRwRihFu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vRwRihFu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vRwRihFu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vRwRihFu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vRwRihFu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tLtvi1RvHA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtvi1RvHA .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtvi1RvHA .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-tLtvi1RvHA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtvi1RvHA .inner-container {
    width: 100% !important;
  }
}
.cid-tLtvi1Wv0G {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-tLtvIZH9hI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtvIZH9hI .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtvIZH9hI .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-tLtvIZH9hI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtvIZH9hI .inner-container {
    width: 100% !important;
  }
}
.cid-tLtvJSBjPk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtvJSBjPk .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLtvJSBjPk .section-text {
  padding: 2rem 0;
}
.cid-tLtvJSBjPk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLtvJSBjPk .inner-container {
    width: 100% !important;
  }
}
.cid-tLtvKCCCTt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tLtvKCCCTt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tLtvKCCCTt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tLtvKCCCTt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tLtvKCCCTt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tLtvKCCCTt .row > .row {
  display: block;
}
.cid-tLtvKCCCTt .mbr-gallery-item {
  width: 100%;
}
.cid-tLtvKCCCTt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tLtvKCCCTt .mbr-gallery-item > div {
  position: relative;
}
.cid-tLtvKCCCTt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tLtvKCCCTt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tLtvKCCCTt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tLtvKCCCTt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tLtvi2nQad {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-tLtvi2nQad .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tLtvi2nQad div.b {
  padding-top: 2rem;
}
.cid-tLtvi2nQad H5 {
  color: #232323;
}
.cid-tWaGv5hHCz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-tWaGv5hHCz .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWaGv5hHCz .section-text {
  padding: 2rem 0;
}
.cid-tWaGv5hHCz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tWaGv5hHCz .inner-container {
    width: 100% !important;
  }
}
.cid-v7y6N9kRPk {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #db4af7;
}
.cid-v7y6N9kRPk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y6N9kRPk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y6N9kRPk .row {
  justify-content: center;
}
.cid-v7y6N9kRPk .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y6N9kRPk .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y6N9kRPk .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y6N9kRPk .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y6N9kRPk .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y6N9kRPk .mbr-text_1,
.cid-v7y6N9kRPk .mbr-text_2,
.cid-v7y6N9kRPk .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y6N9kRPk .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6N9kRPk .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y6N9kRPk .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y6N9kRPk .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y6N9kRPk .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6N9kRPk .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y6N9kRPk .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y6N9kRPk .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6N9kRPk .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7y6N9kRPk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y6N9kRPk .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y6N9kRPk .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y6N9kRPk .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7y6O6bNc4 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #db4af7;
}
.cid-v7y6O6bNc4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7y6O6bNc4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7y6O6bNc4 .row {
  justify-content: center;
}
.cid-v7y6O6bNc4 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7y6O6bNc4 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7y6O6bNc4 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7y6O6bNc4 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7y6O6bNc4 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7y6O6bNc4 .mbr-text_1,
.cid-v7y6O6bNc4 .mbr-text_2,
.cid-v7y6O6bNc4 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7y6O6bNc4 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6O6bNc4 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7y6O6bNc4 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y6O6bNc4 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y6O6bNc4 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6O6bNc4 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7y6O6bNc4 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7y6O6bNc4 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7y6O6bNc4 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7y6O6bNc4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7y6O6bNc4 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7y6O6bNc4 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7y6O6bNc4 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tWaGv5OHMS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-tWaGv5OHMS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWaGv5OHMS .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-tWaGv5OHMS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tWaGv5OHMS .inner-container {
    width: 100% !important;
  }
}
.cid-tWaGv5TG4s {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #db4af7;
}
.cid-tWaGv5YgNN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-tWaGv5YgNN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tWaGv5YgNN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWaGv5YgNN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWaGv5YgNN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tWaGv5YgNN .row > .row {
  display: block;
}
.cid-tWaGv5YgNN .mbr-gallery-item {
  width: 100%;
}
.cid-tWaGv5YgNN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tWaGv5YgNN .mbr-gallery-item > div {
  position: relative;
}
.cid-tWaGv5YgNN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tWaGv5YgNN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tWaGv5YgNN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tWaGv5YgNN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tWaGv6rxTI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db4af7;
}
.cid-tWaGv6rxTI .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWaGv6rxTI .section-text {
  padding: 2rem 0;
}
.cid-tWaGv6rxTI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tWaGv6rxTI .inner-container {
    width: 100% !important;
  }
}
.cid-tWaGv6rxTI .section-text DIV {
  text-align: center;
}
.cid-tWaGv6BeFF {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #db4af7;
}
.cid-tWaGv6BeFF .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tWaGv6BeFF div.b {
  padding-top: 2rem;
}
.cid-tWaGv6BeFF H5 {
  color: #232323;
}
.cid-tWaLaPCvf8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-tWaLaPCvf8 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWaLaPCvf8 .section-text {
  padding: 2rem 0;
}
.cid-tWaLaPCvf8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tWaLaPCvf8 .inner-container {
    width: 100% !important;
  }
}
.cid-v7vXkx3aaA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-v7vXkx3aaA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vXkx3aaA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vXkx3aaA .row {
  justify-content: center;
}
.cid-v7vXkx3aaA .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vXkx3aaA .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vXkx3aaA .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vXkx3aaA .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vXkx3aaA .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vXkx3aaA .mbr-text_1,
.cid-v7vXkx3aaA .mbr-text_2,
.cid-v7vXkx3aaA .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vXkx3aaA .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vXkx3aaA .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vXkx3aaA .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vXkx3aaA .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vXkx3aaA .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vXkx3aaA .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vXkx3aaA .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vXkx3aaA .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vXkx3aaA .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vXkx3aaA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vXkx3aaA .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vXkx3aaA .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vXkx3aaA .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vXlhVcAX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #cccccc;
}
.cid-v7vXlhVcAX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vXlhVcAX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vXlhVcAX .row {
  justify-content: center;
}
.cid-v7vXlhVcAX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vXlhVcAX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vXlhVcAX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vXlhVcAX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vXlhVcAX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vXlhVcAX .mbr-text_1,
.cid-v7vXlhVcAX .mbr-text_2,
.cid-v7vXlhVcAX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vXlhVcAX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vXlhVcAX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vXlhVcAX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vXlhVcAX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vXlhVcAX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vXlhVcAX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vXlhVcAX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vXlhVcAX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vXlhVcAX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vXlhVcAX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vXlhVcAX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vXlhVcAX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vXlhVcAX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-tWaLaQdL8i {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-tWaLaQdL8i .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tWaLaQdL8i .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-tWaLaQdL8i .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tWaLaQdL8i .inner-container {
    width: 100% !important;
  }
}
.cid-tWaLaQkrlw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-tWaLaQkrlw .mbr-section-subtitle {
  color: #767676;
}
.cid-tWaLaQkrlw .container-table {
  margin: 0 auto;
}
.cid-tWaLaQkrlw .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tWaLaQkrlw .dataTables_wrapper {
  display: block;
}
.cid-tWaLaQkrlw .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tWaLaQkrlw .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tWaLaQkrlw table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-tWaLaQkrlw table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tWaLaQkrlw table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-tWaLaQkrlw table td {
  border-top: 1px solid #232323;
}
.cid-tWaLaQkrlw table.table {
  background: #cccccc;
}
.cid-tWaLaQkrlw .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tWaLaQkrlw .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tWaLaQkrlw .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tWaLaQkrlw .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-tWaLaQkrlw .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tWaLaQkrlw .dataTables_filter {
    text-align: center;
  }
  .cid-tWaLaQkrlw .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tWaLaQkrlw .mbr-section-title {
  color: #232323;
}
.cid-tWaLaQkrlw .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-tWaLaQkrlw .body-item {
  text-align: center;
}
.cid-tWaLaQJ2sr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-tWaLaQJ2sr .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-tWaLaQJ2sr div.b {
  padding-top: 2rem;
}
.cid-tWaLaQJ2sr H5 {
  color: #232323;
}
.cid-u05zyJRYTO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u05zyJRYTO .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u05zyJRYTO .section-text {
  padding: 2rem 0;
}
.cid-u05zyJRYTO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u05zyJRYTO .inner-container {
    width: 100% !important;
  }
}
.cid-v6XuJTlBh1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6XuJTlBh1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XuJTlBh1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XuJTlBh1 .row {
  justify-content: center;
}
.cid-v6XuJTlBh1 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XuJTlBh1 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XuJTlBh1 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XuJTlBh1 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XuJTlBh1 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XuJTlBh1 .mbr-text_1,
.cid-v6XuJTlBh1 .mbr-text_2,
.cid-v6XuJTlBh1 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XuJTlBh1 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XuJTlBh1 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XuJTlBh1 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XuJTlBh1 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XuJTlBh1 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XuJTlBh1 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XuJTlBh1 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XuJTlBh1 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XuJTlBh1 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6XuJTlBh1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XuJTlBh1 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XuJTlBh1 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XuJTlBh1 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XuKRbVEa {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6XuKRbVEa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6XuKRbVEa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6XuKRbVEa .row {
  justify-content: center;
}
.cid-v6XuKRbVEa .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6XuKRbVEa .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6XuKRbVEa .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6XuKRbVEa .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6XuKRbVEa .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6XuKRbVEa .mbr-text_1,
.cid-v6XuKRbVEa .mbr-text_2,
.cid-v6XuKRbVEa .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6XuKRbVEa .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XuKRbVEa .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6XuKRbVEa .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XuKRbVEa .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XuKRbVEa .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XuKRbVEa .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6XuKRbVEa .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6XuKRbVEa .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6XuKRbVEa .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6XuKRbVEa .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6XuKRbVEa .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6XuKRbVEa .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6XuKRbVEa .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6XuM2vgWM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6XuM2vgWM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6XuM2vgWM .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6XuM2vgWM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6XuM2vgWM .inner-container {
    width: 100% !important;
  }
}
.cid-uyf6ygKLm5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uyf6ygKLm5 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uyf6ygKLm5 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-uyf6ygKLm5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uyf6ygKLm5 .inner-container {
    width: 100% !important;
  }
}
.cid-u05zyKuRyB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u05zyKuRyB .mbr-section-subtitle {
  color: #767676;
}
.cid-u05zyKuRyB .container-table {
  margin: 0 auto;
}
.cid-u05zyKuRyB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u05zyKuRyB .dataTables_wrapper {
  display: block;
}
.cid-u05zyKuRyB .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u05zyKuRyB .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u05zyKuRyB table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-u05zyKuRyB table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u05zyKuRyB table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-u05zyKuRyB table td {
  border-top: 1px solid #232323;
}
.cid-u05zyKuRyB .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u05zyKuRyB .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u05zyKuRyB .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u05zyKuRyB .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u05zyKuRyB .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u05zyKuRyB .dataTables_filter {
    text-align: center;
  }
  .cid-u05zyKuRyB .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u05zyKuRyB .mbr-section-title {
  color: #ff3366;
}
.cid-u05zyKuRyB .head-item {
  text-align: center;
  color: #232323;
}
.cid-u05zyKuRyB .body-item {
  text-align: center;
}
.cid-u05zyL0yaO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u05zyL0yaO .mbr-section-subtitle {
  color: #232323;
}
.cid-u05zyL0yaO .container-table {
  margin: 0 auto;
}
.cid-u05zyL0yaO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u05zyL0yaO .dataTables_wrapper {
  display: block;
}
.cid-u05zyL0yaO .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u05zyL0yaO .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u05zyL0yaO table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-u05zyL0yaO table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u05zyL0yaO table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-u05zyL0yaO table td {
  border-top: 1px solid #232323;
}
.cid-u05zyL0yaO .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u05zyL0yaO .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u05zyL0yaO .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u05zyL0yaO .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u05zyL0yaO .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u05zyL0yaO .dataTables_filter {
    text-align: center;
  }
  .cid-u05zyL0yaO .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u05zyL0yaO .mbr-section-title {
  color: #232323;
}
.cid-u05zyL0yaO .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-u05zyL0yaO .body-item {
  text-align: center;
}
.cid-u05zyLl6gO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u05zyLl6gO .mbr-section-subtitle {
  color: #232323;
}
.cid-u05zyLl6gO .container-table {
  margin: 0 auto;
}
.cid-u05zyLl6gO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u05zyLl6gO .dataTables_wrapper {
  display: block;
}
.cid-u05zyLl6gO .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u05zyLl6gO .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u05zyLl6gO table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-u05zyLl6gO table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u05zyLl6gO table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-u05zyLl6gO table td {
  border-top: 1px solid #232323;
}
.cid-u05zyLl6gO .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u05zyLl6gO .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u05zyLl6gO .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u05zyLl6gO .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u05zyLl6gO .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u05zyLl6gO .dataTables_filter {
    text-align: center;
  }
  .cid-u05zyLl6gO .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u05zyLl6gO .mbr-section-title {
  color: #232323;
}
.cid-u05zyLl6gO .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-u05zyLl6gO .body-item {
  text-align: center;
}
.cid-u05zyLD3VS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u05zyLD3VS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u05zyLD3VS .section-text {
  padding: 2rem 0;
}
.cid-u05zyLD3VS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u05zyLD3VS .inner-container {
    width: 100% !important;
  }
}
.cid-u05zyLD3VS .section-text DIV {
  text-align: center;
}
.cid-u05zyLNL05 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u05zyLNL05 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zyLNL05 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zyLNL05 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zyLNL05 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zyLNL05 .row > .row {
  display: block;
}
.cid-u05zyLNL05 .mbr-gallery-item {
  width: 100%;
}
.cid-u05zyLNL05 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zyLNL05 .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zyLNL05 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zyLNL05 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zyLNL05 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zyLNL05 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zyM52tg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u05zyMfmgB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u05zyMfmgB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zyMfmgB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zyMfmgB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zyMfmgB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zyMfmgB .row > .row {
  display: block;
}
.cid-u05zyMfmgB .mbr-gallery-item {
  width: 100%;
}
.cid-u05zyMfmgB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zyMfmgB .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zyMfmgB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zyMfmgB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zyMfmgB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zyMfmgB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zyMuGfD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u05zyMB6Z1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u05zyMB6Z1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zyMB6Z1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zyMB6Z1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zyMB6Z1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zyMB6Z1 .row > .row {
  display: block;
}
.cid-u05zyMB6Z1 .mbr-gallery-item {
  width: 100%;
}
.cid-u05zyMB6Z1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zyMB6Z1 .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zyMB6Z1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zyMB6Z1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zyMB6Z1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zyMB6Z1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zyMRRv0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u3wODryiwJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u3wODryiwJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u3wODryiwJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u3wODryiwJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u3wODryiwJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u3wODryiwJ .row > .row {
  display: block;
}
.cid-u3wODryiwJ .mbr-gallery-item {
  width: 100%;
}
.cid-u3wODryiwJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u3wODryiwJ .mbr-gallery-item > div {
  position: relative;
}
.cid-u3wODryiwJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u3wODryiwJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u3wODryiwJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u3wODryiwJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zyNeLbL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u05zyNmWmc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u05zyNmWmc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zyNmWmc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zyNmWmc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zyNmWmc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zyNmWmc .row > .row {
  display: block;
}
.cid-u05zyNmWmc .mbr-gallery-item {
  width: 100%;
}
.cid-u05zyNmWmc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zyNmWmc .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zyNmWmc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zyNmWmc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zyNmWmc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zyNmWmc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zyNHgLL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u05zyNPf8P {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u05zyNPf8P .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zyNPf8P .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zyNPf8P .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zyNPf8P .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zyNPf8P .row > .row {
  display: block;
}
.cid-u05zyNPf8P .mbr-gallery-item {
  width: 100%;
}
.cid-u05zyNPf8P .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zyNPf8P .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zyNPf8P .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zyNPf8P .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zyNPf8P .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zyNPf8P .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zyOaj0o {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u05zyOjX1J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u05zyOjX1J .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zyOjX1J .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zyOjX1J .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zyOjX1J .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zyOjX1J .row > .row {
  display: block;
}
.cid-u05zyOjX1J .mbr-gallery-item {
  width: 100%;
}
.cid-u05zyOjX1J .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zyOjX1J .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zyOjX1J .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zyOjX1J .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zyOjX1J .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zyOjX1J .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zyOxFYE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u05zyOHq6j {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u05zyOQafN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u05zyP0iy3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u05zyP0iy3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zyP0iy3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zyP0iy3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zyP0iy3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zyP0iy3 .row > .row {
  display: block;
}
.cid-u05zyP0iy3 .mbr-gallery-item {
  width: 100%;
}
.cid-u05zyP0iy3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zyP0iy3 .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zyP0iy3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zyP0iy3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zyP0iy3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zyP0iy3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zyPgtl2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u05zyPsaLT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u05zyPsaLT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zyPsaLT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zyPsaLT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zyPsaLT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zyPsaLT .row > .row {
  display: block;
}
.cid-u05zyPsaLT .mbr-gallery-item {
  width: 100%;
}
.cid-u05zyPsaLT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zyPsaLT .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zyPsaLT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zyPsaLT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zyPsaLT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zyPsaLT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zyPT7nl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u05zyQ4R0g {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u05zyQ4R0g .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zyQ4R0g .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zyQ4R0g .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zyQ4R0g .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zyQ4R0g .row > .row {
  display: block;
}
.cid-u05zyQ4R0g .mbr-gallery-item {
  width: 100%;
}
.cid-u05zyQ4R0g .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zyQ4R0g .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zyQ4R0g .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zyQ4R0g .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zyQ4R0g .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zyQ4R0g .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zyQvCAx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u05zyQM5jQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-u05zyQM5jQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zyQM5jQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zyQM5jQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zyQM5jQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zyQM5jQ .row > .row {
  display: block;
}
.cid-u05zyQM5jQ .mbr-gallery-item {
  width: 100%;
}
.cid-u05zyQM5jQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zyQM5jQ .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zyQM5jQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zyQM5jQ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zyQM5jQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zyQM5jQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zyRbG25 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u05zyRoaG7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-u05zyRoaG7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zyRoaG7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zyRoaG7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zyRoaG7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zyRoaG7 .row > .row {
  display: block;
}
.cid-u05zyRoaG7 .mbr-gallery-item {
  width: 100%;
}
.cid-u05zyRoaG7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zyRoaG7 .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zyRoaG7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zyRoaG7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zyRoaG7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zyRoaG7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zyRMVm4 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-u05zyRMVm4 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-u05zyRMVm4 div.b {
  padding-top: 2rem;
}
.cid-u05zyRMVm4 H5 {
  color: #232323;
}
.cid-u05zMUALBR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zMUALBR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u05zMUALBR .section-text {
  padding: 2rem 0;
}
.cid-u05zMUALBR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u05zMUALBR .inner-container {
    width: 100% !important;
  }
}
.cid-u05zMV2aTL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zMV2aTL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u05zMV2aTL .section-text {
  padding: 2rem 0;
}
.cid-u05zMV2aTL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u05zMV2aTL .inner-container {
    width: 100% !important;
  }
}
.cid-v72nfYKUOn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v72nfYKUOn .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v72nfYKUOn .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v72nfYKUOn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v72nfYKUOn .inner-container {
    width: 100% !important;
  }
}
.cid-v72nhVTgNc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v72nhVTgNc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72nhVTgNc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72nhVTgNc .row {
  justify-content: center;
}
.cid-v72nhVTgNc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72nhVTgNc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72nhVTgNc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72nhVTgNc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72nhVTgNc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72nhVTgNc .mbr-text_1,
.cid-v72nhVTgNc .mbr-text_2,
.cid-v72nhVTgNc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72nhVTgNc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72nhVTgNc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72nhVTgNc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72nhVTgNc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72nhVTgNc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72nhVTgNc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72nhVTgNc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72nhVTgNc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72nhVTgNc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v72nhVTgNc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72nhVTgNc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72nhVTgNc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72nhVTgNc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v72njo6VUK {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v72njo6VUK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v72njo6VUK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v72njo6VUK .row {
  justify-content: center;
}
.cid-v72njo6VUK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v72njo6VUK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v72njo6VUK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v72njo6VUK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v72njo6VUK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v72njo6VUK .mbr-text_1,
.cid-v72njo6VUK .mbr-text_2,
.cid-v72njo6VUK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v72njo6VUK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72njo6VUK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v72njo6VUK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72njo6VUK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72njo6VUK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72njo6VUK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v72njo6VUK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v72njo6VUK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v72njo6VUK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v72njo6VUK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v72njo6VUK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v72njo6VUK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v72njo6VUK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-u05zMVetLL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zMVetLL .mbr-section-subtitle {
  color: #767676;
}
.cid-u05zMVetLL .container-table {
  margin: 0 auto;
}
.cid-u05zMVetLL .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u05zMVetLL .dataTables_wrapper {
  display: block;
}
.cid-u05zMVetLL .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u05zMVetLL .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u05zMVetLL table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-u05zMVetLL table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u05zMVetLL table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-u05zMVetLL table td {
  border-top: 1px solid #232323;
}
.cid-u05zMVetLL table.table {
  background: #ecae15;
}
.cid-u05zMVetLL .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u05zMVetLL .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u05zMVetLL .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u05zMVetLL .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u05zMVetLL .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u05zMVetLL .dataTables_filter {
    text-align: center;
  }
  .cid-u05zMVetLL .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u05zMVetLL .mbr-section-title {
  color: #232323;
}
.cid-u05zMVetLL .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-u05zMVetLL .body-item {
  text-align: center;
}
.cid-u05zMVG5Jn {
  background: #ecae15;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-u05zMVG5Jn .image-block {
  margin: auto;
}
.cid-u05zMVG5Jn figcaption {
  position: relative;
}
.cid-u05zMVG5Jn figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u05zMVG5Jn .image-block {
    width: 100% !important;
  }
}
.cid-u05zMVNGX0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zMVNGX0 .mbr-section-subtitle {
  color: #232323;
}
.cid-u05zMVNGX0 .container-table {
  margin: 0 auto;
}
.cid-u05zMVNGX0 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u05zMVNGX0 .dataTables_wrapper {
  display: block;
}
.cid-u05zMVNGX0 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u05zMVNGX0 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u05zMVNGX0 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-u05zMVNGX0 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u05zMVNGX0 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-u05zMVNGX0 table td {
  border-top: 1px solid #232323;
}
.cid-u05zMVNGX0 table.table {
  background: #ecae15;
}
.cid-u05zMVNGX0 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u05zMVNGX0 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u05zMVNGX0 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u05zMVNGX0 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u05zMVNGX0 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u05zMVNGX0 .dataTables_filter {
    text-align: center;
  }
  .cid-u05zMVNGX0 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u05zMVNGX0 .mbr-section-title {
  color: #232323;
}
.cid-u05zMVNGX0 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-u05zMVNGX0 .body-item {
  text-align: center;
  color: #232323;
}
.cid-u05zMWa6P4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zMWa6P4 .mbr-section-subtitle {
  color: #232323;
}
.cid-u05zMWa6P4 .container-table {
  margin: 0 auto;
}
.cid-u05zMWa6P4 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u05zMWa6P4 .dataTables_wrapper {
  display: block;
}
.cid-u05zMWa6P4 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u05zMWa6P4 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u05zMWa6P4 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-u05zMWa6P4 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u05zMWa6P4 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-u05zMWa6P4 table td {
  border-top: 1px solid #232323;
}
.cid-u05zMWa6P4 table.table {
  background: #ecae15;
}
.cid-u05zMWa6P4 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u05zMWa6P4 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u05zMWa6P4 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u05zMWa6P4 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u05zMWa6P4 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u05zMWa6P4 .dataTables_filter {
    text-align: center;
  }
  .cid-u05zMWa6P4 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u05zMWa6P4 .mbr-section-title {
  color: #232323;
}
.cid-u05zMWa6P4 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-u05zMWa6P4 .body-item {
  text-align: center;
  color: #232323;
}
.cid-u05zMWygHw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05zMWE3Q4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zMWE3Q4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zMWE3Q4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zMWE3Q4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zMWE3Q4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zMWE3Q4 .row > .row {
  display: block;
}
.cid-u05zMWE3Q4 .mbr-gallery-item {
  width: 100%;
}
.cid-u05zMWE3Q4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zMWE3Q4 .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zMWE3Q4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zMWE3Q4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zMWE3Q4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zMWE3Q4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zMXg79X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05zMXpugy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zMXpugy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zMXpugy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zMXpugy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zMXpugy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zMXpugy .row > .row {
  display: block;
}
.cid-u05zMXpugy .mbr-gallery-item {
  width: 100%;
}
.cid-u05zMXpugy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zMXpugy .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zMXpugy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zMXpugy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zMXpugy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zMXpugy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zMXTfu9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05zMY4iby {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zMY4iby .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zMY4iby .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zMY4iby .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zMY4iby .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zMY4iby .row > .row {
  display: block;
}
.cid-u05zMY4iby .mbr-gallery-item {
  width: 100%;
}
.cid-u05zMY4iby .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zMY4iby .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zMY4iby .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zMY4iby .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zMY4iby .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zMY4iby .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zMYBbNN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05zMYOuEU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zMYOuEU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zMYOuEU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zMYOuEU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zMYOuEU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zMYOuEU .row > .row {
  display: block;
}
.cid-u05zMYOuEU .mbr-gallery-item {
  width: 100%;
}
.cid-u05zMYOuEU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zMYOuEU .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zMYOuEU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zMYOuEU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zMYOuEU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zMYOuEU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zMZqGNJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05zMZEo7Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zMZEo7Q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zMZEo7Q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zMZEo7Q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zMZEo7Q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zMZEo7Q .row > .row {
  display: block;
}
.cid-u05zMZEo7Q .mbr-gallery-item {
  width: 100%;
}
.cid-u05zMZEo7Q .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zMZEo7Q .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zMZEo7Q .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zMZEo7Q .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zMZEo7Q .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zMZEo7Q .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zN0gQ8I {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05zN0v8Pi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zN0v8Pi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zN0v8Pi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zN0v8Pi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zN0v8Pi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zN0v8Pi .row > .row {
  display: block;
}
.cid-u05zN0v8Pi .mbr-gallery-item {
  width: 100%;
}
.cid-u05zN0v8Pi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zN0v8Pi .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zN0v8Pi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zN0v8Pi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zN0v8Pi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zN0v8Pi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zN16fHE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05zN1o06J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zN1o06J .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zN1o06J .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zN1o06J .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zN1o06J .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zN1o06J .row > .row {
  display: block;
}
.cid-u05zN1o06J .mbr-gallery-item {
  width: 100%;
}
.cid-u05zN1o06J .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zN1o06J .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zN1o06J .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zN1o06J .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zN1o06J .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zN1o06J .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zN285g9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zN285g9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zN285g9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zN285g9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zN285g9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zN285g9 .row > .row {
  display: block;
}
.cid-u05zN285g9 .mbr-gallery-item {
  width: 100%;
}
.cid-u05zN285g9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zN285g9 .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zN285g9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zN285g9 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zN285g9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zN285g9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zN2uB4i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05zN2PYtE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zN2PYtE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zN2PYtE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zN2PYtE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zN2PYtE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zN2PYtE .row > .row {
  display: block;
}
.cid-u05zN2PYtE .mbr-gallery-item {
  width: 100%;
}
.cid-u05zN2PYtE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zN2PYtE .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zN2PYtE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zN2PYtE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zN2PYtE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zN2PYtE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zN3CfDf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zN3CfDf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zN3CfDf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zN3CfDf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zN3CfDf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zN3CfDf .row > .row {
  display: block;
}
.cid-u05zN3CfDf .mbr-gallery-item {
  width: 100%;
}
.cid-u05zN3CfDf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zN3CfDf .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zN3CfDf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zN3CfDf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zN3CfDf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zN3CfDf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zN45cX4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05zN4tui7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zN4tui7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zN4tui7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zN4tui7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zN4tui7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zN4tui7 .row > .row {
  display: block;
}
.cid-u05zN4tui7 .mbr-gallery-item {
  width: 100%;
}
.cid-u05zN4tui7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zN4tui7 .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zN4tui7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zN4tui7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zN4tui7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zN4tui7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zN5jYxW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zN5jYxW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zN5jYxW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zN5jYxW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zN5jYxW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zN5jYxW .row > .row {
  display: block;
}
.cid-u05zN5jYxW .mbr-gallery-item {
  width: 100%;
}
.cid-u05zN5jYxW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zN5jYxW .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zN5jYxW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zN5jYxW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zN5jYxW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zN5jYxW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zN5LR8X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05zN6coyD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zN6coyD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zN6coyD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zN6coyD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zN6coyD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zN6coyD .row > .row {
  display: block;
}
.cid-u05zN6coyD .mbr-gallery-item {
  width: 100%;
}
.cid-u05zN6coyD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zN6coyD .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zN6coyD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zN6coyD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zN6coyD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zN6coyD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zN76xHC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zN76xHC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zN76xHC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zN76xHC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zN76xHC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zN76xHC .row > .row {
  display: block;
}
.cid-u05zN76xHC .mbr-gallery-item {
  width: 100%;
}
.cid-u05zN76xHC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zN76xHC .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zN76xHC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zN76xHC .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zN76xHC .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zN76xHC .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zN7GT1w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05zN88Tq3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zN88Tq3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zN88Tq3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zN88Tq3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zN88Tq3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zN88Tq3 .row > .row {
  display: block;
}
.cid-u05zN88Tq3 .mbr-gallery-item {
  width: 100%;
}
.cid-u05zN88Tq3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zN88Tq3 .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zN88Tq3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zN88Tq3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zN88Tq3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zN88Tq3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zN94eJm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zN94eJm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zN94eJm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zN94eJm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zN94eJm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zN94eJm .row > .row {
  display: block;
}
.cid-u05zN94eJm .mbr-gallery-item {
  width: 100%;
}
.cid-u05zN94eJm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zN94eJm .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zN94eJm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zN94eJm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zN94eJm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zN94eJm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zN9Gryk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-u05zNaawbq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zNaawbq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zNaawbq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zNaawbq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zNaawbq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zNaawbq .row > .row {
  display: block;
}
.cid-u05zNaawbq .mbr-gallery-item {
  width: 100%;
}
.cid-u05zNaawbq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zNaawbq .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zNaawbq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zNaawbq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zNaawbq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zNaawbq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zNbbfic {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-u05zNbbfic .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05zNbbfic .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05zNbbfic .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05zNbbfic .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05zNbbfic .row > .row {
  display: block;
}
.cid-u05zNbbfic .mbr-gallery-item {
  width: 100%;
}
.cid-u05zNbbfic .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05zNbbfic .mbr-gallery-item > div {
  position: relative;
}
.cid-u05zNbbfic .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05zNbbfic .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05zNbbfic .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05zNbbfic .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05zNbMQTb {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-u05zNbMQTb .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-u05zNbMQTb div.b {
  padding-top: 2rem;
}
.cid-u05zNbMQTb H5 {
  color: #232323;
}
.cid-u05A49DfjW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A49DfjW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u05A49DfjW .section-text {
  padding: 2rem 0;
}
.cid-u05A49DfjW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u05A49DfjW .inner-container {
    width: 100% !important;
  }
}
.cid-v78DPIXPmm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #15ece0;
}
.cid-v78DPIXPmm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78DPIXPmm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78DPIXPmm .row {
  justify-content: center;
}
.cid-v78DPIXPmm .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78DPIXPmm .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78DPIXPmm .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78DPIXPmm .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78DPIXPmm .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78DPIXPmm .mbr-text_1,
.cid-v78DPIXPmm .mbr-text_2,
.cid-v78DPIXPmm .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78DPIXPmm .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78DPIXPmm .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78DPIXPmm .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78DPIXPmm .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78DPIXPmm .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78DPIXPmm .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78DPIXPmm .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78DPIXPmm .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78DPIXPmm .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v78DPIXPmm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78DPIXPmm .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78DPIXPmm .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78DPIXPmm .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78DQAX2Kg {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #15ece0;
}
.cid-v78DQAX2Kg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v78DQAX2Kg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v78DQAX2Kg .row {
  justify-content: center;
}
.cid-v78DQAX2Kg .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v78DQAX2Kg .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v78DQAX2Kg .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v78DQAX2Kg .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v78DQAX2Kg .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v78DQAX2Kg .mbr-text_1,
.cid-v78DQAX2Kg .mbr-text_2,
.cid-v78DQAX2Kg .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v78DQAX2Kg .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78DQAX2Kg .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v78DQAX2Kg .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78DQAX2Kg .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78DQAX2Kg .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78DQAX2Kg .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v78DQAX2Kg .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v78DQAX2Kg .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v78DQAX2Kg .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v78DQAX2Kg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v78DQAX2Kg .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v78DQAX2Kg .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v78DQAX2Kg .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v78DRCB1UK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78DRCB1UK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v78DRCB1UK .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v78DRCB1UK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v78DRCB1UK .inner-container {
    width: 100% !important;
  }
}
.cid-v78DSBk80G {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78DSBk80G .mbr-section-subtitle {
  color: #767676;
}
.cid-v78DSBk80G .container-table {
  margin: 0 auto;
}
.cid-v78DSBk80G .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v78DSBk80G .dataTables_wrapper {
  display: block;
}
.cid-v78DSBk80G .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v78DSBk80G .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v78DSBk80G table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v78DSBk80G table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v78DSBk80G table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v78DSBk80G table td {
  border-top: 1px solid #232323;
}
.cid-v78DSBk80G table.table {
  background: #15ece0;
}
.cid-v78DSBk80G .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v78DSBk80G .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v78DSBk80G .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v78DSBk80G .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v78DSBk80G .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v78DSBk80G .dataTables_filter {
    text-align: center;
  }
  .cid-v78DSBk80G .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v78DSBk80G .mbr-section-title {
  color: #232323;
}
.cid-v78DSBk80G .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v78DSBk80G .body-item {
  text-align: center;
}
.cid-u05A4aSmbj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A4aSmbj .mbr-section-subtitle {
  color: #232323;
}
.cid-u05A4aSmbj .container-table {
  margin: 0 auto;
}
.cid-u05A4aSmbj .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u05A4aSmbj .dataTables_wrapper {
  display: block;
}
.cid-u05A4aSmbj .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u05A4aSmbj .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u05A4aSmbj table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-u05A4aSmbj table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u05A4aSmbj table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-u05A4aSmbj table td {
  border-top: 1px solid #232323;
}
.cid-u05A4aSmbj table.table {
  background: #15ece0;
}
.cid-u05A4aSmbj .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u05A4aSmbj .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u05A4aSmbj .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u05A4aSmbj .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u05A4aSmbj .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u05A4aSmbj .dataTables_filter {
    text-align: center;
  }
  .cid-u05A4aSmbj .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u05A4aSmbj .mbr-section-title {
  color: #232323;
}
.cid-u05A4aSmbj .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-u05A4aSmbj .body-item {
  text-align: center;
  color: #232323;
}
.cid-u05A4b8aLD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A4b8aLD .mbr-section-subtitle {
  color: #232323;
}
.cid-u05A4b8aLD .container-table {
  margin: 0 auto;
}
.cid-u05A4b8aLD .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u05A4b8aLD .dataTables_wrapper {
  display: block;
}
.cid-u05A4b8aLD .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u05A4b8aLD .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u05A4b8aLD table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-u05A4b8aLD table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u05A4b8aLD table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-u05A4b8aLD table td {
  border-top: 1px solid #232323;
}
.cid-u05A4b8aLD table.table {
  background: #15ece0;
}
.cid-u05A4b8aLD .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u05A4b8aLD .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u05A4b8aLD .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u05A4b8aLD .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u05A4b8aLD .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u05A4b8aLD .dataTables_filter {
    text-align: center;
  }
  .cid-u05A4b8aLD .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u05A4b8aLD .mbr-section-title {
  color: #232323;
}
.cid-u05A4b8aLD .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-u05A4b8aLD .body-item {
  text-align: center;
  color: #232323;
}
.cid-u05A4boMjM {
  background: #15ece0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u05A4boMjM .image-block {
  margin: auto;
}
.cid-u05A4boMjM figcaption {
  position: relative;
}
.cid-u05A4boMjM figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u05A4boMjM .image-block {
    width: 100% !important;
  }
}
.cid-u05A4bwVTk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05A4bByYb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A4bByYb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05A4bByYb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05A4bByYb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05A4bByYb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05A4bByYb .row > .row {
  display: block;
}
.cid-u05A4bByYb .mbr-gallery-item {
  width: 100%;
}
.cid-u05A4bByYb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05A4bByYb .mbr-gallery-item > div {
  position: relative;
}
.cid-u05A4bByYb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05A4bByYb .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05A4bByYb .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05A4bByYb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05A4bZD1K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05A4c68IH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A4c68IH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05A4c68IH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05A4c68IH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05A4c68IH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05A4c68IH .row > .row {
  display: block;
}
.cid-u05A4c68IH .mbr-gallery-item {
  width: 100%;
}
.cid-u05A4c68IH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05A4c68IH .mbr-gallery-item > div {
  position: relative;
}
.cid-u05A4c68IH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05A4c68IH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05A4c68IH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05A4c68IH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05A4cjs2B {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05A4crUHq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A4crUHq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05A4crUHq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05A4crUHq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05A4crUHq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05A4crUHq .row > .row {
  display: block;
}
.cid-u05A4crUHq .mbr-gallery-item {
  width: 100%;
}
.cid-u05A4crUHq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05A4crUHq .mbr-gallery-item > div {
  position: relative;
}
.cid-u05A4crUHq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05A4crUHq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05A4crUHq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05A4crUHq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05A4cKcEr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05A4cRpAm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A4cRpAm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05A4cRpAm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05A4cRpAm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05A4cRpAm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05A4cRpAm .row > .row {
  display: block;
}
.cid-u05A4cRpAm .mbr-gallery-item {
  width: 100%;
}
.cid-u05A4cRpAm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05A4cRpAm .mbr-gallery-item > div {
  position: relative;
}
.cid-u05A4cRpAm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05A4cRpAm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05A4cRpAm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05A4cRpAm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05A4d64cC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05A4dfUlr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A4dfUlr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05A4dfUlr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05A4dfUlr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05A4dfUlr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05A4dfUlr .row > .row {
  display: block;
}
.cid-u05A4dfUlr .mbr-gallery-item {
  width: 100%;
}
.cid-u05A4dfUlr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05A4dfUlr .mbr-gallery-item > div {
  position: relative;
}
.cid-u05A4dfUlr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05A4dfUlr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05A4dfUlr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05A4dfUlr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05A4dywlm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05A4dHlVB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A4dHlVB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05A4dHlVB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05A4dHlVB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05A4dHlVB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05A4dHlVB .row > .row {
  display: block;
}
.cid-u05A4dHlVB .mbr-gallery-item {
  width: 100%;
}
.cid-u05A4dHlVB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05A4dHlVB .mbr-gallery-item > div {
  position: relative;
}
.cid-u05A4dHlVB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05A4dHlVB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05A4dHlVB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05A4dHlVB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05A4dWd6A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05A4e5Ak1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A4e5Ak1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05A4e5Ak1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05A4e5Ak1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05A4e5Ak1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05A4e5Ak1 .row > .row {
  display: block;
}
.cid-u05A4e5Ak1 .mbr-gallery-item {
  width: 100%;
}
.cid-u05A4e5Ak1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05A4e5Ak1 .mbr-gallery-item > div {
  position: relative;
}
.cid-u05A4e5Ak1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05A4e5Ak1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05A4e5Ak1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05A4e5Ak1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05A4eo3Om {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05A4eyBfq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A4eyBfq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05A4eyBfq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05A4eyBfq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05A4eyBfq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05A4eyBfq .row > .row {
  display: block;
}
.cid-u05A4eyBfq .mbr-gallery-item {
  width: 100%;
}
.cid-u05A4eyBfq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05A4eyBfq .mbr-gallery-item > div {
  position: relative;
}
.cid-u05A4eyBfq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05A4eyBfq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05A4eyBfq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05A4eyBfq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05A4eT0lk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05A4f74hX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A4f74hX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05A4f74hX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05A4f74hX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05A4f74hX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05A4f74hX .row > .row {
  display: block;
}
.cid-u05A4f74hX .mbr-gallery-item {
  width: 100%;
}
.cid-u05A4f74hX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05A4f74hX .mbr-gallery-item > div {
  position: relative;
}
.cid-u05A4f74hX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05A4f74hX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05A4f74hX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05A4f74hX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05A4ftOSj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05A4fGdkc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A4fGdkc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05A4fGdkc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05A4fGdkc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05A4fGdkc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05A4fGdkc .row > .row {
  display: block;
}
.cid-u05A4fGdkc .mbr-gallery-item {
  width: 100%;
}
.cid-u05A4fGdkc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05A4fGdkc .mbr-gallery-item > div {
  position: relative;
}
.cid-u05A4fGdkc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05A4fGdkc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05A4fGdkc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05A4fGdkc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05A4g3Cpw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05A4ghlXh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A4ghlXh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05A4ghlXh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05A4ghlXh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05A4ghlXh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05A4ghlXh .row > .row {
  display: block;
}
.cid-u05A4ghlXh .mbr-gallery-item {
  width: 100%;
}
.cid-u05A4ghlXh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05A4ghlXh .mbr-gallery-item > div {
  position: relative;
}
.cid-u05A4ghlXh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05A4ghlXh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05A4ghlXh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05A4ghlXh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05A4gJwoE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-u05A4gWq0i {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-u05A4gWq0i .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u05A4gWq0i .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u05A4gWq0i .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u05A4gWq0i .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u05A4gWq0i .row > .row {
  display: block;
}
.cid-u05A4gWq0i .mbr-gallery-item {
  width: 100%;
}
.cid-u05A4gWq0i .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u05A4gWq0i .mbr-gallery-item > div {
  position: relative;
}
.cid-u05A4gWq0i .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u05A4gWq0i .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u05A4gWq0i .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u05A4gWq0i .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u05A4hmNZt {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #15ece0;
}
.cid-u05A4hmNZt .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-u05A4hmNZt div.b {
  padding-top: 2rem;
}
.cid-u05A4hmNZt H5 {
  color: #232323;
}
.cid-u08ISJU9tk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08ISJU9tk .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u08ISJU9tk .section-text {
  padding: 2rem 0;
}
.cid-u08ISJU9tk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u08ISJU9tk .inner-container {
    width: 100% !important;
  }
}
.cid-v7vRKdZoNI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vRKdZoNI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vRKdZoNI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vRKdZoNI .row {
  justify-content: center;
}
.cid-v7vRKdZoNI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vRKdZoNI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vRKdZoNI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vRKdZoNI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vRKdZoNI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vRKdZoNI .mbr-text_1,
.cid-v7vRKdZoNI .mbr-text_2,
.cid-v7vRKdZoNI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vRKdZoNI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRKdZoNI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vRKdZoNI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vRKdZoNI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vRKdZoNI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRKdZoNI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vRKdZoNI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vRKdZoNI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRKdZoNI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vRKdZoNI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vRKdZoNI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vRKdZoNI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vRKdZoNI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vRLmWg3K {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vRLmWg3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vRLmWg3K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vRLmWg3K .row {
  justify-content: center;
}
.cid-v7vRLmWg3K .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vRLmWg3K .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vRLmWg3K .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vRLmWg3K .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vRLmWg3K .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vRLmWg3K .mbr-text_1,
.cid-v7vRLmWg3K .mbr-text_2,
.cid-v7vRLmWg3K .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vRLmWg3K .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRLmWg3K .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vRLmWg3K .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vRLmWg3K .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vRLmWg3K .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRLmWg3K .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vRLmWg3K .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vRLmWg3K .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRLmWg3K .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vRLmWg3K .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vRLmWg3K .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vRLmWg3K .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vRLmWg3K .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-u08ISKqfoG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08ISKqfoG .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u08ISKqfoG .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-u08ISKqfoG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u08ISKqfoG .inner-container {
    width: 100% !important;
  }
}
.cid-u08ISKwklK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-u08LHubkI2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08LHubkI2 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u08LHubkI2 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-u08LHubkI2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u08LHubkI2 .inner-container {
    width: 100% !important;
  }
}
.cid-u08LQiTaev {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08LQiTaev .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u08LQiTaev .section-text {
  padding: 2rem 0;
}
.cid-u08LQiTaev .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u08LQiTaev .inner-container {
    width: 100% !important;
  }
}
.cid-u08LRH5PH2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08LRH5PH2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u08LRH5PH2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u08LRH5PH2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u08LRH5PH2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u08LRH5PH2 .row > .row {
  display: block;
}
.cid-u08LRH5PH2 .mbr-gallery-item {
  width: 100%;
}
.cid-u08LRH5PH2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u08LRH5PH2 .mbr-gallery-item > div {
  position: relative;
}
.cid-u08LRH5PH2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u08LRH5PH2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u08LRH5PH2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u08LRH5PH2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u08LSBziRC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08LSBziRC .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u08LSBziRC .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-u08LSBziRC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u08LSBziRC .inner-container {
    width: 100% !important;
  }
}
.cid-u08LTCWYDW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08LTCWYDW .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u08LTCWYDW .section-text {
  padding: 2rem 0;
}
.cid-u08LTCWYDW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u08LTCWYDW .inner-container {
    width: 100% !important;
  }
}
.cid-u08LVqFsHc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08LVqFsHc .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u08LVqFsHc .section-text {
  padding: 2rem 0;
}
.cid-u08LVqFsHc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u08LVqFsHc .inner-container {
    width: 100% !important;
  }
}
.cid-u08LWyUSCp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08LWyUSCp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u08LWyUSCp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u08LWyUSCp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u08LWyUSCp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u08LWyUSCp .row > .row {
  display: block;
}
.cid-u08LWyUSCp .mbr-gallery-item {
  width: 100%;
}
.cid-u08LWyUSCp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u08LWyUSCp .mbr-gallery-item > div {
  position: relative;
}
.cid-u08LWyUSCp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u08LWyUSCp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u08LWyUSCp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u08LWyUSCp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u08LXrQUVq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08LXrQUVq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u08LXrQUVq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u08LXrQUVq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u08LXrQUVq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u08LXrQUVq .row > .row {
  display: block;
}
.cid-u08LXrQUVq .mbr-gallery-item {
  width: 100%;
}
.cid-u08LXrQUVq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u08LXrQUVq .mbr-gallery-item > div {
  position: relative;
}
.cid-u08LXrQUVq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u08LXrQUVq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u08LXrQUVq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u08LXrQUVq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u08LYlGQrh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08LYlGQrh .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u08LYlGQrh .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-u08LYlGQrh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u08LYlGQrh .inner-container {
    width: 100% !important;
  }
}
.cid-u08LZjybHc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08LZjybHc .mbr-section-subtitle {
  color: #767676;
}
.cid-u08LZjybHc .container-table {
  margin: 0 auto;
}
.cid-u08LZjybHc .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u08LZjybHc .dataTables_wrapper {
  display: block;
}
.cid-u08LZjybHc .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u08LZjybHc .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u08LZjybHc table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-u08LZjybHc table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u08LZjybHc table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-u08LZjybHc table td {
  border-top: 1px solid #232323;
}
.cid-u08LZjybHc table.table {
  background: #f7ed4a;
}
.cid-u08LZjybHc .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u08LZjybHc .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u08LZjybHc .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u08LZjybHc .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u08LZjybHc .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u08LZjybHc .dataTables_filter {
    text-align: center;
  }
  .cid-u08LZjybHc .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u08LZjybHc .mbr-section-title {
  color: #232323;
}
.cid-u08LZjybHc .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-u08LZjybHc .body-item {
  text-align: center;
}
.cid-u08ISMdZgj {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-u08ISMdZgj .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-u08ISMdZgj div.b {
  padding-top: 2rem;
}
.cid-u08ISMdZgj H5 {
  color: #232323;
}
.cid-u08JRLziQG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08JRLziQG .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u08JRLziQG .section-text {
  padding: 2rem 0;
}
.cid-u08JRLziQG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u08JRLziQG .inner-container {
    width: 100% !important;
  }
}
.cid-v7vRXi5KdX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vRXi5KdX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vRXi5KdX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vRXi5KdX .row {
  justify-content: center;
}
.cid-v7vRXi5KdX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vRXi5KdX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vRXi5KdX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vRXi5KdX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vRXi5KdX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vRXi5KdX .mbr-text_1,
.cid-v7vRXi5KdX .mbr-text_2,
.cid-v7vRXi5KdX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vRXi5KdX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRXi5KdX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vRXi5KdX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vRXi5KdX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vRXi5KdX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRXi5KdX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vRXi5KdX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vRXi5KdX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRXi5KdX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vRXi5KdX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vRXi5KdX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vRXi5KdX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vRXi5KdX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vRY6xZLq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vRY6xZLq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vRY6xZLq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vRY6xZLq .row {
  justify-content: center;
}
.cid-v7vRY6xZLq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vRY6xZLq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vRY6xZLq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vRY6xZLq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vRY6xZLq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vRY6xZLq .mbr-text_1,
.cid-v7vRY6xZLq .mbr-text_2,
.cid-v7vRY6xZLq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vRY6xZLq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRY6xZLq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vRY6xZLq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vRY6xZLq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vRY6xZLq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRY6xZLq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vRY6xZLq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vRY6xZLq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vRY6xZLq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vRY6xZLq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vRY6xZLq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vRY6xZLq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vRY6xZLq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-u08JRM5gwN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08JRM5gwN .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u08JRM5gwN .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-u08JRM5gwN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u08JRM5gwN .inner-container {
    width: 100% !important;
  }
}
.cid-u08JRMbI2z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-u08JRMgHpn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u08JRMgHpn .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u08JRMgHpn .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-u08JRMgHpn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u08JRMgHpn .inner-container {
    width: 100% !important;
  }
}
.cid-u0nWrBJv6v {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u0nWrBJv6v .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0nWrBJv6v .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0nWrBJv6v .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0nWrBJv6v .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0nWrBJv6v .row > .row {
  display: block;
}
.cid-u0nWrBJv6v .mbr-gallery-item {
  width: 100%;
}
.cid-u0nWrBJv6v .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u0nWrBJv6v .mbr-gallery-item > div {
  position: relative;
}
.cid-u0nWrBJv6v .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u0nWrBJv6v .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u0nWrBJv6v .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u0nWrBJv6v .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u08JRMm6Es {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-u08JRMm6Es .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-u08JRMm6Es div.b {
  padding-top: 2rem;
}
.cid-u08JRMm6Es H5 {
  color: #232323;
}
.cid-u0iA7Npohv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u0iA7Npohv .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u0iA7Npohv .section-text {
  padding: 2rem 0;
}
.cid-u0iA7Npohv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u0iA7Npohv .inner-container {
    width: 100% !important;
  }
}
.cid-v7vHdZM0Sc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vHdZM0Sc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vHdZM0Sc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vHdZM0Sc .row {
  justify-content: center;
}
.cid-v7vHdZM0Sc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vHdZM0Sc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vHdZM0Sc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vHdZM0Sc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vHdZM0Sc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vHdZM0Sc .mbr-text_1,
.cid-v7vHdZM0Sc .mbr-text_2,
.cid-v7vHdZM0Sc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vHdZM0Sc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vHdZM0Sc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vHdZM0Sc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vHdZM0Sc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vHdZM0Sc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vHdZM0Sc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vHdZM0Sc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vHdZM0Sc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vHdZM0Sc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vHdZM0Sc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vHdZM0Sc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vHdZM0Sc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vHdZM0Sc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vHeUHgT7 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vHeUHgT7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vHeUHgT7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vHeUHgT7 .row {
  justify-content: center;
}
.cid-v7vHeUHgT7 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vHeUHgT7 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vHeUHgT7 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vHeUHgT7 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vHeUHgT7 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vHeUHgT7 .mbr-text_1,
.cid-v7vHeUHgT7 .mbr-text_2,
.cid-v7vHeUHgT7 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vHeUHgT7 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vHeUHgT7 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vHeUHgT7 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vHeUHgT7 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vHeUHgT7 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vHeUHgT7 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vHeUHgT7 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vHeUHgT7 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vHeUHgT7 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vHeUHgT7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vHeUHgT7 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vHeUHgT7 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vHeUHgT7 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-u0iA7O9QkI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u0iA7O9QkI .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u0iA7O9QkI .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-u0iA7O9QkI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u0iA7O9QkI .inner-container {
    width: 100% !important;
  }
}
.cid-v8aERkG9Sr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aERkG9Sr .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aERkG9Sr .container-table {
  margin: 0 auto;
}
.cid-v8aERkG9Sr .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aERkG9Sr .dataTables_wrapper {
  display: block;
}
.cid-v8aERkG9Sr .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aERkG9Sr .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aERkG9Sr table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aERkG9Sr table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aERkG9Sr table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aERkG9Sr table td {
  border-top: 1px solid #232323;
}
.cid-v8aERkG9Sr .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aERkG9Sr .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aERkG9Sr .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aERkG9Sr .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aERkG9Sr .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aERkG9Sr .dataTables_filter {
    text-align: center;
  }
  .cid-v8aERkG9Sr .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aERkG9Sr .mbr-section-title {
  color: #232323;
}
.cid-v8aERkG9Sr .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aERkG9Sr .body-item {
  text-align: center;
}
.cid-u0iA7OfX9L {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-u0iA7OfX9L .mbr-section-subtitle {
  color: #767676;
}
.cid-u0iA7OfX9L .container-table {
  margin: 0 auto;
}
.cid-u0iA7OfX9L .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u0iA7OfX9L .dataTables_wrapper {
  display: block;
}
.cid-u0iA7OfX9L .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u0iA7OfX9L .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u0iA7OfX9L table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-u0iA7OfX9L table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u0iA7OfX9L table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-u0iA7OfX9L table td {
  border-top: 1px solid #232323;
}
.cid-u0iA7OfX9L .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u0iA7OfX9L .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u0iA7OfX9L .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u0iA7OfX9L .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-u0iA7OfX9L .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u0iA7OfX9L .dataTables_filter {
    text-align: center;
  }
  .cid-u0iA7OfX9L .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u0iA7OfX9L .mbr-section-title {
  color: #232323;
}
.cid-u0iA7OfX9L .head-item {
  text-align: center;
  color: #232323;
}
.cid-u0iA7OfX9L .body-item {
  text-align: center;
}
.cid-u0iA7OEvg0 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-u0iA7OEvg0 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-u0iA7OEvg0 div.b {
  padding-top: 2rem;
}
.cid-u0iA7OEvg0 H5 {
  color: #232323;
}
.cid-u0oqtfdqVG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-u0oqtfdqVG .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u0oqtfdqVG .section-text {
  padding: 2rem 0;
}
.cid-u0oqtfdqVG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u0oqtfdqVG .inner-container {
    width: 100% !important;
  }
}
.cid-v9XenJT7gf {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9XenJT7gf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9XenJT7gf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9XenJT7gf .row {
  justify-content: center;
}
.cid-v9XenJT7gf .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9XenJT7gf .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9XenJT7gf .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9XenJT7gf .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9XenJT7gf .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9XenJT7gf .mbr-text_1,
.cid-v9XenJT7gf .mbr-text_2,
.cid-v9XenJT7gf .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9XenJT7gf .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XenJT7gf .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9XenJT7gf .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XenJT7gf .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XenJT7gf .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XenJT7gf .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9XenJT7gf .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9XenJT7gf .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9XenJT7gf .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9XenJT7gf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9XenJT7gf .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9XenJT7gf .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9XenJT7gf .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9Xep0Jexn {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9Xep0Jexn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Xep0Jexn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Xep0Jexn .row {
  justify-content: center;
}
.cid-v9Xep0Jexn .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9Xep0Jexn .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9Xep0Jexn .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9Xep0Jexn .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9Xep0Jexn .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9Xep0Jexn .mbr-text_1,
.cid-v9Xep0Jexn .mbr-text_2,
.cid-v9Xep0Jexn .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9Xep0Jexn .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xep0Jexn .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xep0Jexn .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xep0Jexn .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xep0Jexn .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xep0Jexn .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9Xep0Jexn .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9Xep0Jexn .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9Xep0Jexn .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v9Xep0Jexn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9Xep0Jexn .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9Xep0Jexn .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9Xep0Jexn .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9Xeq3ruPT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9Xeq3ruPT .mbr-section-subtitle {
  color: #767676;
}
.cid-v9Xeq3ruPT .container-table {
  margin: 0 auto;
}
.cid-v9Xeq3ruPT .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9Xeq3ruPT .dataTables_wrapper {
  display: block;
}
.cid-v9Xeq3ruPT .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9Xeq3ruPT .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9Xeq3ruPT table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9Xeq3ruPT table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9Xeq3ruPT table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9Xeq3ruPT table td {
  border-top: 1px solid #232323;
}
.cid-v9Xeq3ruPT table.table {
  background: #3eddea;
}
.cid-v9Xeq3ruPT .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9Xeq3ruPT .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9Xeq3ruPT .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9Xeq3ruPT .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9Xeq3ruPT .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9Xeq3ruPT .dataTables_filter {
    text-align: center;
  }
  .cid-v9Xeq3ruPT .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9Xeq3ruPT .mbr-section-title {
  color: #ff3366;
}
.cid-v9Xeq3ruPT .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9Xeq3ruPT .body-item {
  text-align: center;
}
.cid-u0os4NUO4B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-u0os4NUO4B .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u0os4NUO4B .section-text {
  padding: 2rem 0;
}
.cid-u0os4NUO4B .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u0os4NUO4B .inner-container {
    width: 100% !important;
  }
}
.cid-u0oqtg3mzs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-u0oqtgaIGT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-u0oqtgaIGT .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u0oqtgaIGT .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-u0oqtgaIGT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-u0oqtgaIGT .inner-container {
    width: 100% !important;
  }
}
.cid-u0oqtggtXk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-u0oqtggtXk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u0oqtggtXk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0oqtggtXk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u0oqtggtXk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u0oqtggtXk .row > .row {
  display: block;
}
.cid-u0oqtggtXk .mbr-gallery-item {
  width: 100%;
}
.cid-u0oqtggtXk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u0oqtggtXk .mbr-gallery-item > div {
  position: relative;
}
.cid-u0oqtggtXk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u0oqtggtXk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u0oqtggtXk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u0oqtggtXk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u0oqtgMHqy {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-u0oqtgMHqy .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-u0oqtgMHqy div.b {
  padding-top: 2rem;
}
.cid-u0oqtgMHqy H5 {
  color: #232323;
}
.cid-uk80r1XOXU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uk80r1XOXU .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uk80r1XOXU .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-uk80r1XOXU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uk80r1XOXU .inner-container {
    width: 100% !important;
  }
}
.cid-v7ebaizcey {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7ebaizcey .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ebaizcey .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ebaizcey .row {
  justify-content: center;
}
.cid-v7ebaizcey .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ebaizcey .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ebaizcey .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ebaizcey .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ebaizcey .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ebaizcey .mbr-text_1,
.cid-v7ebaizcey .mbr-text_2,
.cid-v7ebaizcey .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ebaizcey .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebaizcey .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebaizcey .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ebaizcey .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ebaizcey .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebaizcey .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebaizcey .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ebaizcey .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebaizcey .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ebaizcey .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ebaizcey .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ebaizcey .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ebaizcey .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7ebb95522 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7ebb95522 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ebb95522 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ebb95522 .row {
  justify-content: center;
}
.cid-v7ebb95522 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ebb95522 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ebb95522 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ebb95522 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ebb95522 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ebb95522 .mbr-text_1,
.cid-v7ebb95522 .mbr-text_2,
.cid-v7ebb95522 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ebb95522 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebb95522 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebb95522 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7ebb95522 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7ebb95522 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebb95522 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebb95522 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ebb95522 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebb95522 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7ebb95522 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ebb95522 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ebb95522 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ebb95522 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uk80r2OAFB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uk80r2OAFB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uk80r2OAFB .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uk80r2OAFB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uk80r2OAFB .inner-container {
    width: 100% !important;
  }
}
.cid-v7ebcpqd9J {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7ebcpqd9J .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ebcpqd9J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ebcpqd9J .row {
  justify-content: center;
}
.cid-v7ebcpqd9J .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ebcpqd9J .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ebcpqd9J .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ebcpqd9J .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ebcpqd9J .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ebcpqd9J .mbr-text_1,
.cid-v7ebcpqd9J .mbr-text_2,
.cid-v7ebcpqd9J .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ebcpqd9J .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebcpqd9J .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebcpqd9J .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7ebcpqd9J .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7ebcpqd9J .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebcpqd9J .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebcpqd9J .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ebcpqd9J .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebcpqd9J .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7ebcpqd9J .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ebcpqd9J .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7ebcpqd9J .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ebcpqd9J .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uk80r2XH6i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uk80r31UbG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uk80r31UbG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uk80r31UbG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uk80r31UbG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uk80r31UbG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uk80r31UbG .row > .row {
  display: block;
}
.cid-uk80r31UbG .mbr-gallery-item {
  width: 100%;
}
.cid-uk80r31UbG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uk80r31UbG .mbr-gallery-item > div {
  position: relative;
}
.cid-uk80r31UbG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uk80r31UbG .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uk80r31UbG .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uk80r31UbG .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uk80r3oNKT {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-uk80r3oNKT .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uk80r3oNKT div.b {
  padding-top: 2rem;
}
.cid-uvALgQmfSy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uvALgQmfSy .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uvALgQmfSy .section-text {
  padding: 2rem 0;
}
.cid-uvALgQmfSy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uvALgQmfSy .inner-container {
    width: 100% !important;
  }
}
.cid-v7vSbBHEeq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vSbBHEeq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vSbBHEeq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vSbBHEeq .row {
  justify-content: center;
}
.cid-v7vSbBHEeq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vSbBHEeq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vSbBHEeq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vSbBHEeq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vSbBHEeq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vSbBHEeq .mbr-text_1,
.cid-v7vSbBHEeq .mbr-text_2,
.cid-v7vSbBHEeq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vSbBHEeq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSbBHEeq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vSbBHEeq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vSbBHEeq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vSbBHEeq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSbBHEeq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vSbBHEeq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vSbBHEeq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSbBHEeq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vSbBHEeq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vSbBHEeq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vSbBHEeq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vSbBHEeq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vScwPu0M {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vScwPu0M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vScwPu0M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vScwPu0M .row {
  justify-content: center;
}
.cid-v7vScwPu0M .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vScwPu0M .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vScwPu0M .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vScwPu0M .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vScwPu0M .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vScwPu0M .mbr-text_1,
.cid-v7vScwPu0M .mbr-text_2,
.cid-v7vScwPu0M .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vScwPu0M .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vScwPu0M .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vScwPu0M .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vScwPu0M .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vScwPu0M .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vScwPu0M .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vScwPu0M .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vScwPu0M .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vScwPu0M .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vScwPu0M .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vScwPu0M .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vScwPu0M .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vScwPu0M .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uvALgRllwp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uvALgRllwp .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uvALgRllwp .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uvALgRllwp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uvALgRllwp .inner-container {
    width: 100% !important;
  }
}
.cid-uvALgRqp7U {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-uvALY3w9Eu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uvALY3w9Eu .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uvALY3w9Eu .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-uvALY3w9Eu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uvALY3w9Eu .inner-container {
    width: 100% !important;
  }
}
.cid-uvALYWwDXL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uvALYWwDXL .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uvALYWwDXL .section-text {
  padding: 2rem 0;
}
.cid-uvALYWwDXL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uvALYWwDXL .inner-container {
    width: 100% !important;
  }
}
.cid-uvALgScWOu {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-uvALgScWOu .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uvALgScWOu div.b {
  padding-top: 2rem;
}
.cid-uvALgScWOu H5 {
  color: #232323;
}
.cid-uvAMr52Ga1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uvAMr52Ga1 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uvAMr52Ga1 .section-text {
  padding: 2rem 0;
}
.cid-uvAMr52Ga1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uvAMr52Ga1 .inner-container {
    width: 100% !important;
  }
}
.cid-v7vSIvl0im {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vSIvl0im .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vSIvl0im .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vSIvl0im .row {
  justify-content: center;
}
.cid-v7vSIvl0im .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vSIvl0im .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vSIvl0im .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vSIvl0im .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vSIvl0im .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vSIvl0im .mbr-text_1,
.cid-v7vSIvl0im .mbr-text_2,
.cid-v7vSIvl0im .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vSIvl0im .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSIvl0im .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vSIvl0im .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vSIvl0im .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vSIvl0im .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSIvl0im .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vSIvl0im .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vSIvl0im .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSIvl0im .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vSIvl0im .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vSIvl0im .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vSIvl0im .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vSIvl0im .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vSJuVqXG {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vSJuVqXG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vSJuVqXG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vSJuVqXG .row {
  justify-content: center;
}
.cid-v7vSJuVqXG .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vSJuVqXG .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vSJuVqXG .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vSJuVqXG .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vSJuVqXG .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vSJuVqXG .mbr-text_1,
.cid-v7vSJuVqXG .mbr-text_2,
.cid-v7vSJuVqXG .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vSJuVqXG .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSJuVqXG .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vSJuVqXG .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vSJuVqXG .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vSJuVqXG .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSJuVqXG .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vSJuVqXG .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vSJuVqXG .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSJuVqXG .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vSJuVqXG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vSJuVqXG .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vSJuVqXG .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vSJuVqXG .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uvAMr5PhdT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uvAMr5PhdT .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uvAMr5PhdT .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uvAMr5PhdT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uvAMr5PhdT .inner-container {
    width: 100% !important;
  }
}
.cid-uvAMr5Yzwn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-uvAMr62fC5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uvAMr62fC5 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uvAMr62fC5 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-uvAMr62fC5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uvAMr62fC5 .inner-container {
    width: 100% !important;
  }
}
.cid-uvAMr67kEq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uvAMr67kEq .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uvAMr67kEq .section-text {
  padding: 2rem 0;
}
.cid-uvAMr67kEq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uvAMr67kEq .inner-container {
    width: 100% !important;
  }
}
.cid-uvAOJu5EYr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uvAOJu5EYr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uvAOJu5EYr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uvAOJu5EYr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uvAOJu5EYr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uvAOJu5EYr .row > .row {
  display: block;
}
.cid-uvAOJu5EYr .mbr-gallery-item {
  width: 100%;
}
.cid-uvAOJu5EYr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uvAOJu5EYr .mbr-gallery-item > div {
  position: relative;
}
.cid-uvAOJu5EYr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uvAOJu5EYr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uvAOJu5EYr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uvAOJu5EYr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uvAMr6cK5I {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-uvAMr6cK5I .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uvAMr6cK5I div.b {
  padding-top: 2rem;
}
.cid-uvAMr6cK5I H5 {
  color: #232323;
}
.cid-uvASXruJoq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uvASXruJoq .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uvASXruJoq .section-text {
  padding: 2rem 0;
}
.cid-uvASXruJoq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uvASXruJoq .inner-container {
    width: 100% !important;
  }
}
.cid-v7vSTFO2AP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vSTFO2AP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vSTFO2AP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vSTFO2AP .row {
  justify-content: center;
}
.cid-v7vSTFO2AP .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vSTFO2AP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vSTFO2AP .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vSTFO2AP .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vSTFO2AP .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vSTFO2AP .mbr-text_1,
.cid-v7vSTFO2AP .mbr-text_2,
.cid-v7vSTFO2AP .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vSTFO2AP .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSTFO2AP .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vSTFO2AP .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vSTFO2AP .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vSTFO2AP .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSTFO2AP .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vSTFO2AP .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vSTFO2AP .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSTFO2AP .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vSTFO2AP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vSTFO2AP .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vSTFO2AP .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vSTFO2AP .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vSUnI7ys {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vSUnI7ys .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vSUnI7ys .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vSUnI7ys .row {
  justify-content: center;
}
.cid-v7vSUnI7ys .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vSUnI7ys .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vSUnI7ys .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vSUnI7ys .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vSUnI7ys .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vSUnI7ys .mbr-text_1,
.cid-v7vSUnI7ys .mbr-text_2,
.cid-v7vSUnI7ys .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vSUnI7ys .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSUnI7ys .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vSUnI7ys .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vSUnI7ys .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vSUnI7ys .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSUnI7ys .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vSUnI7ys .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vSUnI7ys .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSUnI7ys .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vSUnI7ys .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vSUnI7ys .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vSUnI7ys .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vSUnI7ys .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uvASXsfInT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uvASXsfInT .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uvASXsfInT .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uvASXsfInT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uvASXsfInT .inner-container {
    width: 100% !important;
  }
}
.cid-uvASXsk2B7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-uvAVbmzIb4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uvAVbmzIb4 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uvAVbmzIb4 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-uvAVbmzIb4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uvAVbmzIb4 .inner-container {
    width: 100% !important;
  }
}
.cid-uvASXsuCGw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uvASXsuCGw .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uvASXsuCGw .section-text {
  padding: 2rem 0;
}
.cid-uvASXsuCGw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uvASXsuCGw .inner-container {
    width: 100% !important;
  }
}
.cid-uvATg7UlgB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uvATg7UlgB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uvATg7UlgB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uvATg7UlgB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uvATg7UlgB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uvATg7UlgB .row > .row {
  display: block;
}
.cid-uvATg7UlgB .mbr-gallery-item {
  width: 100%;
}
.cid-uvATg7UlgB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uvATg7UlgB .mbr-gallery-item > div {
  position: relative;
}
.cid-uvATg7UlgB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uvATg7UlgB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uvATg7UlgB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uvATg7UlgB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uvASXsRzhA {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-uvASXsRzhA .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uvASXsRzhA div.b {
  padding-top: 2rem;
}
.cid-uvASXsRzhA H5 {
  color: #232323;
}
.cid-uy3CwsIwxH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uy3CwsIwxH .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy3CwsIwxH .section-text {
  padding: 2rem 0;
}
.cid-uy3CwsIwxH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy3CwsIwxH .inner-container {
    width: 100% !important;
  }
}
.cid-uy3CwtgvUU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uy3CwtgvUU .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy3CwtgvUU .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-uy3CwtgvUU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy3CwtgvUU .inner-container {
    width: 100% !important;
  }
}
.cid-uG0dCQ70nC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-uG0dCQ70nC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG0dCQ70nC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG0dCQ70nC .row {
  justify-content: center;
}
.cid-uG0dCQ70nC .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uG0dCQ70nC .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uG0dCQ70nC .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uG0dCQ70nC .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uG0dCQ70nC .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uG0dCQ70nC .mbr-text_1,
.cid-uG0dCQ70nC .mbr-text_2,
.cid-uG0dCQ70nC .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uG0dCQ70nC .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uG0dCQ70nC .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uG0dCQ70nC .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uG0dCQ70nC .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uG0dCQ70nC .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uG0dCQ70nC .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uG0dCQ70nC .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uG0dCQ70nC .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uG0dCQ70nC .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uG0dCQ70nC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uG0dCQ70nC .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uG0dCQ70nC .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uG0dCQ70nC .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHjWLl894w {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-uHjWLl894w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHjWLl894w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHjWLl894w .row {
  justify-content: center;
}
.cid-uHjWLl894w .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHjWLl894w .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHjWLl894w .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHjWLl894w .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHjWLl894w .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHjWLl894w .mbr-text_1,
.cid-uHjWLl894w .mbr-text_2,
.cid-uHjWLl894w .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHjWLl894w .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjWLl894w .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHjWLl894w .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjWLl894w .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjWLl894w .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjWLl894w .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHjWLl894w .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHjWLl894w .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHjWLl894w .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHjWLl894w .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHjWLl894w .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHjWLl894w .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHjWLl894w .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uy3Cwttbwg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uy3Cwttbwg .mbr-section-subtitle {
  color: #767676;
}
.cid-uy3Cwttbwg .container-table {
  margin: 0 auto;
}
.cid-uy3Cwttbwg .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uy3Cwttbwg .dataTables_wrapper {
  display: block;
}
.cid-uy3Cwttbwg .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uy3Cwttbwg .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uy3Cwttbwg table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uy3Cwttbwg table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uy3Cwttbwg table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uy3Cwttbwg table td {
  border-top: 1px solid #232323;
}
.cid-uy3Cwttbwg .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uy3Cwttbwg .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uy3Cwttbwg .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uy3Cwttbwg .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uy3Cwttbwg .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uy3Cwttbwg .dataTables_filter {
    text-align: center;
  }
  .cid-uy3Cwttbwg .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uy3Cwttbwg .mbr-section-title {
  color: #ff3366;
}
.cid-uy3Cwttbwg .head-item {
  text-align: center;
  color: #232323;
}
.cid-uy3Cwttbwg .body-item {
  text-align: center;
}
.cid-uy3CwtXMDF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uy3CwtXMDF .mbr-section-subtitle {
  color: #232323;
}
.cid-uy3CwtXMDF .container-table {
  margin: 0 auto;
}
.cid-uy3CwtXMDF .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uy3CwtXMDF .dataTables_wrapper {
  display: block;
}
.cid-uy3CwtXMDF .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uy3CwtXMDF .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uy3CwtXMDF table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uy3CwtXMDF table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uy3CwtXMDF table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uy3CwtXMDF table td {
  border-top: 1px solid #232323;
}
.cid-uy3CwtXMDF .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uy3CwtXMDF .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uy3CwtXMDF .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uy3CwtXMDF .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uy3CwtXMDF .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uy3CwtXMDF .dataTables_filter {
    text-align: center;
  }
  .cid-uy3CwtXMDF .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uy3CwtXMDF .mbr-section-title {
  color: #232323;
}
.cid-uy3CwtXMDF .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-uy3CwtXMDF .body-item {
  text-align: center;
}
.cid-uy3Cwulz39 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uy3Cwulz39 .mbr-section-subtitle {
  color: #232323;
}
.cid-uy3Cwulz39 .container-table {
  margin: 0 auto;
}
.cid-uy3Cwulz39 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uy3Cwulz39 .dataTables_wrapper {
  display: block;
}
.cid-uy3Cwulz39 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uy3Cwulz39 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uy3Cwulz39 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uy3Cwulz39 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uy3Cwulz39 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uy3Cwulz39 table td {
  border-top: 1px solid #232323;
}
.cid-uy3Cwulz39 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uy3Cwulz39 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uy3Cwulz39 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uy3Cwulz39 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uy3Cwulz39 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uy3Cwulz39 .dataTables_filter {
    text-align: center;
  }
  .cid-uy3Cwulz39 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uy3Cwulz39 .mbr-section-title {
  color: #232323;
}
.cid-uy3Cwulz39 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-uy3Cwulz39 .body-item {
  text-align: center;
}
.cid-uy3CwuJpqr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uy3CwuJpqr .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy3CwuJpqr .section-text {
  padding: 2rem 0;
}
.cid-uy3CwuJpqr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy3CwuJpqr .inner-container {
    width: 100% !important;
  }
}
.cid-uy3CwuJpqr .section-text DIV {
  text-align: center;
}
.cid-uy3CwuQMc7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uy3CwuQMc7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy3CwuQMc7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy3CwuQMc7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy3CwuQMc7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy3CwuQMc7 .row > .row {
  display: block;
}
.cid-uy3CwuQMc7 .mbr-gallery-item {
  width: 100%;
}
.cid-uy3CwuQMc7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy3CwuQMc7 .mbr-gallery-item > div {
  position: relative;
}
.cid-uy3CwuQMc7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy3CwuQMc7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy3CwuQMc7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy3CwuQMc7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3Cwv87sf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3Cwve1V8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uy3Cwve1V8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy3Cwve1V8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy3Cwve1V8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy3Cwve1V8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy3Cwve1V8 .row > .row {
  display: block;
}
.cid-uy3Cwve1V8 .mbr-gallery-item {
  width: 100%;
}
.cid-uy3Cwve1V8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy3Cwve1V8 .mbr-gallery-item > div {
  position: relative;
}
.cid-uy3Cwve1V8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy3Cwve1V8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy3Cwve1V8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy3Cwve1V8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3CwvykTJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwvHdvw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwvHdvw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy3CwvHdvw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy3CwvHdvw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy3CwvHdvw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy3CwvHdvw .row > .row {
  display: block;
}
.cid-uy3CwvHdvw .mbr-gallery-item {
  width: 100%;
}
.cid-uy3CwvHdvw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy3CwvHdvw .mbr-gallery-item > div {
  position: relative;
}
.cid-uy3CwvHdvw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy3CwvHdvw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy3CwvHdvw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy3CwvHdvw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3CwvWOZv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3Cww3aKB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3Cww3aKB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy3Cww3aKB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy3Cww3aKB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy3Cww3aKB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy3Cww3aKB .row > .row {
  display: block;
}
.cid-uy3Cww3aKB .mbr-gallery-item {
  width: 100%;
}
.cid-uy3Cww3aKB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy3Cww3aKB .mbr-gallery-item > div {
  position: relative;
}
.cid-uy3Cww3aKB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy3Cww3aKB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy3Cww3aKB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy3Cww3aKB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3Cwwpt9p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwwxXpK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwwxXpK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy3CwwxXpK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy3CwwxXpK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy3CwwxXpK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy3CwwxXpK .row > .row {
  display: block;
}
.cid-uy3CwwxXpK .mbr-gallery-item {
  width: 100%;
}
.cid-uy3CwwxXpK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy3CwwxXpK .mbr-gallery-item > div {
  position: relative;
}
.cid-uy3CwwxXpK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy3CwwxXpK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy3CwwxXpK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy3CwwxXpK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3CwwMrp5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwwVdcV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwwVdcV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy3CwwVdcV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy3CwwVdcV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy3CwwVdcV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy3CwwVdcV .row > .row {
  display: block;
}
.cid-uy3CwwVdcV .mbr-gallery-item {
  width: 100%;
}
.cid-uy3CwwVdcV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy3CwwVdcV .mbr-gallery-item > div {
  position: relative;
}
.cid-uy3CwwVdcV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy3CwwVdcV .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy3CwwVdcV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy3CwwVdcV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3Cwxg19R {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uMsMbTB5Hk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwxHfSO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwxQdTc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwxYkQE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwyayVp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uy3CwyayVp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy3CwyayVp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy3CwyayVp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy3CwyayVp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy3CwyayVp .row > .row {
  display: block;
}
.cid-uy3CwyayVp .mbr-gallery-item {
  width: 100%;
}
.cid-uy3CwyayVp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy3CwyayVp .mbr-gallery-item > div {
  position: relative;
}
.cid-uy3CwyayVp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy3CwyayVp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy3CwyayVp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy3CwyayVp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3Cwyw88R {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwyHhoT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uy3CwyHhoT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy3CwyHhoT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy3CwyHhoT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy3CwyHhoT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy3CwyHhoT .row > .row {
  display: block;
}
.cid-uy3CwyHhoT .mbr-gallery-item {
  width: 100%;
}
.cid-uy3CwyHhoT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy3CwyHhoT .mbr-gallery-item > div {
  position: relative;
}
.cid-uy3CwyHhoT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy3CwyHhoT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy3CwyHhoT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy3CwyHhoT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3CwyZJX3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3Cwz9Ge3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-uy3Cwz9Ge3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy3Cwz9Ge3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy3Cwz9Ge3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy3Cwz9Ge3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy3Cwz9Ge3 .row > .row {
  display: block;
}
.cid-uy3Cwz9Ge3 .mbr-gallery-item {
  width: 100%;
}
.cid-uy3Cwz9Ge3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy3Cwz9Ge3 .mbr-gallery-item > div {
  position: relative;
}
.cid-uy3Cwz9Ge3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy3Cwz9Ge3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy3Cwz9Ge3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy3Cwz9Ge3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3CwzCqrz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwzP6RH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwzP6RH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy3CwzP6RH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy3CwzP6RH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy3CwzP6RH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy3CwzP6RH .row > .row {
  display: block;
}
.cid-uy3CwzP6RH .mbr-gallery-item {
  width: 100%;
}
.cid-uy3CwzP6RH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy3CwzP6RH .mbr-gallery-item > div {
  position: relative;
}
.cid-uy3CwzP6RH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy3CwzP6RH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy3CwzP6RH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy3CwzP6RH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3CwAqEDC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwAHEID {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-uy3CwAHEID .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy3CwAHEID .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy3CwAHEID .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy3CwAHEID .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy3CwAHEID .row > .row {
  display: block;
}
.cid-uy3CwAHEID .mbr-gallery-item {
  width: 100%;
}
.cid-uy3CwAHEID .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy3CwAHEID .mbr-gallery-item > div {
  position: relative;
}
.cid-uy3CwAHEID .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy3CwAHEID .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy3CwAHEID .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy3CwAHEID .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3CwBuEmc {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-uy3CwBuEmc .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uy3CwBuEmc div.b {
  padding-top: 2rem;
}
.cid-uy3CwBuEmc H5 {
  color: #232323;
}
.cid-uy3ImfPV2Y {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uy3ImfPV2Y .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy3ImfPV2Y .section-text {
  padding: 2rem 0;
}
.cid-uy3ImfPV2Y .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy3ImfPV2Y .inner-container {
    width: 100% !important;
  }
}
.cid-uy3ImguLpP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uy3ImguLpP .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy3ImguLpP .section-text {
  padding: 2rem 0;
}
.cid-uy3ImguLpP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy3ImguLpP .inner-container {
    width: 100% !important;
  }
}
.cid-uG3rzer9Lr {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-uG3rzer9Lr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG3rzer9Lr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG3rzer9Lr .row {
  justify-content: center;
}
.cid-uG3rzer9Lr .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uG3rzer9Lr .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uG3rzer9Lr .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uG3rzer9Lr .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uG3rzer9Lr .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uG3rzer9Lr .mbr-text_1,
.cid-uG3rzer9Lr .mbr-text_2,
.cid-uG3rzer9Lr .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uG3rzer9Lr .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uG3rzer9Lr .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uG3rzer9Lr .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uG3rzer9Lr .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uG3rzer9Lr .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uG3rzer9Lr .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uG3rzer9Lr .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uG3rzer9Lr .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uG3rzer9Lr .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uG3rzer9Lr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uG3rzer9Lr .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uG3rzer9Lr .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uG3rzer9Lr .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uG3rOeWwek {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-uG3rOeWwek .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG3rOeWwek .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG3rOeWwek .row {
  justify-content: center;
}
.cid-uG3rOeWwek .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uG3rOeWwek .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uG3rOeWwek .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uG3rOeWwek .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uG3rOeWwek .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uG3rOeWwek .mbr-text_1,
.cid-uG3rOeWwek .mbr-text_2,
.cid-uG3rOeWwek .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uG3rOeWwek .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uG3rOeWwek .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uG3rOeWwek .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uG3rOeWwek .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uG3rOeWwek .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uG3rOeWwek .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uG3rOeWwek .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uG3rOeWwek .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uG3rOeWwek .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uG3rOeWwek .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uG3rOeWwek .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uG3rOeWwek .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uG3rOeWwek .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uy3ImgG0BK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uy3ImgG0BK .mbr-section-subtitle {
  color: #767676;
}
.cid-uy3ImgG0BK .container-table {
  margin: 0 auto;
}
.cid-uy3ImgG0BK .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uy3ImgG0BK .dataTables_wrapper {
  display: block;
}
.cid-uy3ImgG0BK .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uy3ImgG0BK .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uy3ImgG0BK table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uy3ImgG0BK table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uy3ImgG0BK table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uy3ImgG0BK table td {
  border-top: 1px solid #232323;
}
.cid-uy3ImgG0BK table.table {
  background: #ecae15;
}
.cid-uy3ImgG0BK .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uy3ImgG0BK .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uy3ImgG0BK .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uy3ImgG0BK .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uy3ImgG0BK .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uy3ImgG0BK .dataTables_filter {
    text-align: center;
  }
  .cid-uy3ImgG0BK .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uy3ImgG0BK .mbr-section-title {
  color: #232323;
}
.cid-uy3ImgG0BK .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-uy3ImgG0BK .body-item {
  text-align: center;
}
.cid-uy3Imh8rav {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uy3Imh8rav .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy3Imh8rav .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy3Imh8rav .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy3Imh8rav .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy3Imh8rav .row > .row {
  display: block;
}
.cid-uy3Imh8rav .mbr-gallery-item {
  width: 100%;
}
.cid-uy3Imh8rav .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy3Imh8rav .mbr-gallery-item > div {
  position: relative;
}
.cid-uy3Imh8rav .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy3Imh8rav .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy3Imh8rav .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy3Imh8rav .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3ImhpBlX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uy3ImhpBlX .mbr-section-subtitle {
  color: #232323;
}
.cid-uy3ImhpBlX .container-table {
  margin: 0 auto;
}
.cid-uy3ImhpBlX .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uy3ImhpBlX .dataTables_wrapper {
  display: block;
}
.cid-uy3ImhpBlX .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uy3ImhpBlX .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uy3ImhpBlX table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uy3ImhpBlX table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uy3ImhpBlX table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uy3ImhpBlX table td {
  border-top: 1px solid #232323;
}
.cid-uy3ImhpBlX table.table {
  background: #ecae15;
}
.cid-uy3ImhpBlX .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uy3ImhpBlX .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uy3ImhpBlX .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uy3ImhpBlX .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uy3ImhpBlX .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uy3ImhpBlX .dataTables_filter {
    text-align: center;
  }
  .cid-uy3ImhpBlX .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uy3ImhpBlX .mbr-section-title {
  color: #232323;
}
.cid-uy3ImhpBlX .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-uy3ImhpBlX .body-item {
  text-align: center;
  color: #232323;
}
.cid-uy3Imipgtx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uy3Imipgtx .mbr-section-subtitle {
  color: #232323;
}
.cid-uy3Imipgtx .container-table {
  margin: 0 auto;
}
.cid-uy3Imipgtx .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uy3Imipgtx .dataTables_wrapper {
  display: block;
}
.cid-uy3Imipgtx .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uy3Imipgtx .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uy3Imipgtx table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uy3Imipgtx table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uy3Imipgtx table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uy3Imipgtx table td {
  border-top: 1px solid #232323;
}
.cid-uy3Imipgtx table.table {
  background: #ecae15;
}
.cid-uy3Imipgtx .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uy3Imipgtx .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uy3Imipgtx .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uy3Imipgtx .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uy3Imipgtx .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uy3Imipgtx .dataTables_filter {
    text-align: center;
  }
  .cid-uy3Imipgtx .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uy3Imipgtx .mbr-section-title {
  color: #232323;
}
.cid-uy3Imipgtx .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-uy3Imipgtx .body-item {
  text-align: center;
  color: #232323;
}
.cid-uy3Imj0oj2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy3Imj7b5n {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy3Imj7b5n .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy3Imj7b5n .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy3Imj7b5n .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy3Imj7b5n .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy3Imj7b5n .row > .row {
  display: block;
}
.cid-uy3Imj7b5n .mbr-gallery-item {
  width: 100%;
}
.cid-uy3Imj7b5n .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy3Imj7b5n .mbr-gallery-item > div {
  position: relative;
}
.cid-uy3Imj7b5n .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy3Imj7b5n .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy3Imj7b5n .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy3Imj7b5n .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uBx9ySYvHK {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uBx9ySYvHK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uBx9ySYvHK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBx9ySYvHK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBx9ySYvHK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uBx9ySYvHK .row > .row {
  display: block;
}
.cid-uBx9ySYvHK .mbr-gallery-item {
  width: 100%;
}
.cid-uBx9ySYvHK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uBx9ySYvHK .mbr-gallery-item > div {
  position: relative;
}
.cid-uBx9ySYvHK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uBx9ySYvHK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uBx9ySYvHK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uBx9ySYvHK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3ImjOWZT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bLXc2Op {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uy4bLXc2Op .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4bLXc2Op .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4bLXc2Op .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4bLXc2Op .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4bLXc2Op .row > .row {
  display: block;
}
.cid-uy4bLXc2Op .mbr-gallery-item {
  width: 100%;
}
.cid-uy4bLXc2Op .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4bLXc2Op .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4bLXc2Op .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4bLXc2Op .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4bLXc2Op .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4bLXc2Op .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3ImkTX1Y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bN8rcw4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bN8rcw4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4bN8rcw4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4bN8rcw4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4bN8rcw4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4bN8rcw4 .row > .row {
  display: block;
}
.cid-uy4bN8rcw4 .mbr-gallery-item {
  width: 100%;
}
.cid-uy4bN8rcw4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4bN8rcw4 .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4bN8rcw4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4bN8rcw4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4bN8rcw4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4bN8rcw4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uH2eVSk6BP {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uH2eVSk6BP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uH2eVSk6BP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uH2eVSk6BP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uH2eVSk6BP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uH2eVSk6BP .row > .row {
  display: block;
}
.cid-uH2eVSk6BP .mbr-gallery-item {
  width: 100%;
}
.cid-uH2eVSk6BP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uH2eVSk6BP .mbr-gallery-item > div {
  position: relative;
}
.cid-uH2eVSk6BP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uH2eVSk6BP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uH2eVSk6BP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uH2eVSk6BP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uy3Imm4mjc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bO9OHB6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bO9OHB6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4bO9OHB6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4bO9OHB6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4bO9OHB6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4bO9OHB6 .row > .row {
  display: block;
}
.cid-uy4bO9OHB6 .mbr-gallery-item {
  width: 100%;
}
.cid-uy4bO9OHB6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4bO9OHB6 .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4bO9OHB6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4bO9OHB6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4bO9OHB6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4bO9OHB6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uJP2J02zJx {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uJP2J02zJx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uJP2J02zJx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJP2J02zJx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJP2J02zJx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uJP2J02zJx .row > .row {
  display: block;
}
.cid-uJP2J02zJx .mbr-gallery-item {
  width: 100%;
}
.cid-uJP2J02zJx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uJP2J02zJx .mbr-gallery-item > div {
  position: relative;
}
.cid-uJP2J02zJx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uJP2J02zJx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uJP2J02zJx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uJP2J02zJx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3ImnqwYf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bPyh5XE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bPyh5XE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4bPyh5XE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4bPyh5XE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4bPyh5XE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4bPyh5XE .row > .row {
  display: block;
}
.cid-uy4bPyh5XE .mbr-gallery-item {
  width: 100%;
}
.cid-uy4bPyh5XE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4bPyh5XE .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4bPyh5XE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4bPyh5XE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4bPyh5XE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4bPyh5XE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uMEgbS534u {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uMEgbS534u .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uMEgbS534u .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMEgbS534u .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMEgbS534u .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uMEgbS534u .row > .row {
  display: block;
}
.cid-uMEgbS534u .mbr-gallery-item {
  width: 100%;
}
.cid-uMEgbS534u .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uMEgbS534u .mbr-gallery-item > div {
  position: relative;
}
.cid-uMEgbS534u .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uMEgbS534u .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uMEgbS534u .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uMEgbS534u .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3ImoQu96 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bQuj8mK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uy4bQuj8mK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4bQuj8mK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4bQuj8mK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4bQuj8mK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4bQuj8mK .row > .row {
  display: block;
}
.cid-uy4bQuj8mK .mbr-gallery-item {
  width: 100%;
}
.cid-uy4bQuj8mK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4bQuj8mK .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4bQuj8mK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4bQuj8mK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4bQuj8mK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4bQuj8mK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3Imqnvwj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bRgGBVc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bRgGBVc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4bRgGBVc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4bRgGBVc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4bRgGBVc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4bRgGBVc .row > .row {
  display: block;
}
.cid-uy4bRgGBVc .mbr-gallery-item {
  width: 100%;
}
.cid-uy4bRgGBVc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4bRgGBVc .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4bRgGBVc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4bRgGBVc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4bRgGBVc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4bRgGBVc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uSyELzhZMl {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uSyELzhZMl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uSyELzhZMl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSyELzhZMl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uSyELzhZMl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uSyELzhZMl .row > .row {
  display: block;
}
.cid-uSyELzhZMl .mbr-gallery-item {
  width: 100%;
}
.cid-uSyELzhZMl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uSyELzhZMl .mbr-gallery-item > div {
  position: relative;
}
.cid-uSyELzhZMl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uSyELzhZMl .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uSyELzhZMl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uSyELzhZMl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3ImrZ0le {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bS2LyqT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bS2LyqT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4bS2LyqT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4bS2LyqT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4bS2LyqT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4bS2LyqT .row > .row {
  display: block;
}
.cid-uy4bS2LyqT .mbr-gallery-item {
  width: 100%;
}
.cid-uy4bS2LyqT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4bS2LyqT .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4bS2LyqT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4bS2LyqT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4bS2LyqT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4bS2LyqT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uVlU2iegzA {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uVlU2iegzA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uVlU2iegzA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uVlU2iegzA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uVlU2iegzA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uVlU2iegzA .row > .row {
  display: block;
}
.cid-uVlU2iegzA .mbr-gallery-item {
  width: 100%;
}
.cid-uVlU2iegzA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uVlU2iegzA .mbr-gallery-item > div {
  position: relative;
}
.cid-uVlU2iegzA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uVlU2iegzA .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uVlU2iegzA .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uVlU2iegzA .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3ImtNl0k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bSPGU8s {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bSPGU8s .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4bSPGU8s .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4bSPGU8s .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4bSPGU8s .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4bSPGU8s .row > .row {
  display: block;
}
.cid-uy4bSPGU8s .mbr-gallery-item {
  width: 100%;
}
.cid-uy4bSPGU8s .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4bSPGU8s .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4bSPGU8s .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4bSPGU8s .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4bSPGU8s .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4bSPGU8s .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uYlxY64pQ5 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uYlxY64pQ5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uYlxY64pQ5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYlxY64pQ5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uYlxY64pQ5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uYlxY64pQ5 .row > .row {
  display: block;
}
.cid-uYlxY64pQ5 .mbr-gallery-item {
  width: 100%;
}
.cid-uYlxY64pQ5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uYlxY64pQ5 .mbr-gallery-item > div {
  position: relative;
}
.cid-uYlxY64pQ5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uYlxY64pQ5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uYlxY64pQ5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uYlxY64pQ5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3ImvaZuI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bTKwLH4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bTKwLH4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4bTKwLH4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4bTKwLH4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4bTKwLH4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4bTKwLH4 .row > .row {
  display: block;
}
.cid-uy4bTKwLH4 .mbr-gallery-item {
  width: 100%;
}
.cid-uy4bTKwLH4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4bTKwLH4 .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4bTKwLH4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4bTKwLH4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4bTKwLH4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4bTKwLH4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v2as0lC47v {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v2as0lC47v .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v2as0lC47v .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v2as0lC47v .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v2as0lC47v .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v2as0lC47v .row > .row {
  display: block;
}
.cid-v2as0lC47v .mbr-gallery-item {
  width: 100%;
}
.cid-v2as0lC47v .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v2as0lC47v .mbr-gallery-item > div {
  position: relative;
}
.cid-v2as0lC47v .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v2as0lC47v .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v2as0lC47v .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v2as0lC47v .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3ImxjJXV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bUyrKZ5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-uy4bUyrKZ5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4bUyrKZ5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4bUyrKZ5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4bUyrKZ5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4bUyrKZ5 .row > .row {
  display: block;
}
.cid-uy4bUyrKZ5 .mbr-gallery-item {
  width: 100%;
}
.cid-uy4bUyrKZ5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4bUyrKZ5 .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4bUyrKZ5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4bUyrKZ5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4bUyrKZ5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4bUyrKZ5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3ImzDpc9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bWhLqgn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-uy4bWhLqgn .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4bWhLqgn .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4bWhLqgn .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4bWhLqgn .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4bWhLqgn .row > .row {
  display: block;
}
.cid-uy4bWhLqgn .mbr-gallery-item {
  width: 100%;
}
.cid-uy4bWhLqgn .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4bWhLqgn .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4bWhLqgn .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4bWhLqgn .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4bWhLqgn .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4bWhLqgn .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TSZO1wLf {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TSZO1wLf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TSZO1wLf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TSZO1wLf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TSZO1wLf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TSZO1wLf .row > .row {
  display: block;
}
.cid-v6TSZO1wLf .mbr-gallery-item {
  width: 100%;
}
.cid-v6TSZO1wLf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TSZO1wLf .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TSZO1wLf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TSZO1wLf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TSZO1wLf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TSZO1wLf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy3ImBarCB {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-uy3ImBarCB .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uy3ImBarCB div.b {
  padding-top: 2rem;
}
.cid-uy3ImBarCB H5 {
  color: #232323;
}
.cid-uy4dwJdIWM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4dwJdIWM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy4dwJdIWM .section-text {
  padding: 2rem 0;
}
.cid-uy4dwJdIWM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy4dwJdIWM .inner-container {
    width: 100% !important;
  }
}
.cid-v78vxgUfGM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78vxgUfGM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v78vxgUfGM .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v78vxgUfGM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v78vxgUfGM .inner-container {
    width: 100% !important;
  }
}
.cid-uy4dwJJPWm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4dwJJPWm .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy4dwJJPWm .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-uy4dwJJPWm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy4dwJJPWm .inner-container {
    width: 100% !important;
  }
}
.cid-uHk1F9KkHI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #15ece0;
}
.cid-uHk1F9KkHI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHk1F9KkHI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHk1F9KkHI .row {
  justify-content: center;
}
.cid-uHk1F9KkHI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHk1F9KkHI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHk1F9KkHI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHk1F9KkHI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHk1F9KkHI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHk1F9KkHI .mbr-text_1,
.cid-uHk1F9KkHI .mbr-text_2,
.cid-uHk1F9KkHI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHk1F9KkHI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk1F9KkHI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHk1F9KkHI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uHk1F9KkHI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uHk1F9KkHI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk1F9KkHI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHk1F9KkHI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHk1F9KkHI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk1F9KkHI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-uHk1F9KkHI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHk1F9KkHI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHk1F9KkHI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHk1F9KkHI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uHk1G6gJ6x {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #15ece0;
}
.cid-uHk1G6gJ6x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHk1G6gJ6x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHk1G6gJ6x .row {
  justify-content: center;
}
.cid-uHk1G6gJ6x .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-uHk1G6gJ6x .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uHk1G6gJ6x .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uHk1G6gJ6x .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-uHk1G6gJ6x .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-uHk1G6gJ6x .mbr-text_1,
.cid-uHk1G6gJ6x .mbr-text_2,
.cid-uHk1G6gJ6x .mbr-text_3 {
  margin-bottom: 0;
}
.cid-uHk1G6gJ6x .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk1G6gJ6x .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-uHk1G6gJ6x .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk1G6gJ6x .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk1G6gJ6x .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk1G6gJ6x .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-uHk1G6gJ6x .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-uHk1G6gJ6x .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-uHk1G6gJ6x .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-uHk1G6gJ6x .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHk1G6gJ6x .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-uHk1G6gJ6x .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-uHk1G6gJ6x .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uy4dwJVGRN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4dwJVGRN .mbr-section-subtitle {
  color: #767676;
}
.cid-uy4dwJVGRN .container-table {
  margin: 0 auto;
}
.cid-uy4dwJVGRN .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uy4dwJVGRN .dataTables_wrapper {
  display: block;
}
.cid-uy4dwJVGRN .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uy4dwJVGRN .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uy4dwJVGRN table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uy4dwJVGRN table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uy4dwJVGRN table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uy4dwJVGRN table td {
  border-top: 1px solid #232323;
}
.cid-uy4dwJVGRN table.table {
  background: #15ece0;
}
.cid-uy4dwJVGRN .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uy4dwJVGRN .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uy4dwJVGRN .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uy4dwJVGRN .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uy4dwJVGRN .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uy4dwJVGRN .dataTables_filter {
    text-align: center;
  }
  .cid-uy4dwJVGRN .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uy4dwJVGRN .mbr-section-title {
  color: #232323;
}
.cid-uy4dwJVGRN .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-uy4dwJVGRN .body-item {
  text-align: center;
}
.cid-uy4dwKjZ51 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4dwKjZ51 .mbr-section-subtitle {
  color: #232323;
}
.cid-uy4dwKjZ51 .container-table {
  margin: 0 auto;
}
.cid-uy4dwKjZ51 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uy4dwKjZ51 .dataTables_wrapper {
  display: block;
}
.cid-uy4dwKjZ51 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uy4dwKjZ51 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uy4dwKjZ51 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uy4dwKjZ51 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uy4dwKjZ51 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uy4dwKjZ51 table td {
  border-top: 1px solid #232323;
}
.cid-uy4dwKjZ51 table.table {
  background: #15ece0;
}
.cid-uy4dwKjZ51 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uy4dwKjZ51 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uy4dwKjZ51 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uy4dwKjZ51 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uy4dwKjZ51 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uy4dwKjZ51 .dataTables_filter {
    text-align: center;
  }
  .cid-uy4dwKjZ51 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uy4dwKjZ51 .mbr-section-title {
  color: #232323;
}
.cid-uy4dwKjZ51 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-uy4dwKjZ51 .body-item {
  text-align: center;
  color: #232323;
}
.cid-uy4dwKAOi4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4dwKAOi4 .mbr-section-subtitle {
  color: #232323;
}
.cid-uy4dwKAOi4 .container-table {
  margin: 0 auto;
}
.cid-uy4dwKAOi4 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uy4dwKAOi4 .dataTables_wrapper {
  display: block;
}
.cid-uy4dwKAOi4 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uy4dwKAOi4 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uy4dwKAOi4 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uy4dwKAOi4 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uy4dwKAOi4 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uy4dwKAOi4 table td {
  border-top: 1px solid #232323;
}
.cid-uy4dwKAOi4 table.table {
  background: #15ece0;
}
.cid-uy4dwKAOi4 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uy4dwKAOi4 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uy4dwKAOi4 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uy4dwKAOi4 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uy4dwKAOi4 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uy4dwKAOi4 .dataTables_filter {
    text-align: center;
  }
  .cid-uy4dwKAOi4 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uy4dwKAOi4 .mbr-section-title {
  color: #232323;
}
.cid-uy4dwKAOi4 .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-uy4dwKAOi4 .body-item {
  text-align: center;
  color: #232323;
}
.cid-uy4dwKO2r6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4dwKO2r6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4dwKO2r6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4dwKO2r6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4dwKO2r6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4dwKO2r6 .row > .row {
  display: block;
}
.cid-uy4dwKO2r6 .mbr-gallery-item {
  width: 100%;
}
.cid-uy4dwKO2r6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4dwKO2r6 .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4dwKO2r6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4dwKO2r6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4dwKO2r6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4dwKO2r6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4dwL4iSC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-uy4dJL5bKu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4dJL5bKu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4dJL5bKu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4dJL5bKu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4dJL5bKu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4dJL5bKu .row > .row {
  display: block;
}
.cid-uy4dJL5bKu .mbr-gallery-item {
  width: 100%;
}
.cid-uy4dJL5bKu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4dJL5bKu .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4dJL5bKu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4dJL5bKu .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4dJL5bKu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4dJL5bKu .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4dwLrbbA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-uy4fQSfjkD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4fQSfjkD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4fQSfjkD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4fQSfjkD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4fQSfjkD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4fQSfjkD .row > .row {
  display: block;
}
.cid-uy4fQSfjkD .mbr-gallery-item {
  width: 100%;
}
.cid-uy4fQSfjkD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4fQSfjkD .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4fQSfjkD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4fQSfjkD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4fQSfjkD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4fQSfjkD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4dwLQSm3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-uy4fRL9DOe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4fRL9DOe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4fRL9DOe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4fRL9DOe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4fRL9DOe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4fRL9DOe .row > .row {
  display: block;
}
.cid-uy4fRL9DOe .mbr-gallery-item {
  width: 100%;
}
.cid-uy4fRL9DOe .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4fRL9DOe .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4fRL9DOe .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4fRL9DOe .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4fRL9DOe .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4fRL9DOe .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4dwMcoHh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-uy4fSIZY11 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4fSIZY11 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4fSIZY11 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4fSIZY11 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4fSIZY11 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4fSIZY11 .row > .row {
  display: block;
}
.cid-uy4fSIZY11 .mbr-gallery-item {
  width: 100%;
}
.cid-uy4fSIZY11 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4fSIZY11 .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4fSIZY11 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4fSIZY11 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4fSIZY11 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4fSIZY11 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4dwMBd1j {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-uy4fTPDXoI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4fTPDXoI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4fTPDXoI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4fTPDXoI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4fTPDXoI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4fTPDXoI .row > .row {
  display: block;
}
.cid-uy4fTPDXoI .mbr-gallery-item {
  width: 100%;
}
.cid-uy4fTPDXoI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4fTPDXoI .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4fTPDXoI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4fTPDXoI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4fTPDXoI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4fTPDXoI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4dwN2KGE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-uy4fUErE4U {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4fUErE4U .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4fUErE4U .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4fUErE4U .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4fUErE4U .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4fUErE4U .row > .row {
  display: block;
}
.cid-uy4fUErE4U .mbr-gallery-item {
  width: 100%;
}
.cid-uy4fUErE4U .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4fUErE4U .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4fUErE4U .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4fUErE4U .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4fUErE4U .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4fUErE4U .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4dwNwMkh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-uy4fVVE2td {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4fVVE2td .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4fVVE2td .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4fVVE2td .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4fVVE2td .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4fVVE2td .row > .row {
  display: block;
}
.cid-uy4fVVE2td .mbr-gallery-item {
  width: 100%;
}
.cid-uy4fVVE2td .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4fVVE2td .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4fVVE2td .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4fVVE2td .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4fVVE2td .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4fVVE2td .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4dwO4v70 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-uy4fWFSE2n {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4fWFSE2n .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4fWFSE2n .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4fWFSE2n .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4fWFSE2n .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4fWFSE2n .row > .row {
  display: block;
}
.cid-uy4fWFSE2n .mbr-gallery-item {
  width: 100%;
}
.cid-uy4fWFSE2n .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4fWFSE2n .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4fWFSE2n .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4fWFSE2n .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4fWFSE2n .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4fWFSE2n .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4dwOAJuJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-uy4fXrRHw5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4fXrRHw5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4fXrRHw5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4fXrRHw5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4fXrRHw5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4fXrRHw5 .row > .row {
  display: block;
}
.cid-uy4fXrRHw5 .mbr-gallery-item {
  width: 100%;
}
.cid-uy4fXrRHw5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4fXrRHw5 .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4fXrRHw5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4fXrRHw5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4fXrRHw5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4fXrRHw5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4dwPcmlc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-uy4fYaj3VT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4fYaj3VT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4fYaj3VT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4fYaj3VT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4fYaj3VT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4fYaj3VT .row > .row {
  display: block;
}
.cid-uy4fYaj3VT .mbr-gallery-item {
  width: 100%;
}
.cid-uy4fYaj3VT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4fYaj3VT .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4fYaj3VT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4fYaj3VT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4fYaj3VT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4fYaj3VT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4dwPMouc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-uy4fZ1Fnka {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4fZ1Fnka .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4fZ1Fnka .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4fZ1Fnka .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4fZ1Fnka .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4fZ1Fnka .row > .row {
  display: block;
}
.cid-uy4fZ1Fnka .mbr-gallery-item {
  width: 100%;
}
.cid-uy4fZ1Fnka .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4fZ1Fnka .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4fZ1Fnka .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4fZ1Fnka .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4fZ1Fnka .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4fZ1Fnka .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4dwQnh9F {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-uy4fZDXUAk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-uy4fZDXUAk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4fZDXUAk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4fZDXUAk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4fZDXUAk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4fZDXUAk .row > .row {
  display: block;
}
.cid-uy4fZDXUAk .mbr-gallery-item {
  width: 100%;
}
.cid-uy4fZDXUAk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4fZDXUAk .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4fZDXUAk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4fZDXUAk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4fZDXUAk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4fZDXUAk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4dwQYQqr {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #15ece0;
}
.cid-uy4dwQYQqr .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uy4dwQYQqr div.b {
  padding-top: 2rem;
}
.cid-uy4dwQYQqr H5 {
  color: #232323;
}
.cid-uy4rAq9hci {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uy4rAq9hci .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy4rAq9hci .section-text {
  padding: 2rem 0;
}
.cid-uy4rAq9hci .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy4rAq9hci .inner-container {
    width: 100% !important;
  }
}
.cid-v6Wu6vAjR9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v6Wu6vAjR9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Wu6vAjR9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Wu6vAjR9 .row {
  justify-content: center;
}
.cid-v6Wu6vAjR9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Wu6vAjR9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Wu6vAjR9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Wu6vAjR9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Wu6vAjR9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Wu6vAjR9 .mbr-text_1,
.cid-v6Wu6vAjR9 .mbr-text_2,
.cid-v6Wu6vAjR9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Wu6vAjR9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wu6vAjR9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Wu6vAjR9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Wu6vAjR9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Wu6vAjR9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wu6vAjR9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Wu6vAjR9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Wu6vAjR9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wu6vAjR9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Wu6vAjR9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Wu6vAjR9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Wu6vAjR9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Wu6vAjR9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6WvuMS31s {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v6WvuMS31s .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6WvuMS31s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6WvuMS31s .row {
  justify-content: center;
}
.cid-v6WvuMS31s .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6WvuMS31s .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6WvuMS31s .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6WvuMS31s .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6WvuMS31s .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6WvuMS31s .mbr-text_1,
.cid-v6WvuMS31s .mbr-text_2,
.cid-v6WvuMS31s .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6WvuMS31s .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WvuMS31s .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6WvuMS31s .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6WvuMS31s .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6WvuMS31s .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WvuMS31s .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6WvuMS31s .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6WvuMS31s .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WvuMS31s .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6WvuMS31s .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6WvuMS31s .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6WvuMS31s .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6WvuMS31s .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uy4rAqRffZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uy4rAqRffZ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy4rAqRffZ .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uy4rAqRffZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy4rAqRffZ .inner-container {
    width: 100% !important;
  }
}
.cid-v8aEWoEk7G {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aEWoEk7G .mbr-section-subtitle {
  color: #767676;
}
.cid-v8aEWoEk7G .container-table {
  margin: 0 auto;
}
.cid-v8aEWoEk7G .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8aEWoEk7G .dataTables_wrapper {
  display: block;
}
.cid-v8aEWoEk7G .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8aEWoEk7G .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8aEWoEk7G table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8aEWoEk7G table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8aEWoEk7G table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8aEWoEk7G table td {
  border-top: 1px solid #232323;
}
.cid-v8aEWoEk7G .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8aEWoEk7G .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8aEWoEk7G .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8aEWoEk7G .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8aEWoEk7G .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8aEWoEk7G .dataTables_filter {
    text-align: center;
  }
  .cid-v8aEWoEk7G .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8aEWoEk7G .mbr-section-title {
  color: #232323;
}
.cid-v8aEWoEk7G .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8aEWoEk7G .body-item {
  text-align: center;
}
.cid-uy4rArrIki {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uy4rArrIki .mbr-section-subtitle {
  color: #767676;
}
.cid-uy4rArrIki .container-table {
  margin: 0 auto;
}
.cid-uy4rArrIki .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uy4rArrIki .dataTables_wrapper {
  display: block;
}
.cid-uy4rArrIki .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uy4rArrIki .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uy4rArrIki table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-uy4rArrIki table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uy4rArrIki table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-uy4rArrIki table td {
  border-top: 1px solid #232323;
}
.cid-uy4rArrIki .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uy4rArrIki .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uy4rArrIki .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uy4rArrIki .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uy4rArrIki .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uy4rArrIki .dataTables_filter {
    text-align: center;
  }
  .cid-uy4rArrIki .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uy4rArrIki .mbr-section-title {
  color: #232323;
}
.cid-uy4rArrIki .head-item {
  text-align: center;
  color: #232323;
}
.cid-uy4rArrIki .body-item {
  text-align: center;
}
.cid-uy4rArGawI {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-uy4rArGawI .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uy4rArGawI div.b {
  padding-top: 2rem;
}
.cid-uy4rArGawI H5 {
  color: #232323;
}
.cid-uy4ug1niQq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uy4ug1niQq .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy4ug1niQq .section-text {
  padding: 2rem 0;
}
.cid-uy4ug1niQq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy4ug1niQq .inner-container {
    width: 100% !important;
  }
}
.cid-v7vSsb4iTQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vSsb4iTQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vSsb4iTQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vSsb4iTQ .row {
  justify-content: center;
}
.cid-v7vSsb4iTQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vSsb4iTQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vSsb4iTQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vSsb4iTQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vSsb4iTQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vSsb4iTQ .mbr-text_1,
.cid-v7vSsb4iTQ .mbr-text_2,
.cid-v7vSsb4iTQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vSsb4iTQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSsb4iTQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vSsb4iTQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vSsb4iTQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vSsb4iTQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSsb4iTQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vSsb4iTQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vSsb4iTQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSsb4iTQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vSsb4iTQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vSsb4iTQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vSsb4iTQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vSsb4iTQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vSsTrTjk {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vSsTrTjk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vSsTrTjk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vSsTrTjk .row {
  justify-content: center;
}
.cid-v7vSsTrTjk .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vSsTrTjk .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vSsTrTjk .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vSsTrTjk .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vSsTrTjk .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vSsTrTjk .mbr-text_1,
.cid-v7vSsTrTjk .mbr-text_2,
.cid-v7vSsTrTjk .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vSsTrTjk .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSsTrTjk .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vSsTrTjk .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vSsTrTjk .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vSsTrTjk .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSsTrTjk .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vSsTrTjk .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vSsTrTjk .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vSsTrTjk .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vSsTrTjk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vSsTrTjk .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vSsTrTjk .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vSsTrTjk .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uy4ug240BS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uy4ug240BS .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy4ug240BS .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uy4ug240BS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy4ug240BS .inner-container {
    width: 100% !important;
  }
}
.cid-uy4vS6abHx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uy4vS6abHx .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy4vS6abHx .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uy4vS6abHx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy4vS6abHx .inner-container {
    width: 100% !important;
  }
}
.cid-uy4ug2eSYC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uy4ug2eSYC .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy4ug2eSYC .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-uy4ug2eSYC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy4ug2eSYC .inner-container {
    width: 100% !important;
  }
}
.cid-uy4ug2jc4Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uy4ug2jc4Q .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy4ug2jc4Q .section-text {
  padding: 2rem 0;
}
.cid-uy4ug2jc4Q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy4ug2jc4Q .inner-container {
    width: 100% !important;
  }
}
.cid-uy4ug2rldl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uy4ug2rldl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4ug2rldl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4ug2rldl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4ug2rldl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4ug2rldl .row > .row {
  display: block;
}
.cid-uy4ug2rldl .mbr-gallery-item {
  width: 100%;
}
.cid-uy4ug2rldl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4ug2rldl .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4ug2rldl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4ug2rldl .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4ug2rldl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4ug2rldl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4ug2ID4h {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-uy4ug2ID4h .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uy4ug2ID4h div.b {
  padding-top: 2rem;
}
.cid-uy4ug2ID4h H5 {
  color: #232323;
}
.cid-uy4ug2UipB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uy4ug2UipB .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy4ug2UipB .section-text {
  padding: 2rem 0;
}
.cid-uy4ug2UipB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy4ug2UipB .inner-container {
    width: 100% !important;
  }
}
.cid-uy4ug2UipB .section-text DIV {
  text-align: center;
}
.cid-uy4yYNP412 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uy4yYNP412 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy4yYNP412 .section-text {
  padding: 2rem 0;
}
.cid-uy4yYNP412 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy4yYNP412 .inner-container {
    width: 100% !important;
  }
}
.cid-v7vT55kyjE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vT55kyjE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vT55kyjE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vT55kyjE .row {
  justify-content: center;
}
.cid-v7vT55kyjE .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vT55kyjE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vT55kyjE .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vT55kyjE .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vT55kyjE .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vT55kyjE .mbr-text_1,
.cid-v7vT55kyjE .mbr-text_2,
.cid-v7vT55kyjE .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vT55kyjE .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vT55kyjE .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vT55kyjE .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vT55kyjE .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vT55kyjE .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vT55kyjE .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vT55kyjE .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vT55kyjE .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vT55kyjE .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vT55kyjE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vT55kyjE .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vT55kyjE .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vT55kyjE .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vT5QnETh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vT5QnETh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vT5QnETh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vT5QnETh .row {
  justify-content: center;
}
.cid-v7vT5QnETh .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vT5QnETh .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vT5QnETh .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vT5QnETh .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vT5QnETh .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vT5QnETh .mbr-text_1,
.cid-v7vT5QnETh .mbr-text_2,
.cid-v7vT5QnETh .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vT5QnETh .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vT5QnETh .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vT5QnETh .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vT5QnETh .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vT5QnETh .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vT5QnETh .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vT5QnETh .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vT5QnETh .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vT5QnETh .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vT5QnETh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vT5QnETh .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vT5QnETh .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vT5QnETh .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uy4yYOvSoK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uy4yYOvSoK .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy4yYOvSoK .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uy4yYOvSoK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy4yYOvSoK .inner-container {
    width: 100% !important;
  }
}
.cid-uy4yYOBpq4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-uy4zbjSM77 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uy4zbjSM77 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uy4zbjSM77 .section-text {
  padding: 2rem 0;
}
.cid-uy4zbjSM77 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uy4zbjSM77 .inner-container {
    width: 100% !important;
  }
}
.cid-uy4zcpMPVF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uy4zcpMPVF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uy4zcpMPVF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uy4zcpMPVF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uy4zcpMPVF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uy4zcpMPVF .row > .row {
  display: block;
}
.cid-uy4zcpMPVF .mbr-gallery-item {
  width: 100%;
}
.cid-uy4zcpMPVF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uy4zcpMPVF .mbr-gallery-item > div {
  position: relative;
}
.cid-uy4zcpMPVF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uy4zcpMPVF .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uy4zcpMPVF .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uy4zcpMPVF .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uy4yYP4U24 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-uy4yYP4U24 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uy4yYP4U24 div.b {
  padding-top: 2rem;
}
.cid-uy4yYP4U24 H5 {
  color: #232323;
}
.cid-uKzN9yxZbE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uKzN9yxZbE .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uKzN9yxZbE .section-text {
  padding: 2rem 0;
}
.cid-uKzN9yxZbE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uKzN9yxZbE .inner-container {
    width: 100% !important;
  }
}
.cid-v7vThr5qUc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vThr5qUc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vThr5qUc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vThr5qUc .row {
  justify-content: center;
}
.cid-v7vThr5qUc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vThr5qUc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vThr5qUc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vThr5qUc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vThr5qUc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vThr5qUc .mbr-text_1,
.cid-v7vThr5qUc .mbr-text_2,
.cid-v7vThr5qUc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vThr5qUc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vThr5qUc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vThr5qUc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vThr5qUc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vThr5qUc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vThr5qUc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vThr5qUc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vThr5qUc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vThr5qUc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vThr5qUc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vThr5qUc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vThr5qUc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vThr5qUc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vTiiddRc {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vTiiddRc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vTiiddRc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vTiiddRc .row {
  justify-content: center;
}
.cid-v7vTiiddRc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vTiiddRc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vTiiddRc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vTiiddRc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vTiiddRc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vTiiddRc .mbr-text_1,
.cid-v7vTiiddRc .mbr-text_2,
.cid-v7vTiiddRc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vTiiddRc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTiiddRc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vTiiddRc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vTiiddRc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vTiiddRc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTiiddRc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vTiiddRc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vTiiddRc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTiiddRc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vTiiddRc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vTiiddRc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vTiiddRc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vTiiddRc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uKzN9z4jFg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uKzN9z4jFg .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uKzN9z4jFg .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uKzN9z4jFg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uKzN9z4jFg .inner-container {
    width: 100% !important;
  }
}
.cid-uKzN9z8q17 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-uKzOdWlyh1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uKzOdWlyh1 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uKzOdWlyh1 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-uKzOdWlyh1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uKzOdWlyh1 .inner-container {
    width: 100% !important;
  }
}
.cid-uKzOeYHTbb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uKzOeYHTbb .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uKzOeYHTbb .section-text {
  padding: 2rem 0;
}
.cid-uKzOeYHTbb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uKzOeYHTbb .inner-container {
    width: 100% !important;
  }
}
.cid-uKzOeYHTbb .section-text DIV {
  text-align: center;
}
.cid-uKzOfWp4qw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uKzOfWp4qw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uKzOfWp4qw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKzOfWp4qw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKzOfWp4qw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uKzOfWp4qw .row > .row {
  display: block;
}
.cid-uKzOfWp4qw .mbr-gallery-item {
  width: 100%;
}
.cid-uKzOfWp4qw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uKzOfWp4qw .mbr-gallery-item > div {
  position: relative;
}
.cid-uKzOfWp4qw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uKzOfWp4qw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uKzOfWp4qw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uKzOfWp4qw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uKzN9zF3oa {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-uKzN9zF3oa .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uKzN9zF3oa div.b {
  padding-top: 2rem;
}
.cid-uKzN9zF3oa H5 {
  color: #232323;
}
.cid-uQQN1QiX1W {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uQQN1QiX1W .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uQQN1QiX1W .section-text {
  padding: 2rem 0;
}
.cid-uQQN1QiX1W .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uQQN1QiX1W .inner-container {
    width: 100% !important;
  }
}
.cid-v7vTtFvseh {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vTtFvseh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vTtFvseh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vTtFvseh .row {
  justify-content: center;
}
.cid-v7vTtFvseh .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vTtFvseh .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vTtFvseh .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vTtFvseh .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vTtFvseh .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vTtFvseh .mbr-text_1,
.cid-v7vTtFvseh .mbr-text_2,
.cid-v7vTtFvseh .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vTtFvseh .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTtFvseh .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vTtFvseh .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vTtFvseh .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vTtFvseh .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTtFvseh .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vTtFvseh .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vTtFvseh .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTtFvseh .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vTtFvseh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vTtFvseh .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vTtFvseh .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vTtFvseh .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vTunFyQq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vTunFyQq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vTunFyQq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vTunFyQq .row {
  justify-content: center;
}
.cid-v7vTunFyQq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vTunFyQq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vTunFyQq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vTunFyQq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vTunFyQq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vTunFyQq .mbr-text_1,
.cid-v7vTunFyQq .mbr-text_2,
.cid-v7vTunFyQq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vTunFyQq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTunFyQq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vTunFyQq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vTunFyQq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vTunFyQq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTunFyQq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vTunFyQq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vTunFyQq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTunFyQq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vTunFyQq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vTunFyQq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vTunFyQq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vTunFyQq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uQQN1QQRub {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uQQN1QQRub .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uQQN1QQRub .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uQQN1QQRub .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uQQN1QQRub .inner-container {
    width: 100% !important;
  }
}
.cid-uQQN1QUmhE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-uQQNwjchwn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uQQNwjchwn .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uQQNwjchwn .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-uQQNwjchwn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uQQNwjchwn .inner-container {
    width: 100% !important;
  }
}
.cid-uQQNxJxIN3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uQQNxJxIN3 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uQQNxJxIN3 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-uQQNxJxIN3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uQQNxJxIN3 .inner-container {
    width: 100% !important;
  }
}
.cid-uQQNyS0GzO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uQQNyS0GzO .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uQQNyS0GzO .section-text {
  padding: 2rem 0;
}
.cid-uQQNyS0GzO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uQQNyS0GzO .inner-container {
    width: 100% !important;
  }
}
.cid-uQQNzTmg9i {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uQQNzTmg9i .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uQQNzTmg9i .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uQQNzTmg9i .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uQQNzTmg9i .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uQQNzTmg9i .row > .row {
  display: block;
}
.cid-uQQNzTmg9i .mbr-gallery-item {
  width: 100%;
}
.cid-uQQNzTmg9i .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uQQNzTmg9i .mbr-gallery-item > div {
  position: relative;
}
.cid-uQQNzTmg9i .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uQQNzTmg9i .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uQQNzTmg9i .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uQQNzTmg9i .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uQQN1RoaS7 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-uQQN1RoaS7 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uQQN1RoaS7 div.b {
  padding-top: 2rem;
}
.cid-uQQN1RoaS7 H5 {
  color: #232323;
}
.cid-uREydbGUfj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uREydbGUfj .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uREydbGUfj .section-text {
  padding: 2rem 0;
}
.cid-uREydbGUfj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uREydbGUfj .inner-container {
    width: 100% !important;
  }
}
.cid-v7vTEmtlup {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vTEmtlup .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vTEmtlup .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vTEmtlup .row {
  justify-content: center;
}
.cid-v7vTEmtlup .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vTEmtlup .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vTEmtlup .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vTEmtlup .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vTEmtlup .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vTEmtlup .mbr-text_1,
.cid-v7vTEmtlup .mbr-text_2,
.cid-v7vTEmtlup .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vTEmtlup .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTEmtlup .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vTEmtlup .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vTEmtlup .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vTEmtlup .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTEmtlup .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vTEmtlup .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vTEmtlup .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTEmtlup .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vTEmtlup .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vTEmtlup .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vTEmtlup .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vTEmtlup .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vTFi3duB {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vTFi3duB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vTFi3duB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vTFi3duB .row {
  justify-content: center;
}
.cid-v7vTFi3duB .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vTFi3duB .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vTFi3duB .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vTFi3duB .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vTFi3duB .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vTFi3duB .mbr-text_1,
.cid-v7vTFi3duB .mbr-text_2,
.cid-v7vTFi3duB .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vTFi3duB .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTFi3duB .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vTFi3duB .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vTFi3duB .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vTFi3duB .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTFi3duB .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vTFi3duB .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vTFi3duB .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vTFi3duB .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vTFi3duB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vTFi3duB .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vTFi3duB .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vTFi3duB .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uREydchgpx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uREydchgpx .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uREydchgpx .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uREydchgpx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uREydchgpx .inner-container {
    width: 100% !important;
  }
}
.cid-uREydcnZcP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-uREA58djVX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uREA58djVX .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uREA58djVX .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-uREA58djVX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uREA58djVX .inner-container {
    width: 100% !important;
  }
}
.cid-uREA2QkhbM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uREA2QkhbM .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uREA2QkhbM .section-text {
  padding: 2rem 0;
}
.cid-uREA2QkhbM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uREA2QkhbM .inner-container {
    width: 100% !important;
  }
}
.cid-uREydcCjIM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uREydcCjIM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uREydcCjIM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uREydcCjIM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uREydcCjIM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uREydcCjIM .row > .row {
  display: block;
}
.cid-uREydcCjIM .mbr-gallery-item {
  width: 100%;
}
.cid-uREydcCjIM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uREydcCjIM .mbr-gallery-item > div {
  position: relative;
}
.cid-uREydcCjIM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uREydcCjIM .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uREydcCjIM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uREydcCjIM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uREydcO3NV {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-uREydcO3NV .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uREydcO3NV div.b {
  padding-top: 2rem;
}
.cid-uREydcO3NV H5 {
  color: #232323;
}
.cid-uREAFP4bqP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uREAFP4bqP .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uREAFP4bqP .section-text {
  padding: 2rem 0;
}
.cid-uREAFP4bqP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uREAFP4bqP .inner-container {
    width: 100% !important;
  }
}
.cid-v7vV2E4lCZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vV2E4lCZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vV2E4lCZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vV2E4lCZ .row {
  justify-content: center;
}
.cid-v7vV2E4lCZ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vV2E4lCZ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vV2E4lCZ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vV2E4lCZ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vV2E4lCZ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vV2E4lCZ .mbr-text_1,
.cid-v7vV2E4lCZ .mbr-text_2,
.cid-v7vV2E4lCZ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vV2E4lCZ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vV2E4lCZ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vV2E4lCZ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vV2E4lCZ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vV2E4lCZ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vV2E4lCZ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vV2E4lCZ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vV2E4lCZ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vV2E4lCZ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vV2E4lCZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vV2E4lCZ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vV2E4lCZ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vV2E4lCZ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vV3wb6WV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vV3wb6WV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vV3wb6WV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vV3wb6WV .row {
  justify-content: center;
}
.cid-v7vV3wb6WV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vV3wb6WV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vV3wb6WV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vV3wb6WV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vV3wb6WV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vV3wb6WV .mbr-text_1,
.cid-v7vV3wb6WV .mbr-text_2,
.cid-v7vV3wb6WV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vV3wb6WV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vV3wb6WV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vV3wb6WV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vV3wb6WV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vV3wb6WV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vV3wb6WV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vV3wb6WV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vV3wb6WV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vV3wb6WV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vV3wb6WV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vV3wb6WV .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vV3wb6WV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vV3wb6WV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uREAFPwTpk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uREAFPwTpk .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uREAFPwTpk .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uREAFPwTpk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uREAFPwTpk .inner-container {
    width: 100% !important;
  }
}
.cid-uREAFPBYfF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-uREARX88Hp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uREARX88Hp .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uREARX88Hp .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-uREARX88Hp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uREARX88Hp .inner-container {
    width: 100% !important;
  }
}
.cid-uREATkbggo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uREATkbggo .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uREATkbggo .section-text {
  padding: 2rem 0;
}
.cid-uREATkbggo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uREATkbggo .inner-container {
    width: 100% !important;
  }
}
.cid-uREAFPZdWf {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-uREAFPZdWf .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uREAFPZdWf div.b {
  padding-top: 2rem;
}
.cid-uREAFPZdWf H5 {
  color: #232323;
}
.cid-uUwoq4nITJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uUwoq4nITJ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uUwoq4nITJ .section-text {
  padding: 2rem 0;
}
.cid-uUwoq4nITJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uUwoq4nITJ .inner-container {
    width: 100% !important;
  }
}
.cid-v7vVgfReO5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7vVgfReO5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vVgfReO5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vVgfReO5 .row {
  justify-content: center;
}
.cid-v7vVgfReO5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vVgfReO5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vVgfReO5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vVgfReO5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vVgfReO5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vVgfReO5 .mbr-text_1,
.cid-v7vVgfReO5 .mbr-text_2,
.cid-v7vVgfReO5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vVgfReO5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vVgfReO5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vVgfReO5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vVgfReO5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vVgfReO5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vVgfReO5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vVgfReO5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vVgfReO5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vVgfReO5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7vVgfReO5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vVgfReO5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vVgfReO5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vVgfReO5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7vVh3vwSD {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7vVh3vwSD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7vVh3vwSD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7vVh3vwSD .row {
  justify-content: center;
}
.cid-v7vVh3vwSD .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7vVh3vwSD .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7vVh3vwSD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7vVh3vwSD .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7vVh3vwSD .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7vVh3vwSD .mbr-text_1,
.cid-v7vVh3vwSD .mbr-text_2,
.cid-v7vVh3vwSD .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7vVh3vwSD .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vVh3vwSD .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7vVh3vwSD .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vVh3vwSD .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vVh3vwSD .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vVh3vwSD .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7vVh3vwSD .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7vVh3vwSD .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7vVh3vwSD .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7vVh3vwSD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7vVh3vwSD .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7vVh3vwSD .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7vVh3vwSD .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-uUwoq57K9g {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uUwoq57K9g .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uUwoq57K9g .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uUwoq57K9g .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uUwoq57K9g .inner-container {
    width: 100% !important;
  }
}
.cid-uUwoq5bm6N {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-uUwoq5ejFu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uUwoq5ejFu .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uUwoq5ejFu .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-uUwoq5ejFu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uUwoq5ejFu .inner-container {
    width: 100% !important;
  }
}
.cid-uUwp86fGqL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-uUwp86fGqL .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uUwp86fGqL .section-text {
  padding: 2rem 0;
}
.cid-uUwp86fGqL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uUwp86fGqL .inner-container {
    width: 100% !important;
  }
}
.cid-uUwoq5luFN {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-uUwoq5luFN .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-uUwoq5luFN div.b {
  padding-top: 2rem;
}
.cid-uUwoq5luFN H5 {
  color: #232323;
}
.cid-v2P7xUAhle {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v2P7xUAhle .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v2P7xUAhle .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v2P7xUAhle .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v2P7xUAhle .inner-container {
    width: 100% !important;
  }
}
.cid-v7ebvq8aT9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7ebvq8aT9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ebvq8aT9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ebvq8aT9 .row {
  justify-content: center;
}
.cid-v7ebvq8aT9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ebvq8aT9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ebvq8aT9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ebvq8aT9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ebvq8aT9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ebvq8aT9 .mbr-text_1,
.cid-v7ebvq8aT9 .mbr-text_2,
.cid-v7ebvq8aT9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ebvq8aT9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebvq8aT9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebvq8aT9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ebvq8aT9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ebvq8aT9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebvq8aT9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebvq8aT9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ebvq8aT9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebvq8aT9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ebvq8aT9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ebvq8aT9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ebvq8aT9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ebvq8aT9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7ebwfpg6V {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7ebwfpg6V .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ebwfpg6V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ebwfpg6V .row {
  justify-content: center;
}
.cid-v7ebwfpg6V .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ebwfpg6V .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ebwfpg6V .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ebwfpg6V .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ebwfpg6V .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ebwfpg6V .mbr-text_1,
.cid-v7ebwfpg6V .mbr-text_2,
.cid-v7ebwfpg6V .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ebwfpg6V .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebwfpg6V .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebwfpg6V .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7ebwfpg6V .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7ebwfpg6V .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebwfpg6V .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebwfpg6V .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ebwfpg6V .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebwfpg6V .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7ebwfpg6V .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ebwfpg6V .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ebwfpg6V .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ebwfpg6V .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v2P7xV6Ylm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v2P7xV6Ylm .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v2P7xV6Ylm .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-v2P7xV6Ylm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v2P7xV6Ylm .inner-container {
    width: 100% !important;
  }
}
.cid-v7ebxbYeob {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7ebxbYeob .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ebxbYeob .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ebxbYeob .row {
  justify-content: center;
}
.cid-v7ebxbYeob .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ebxbYeob .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ebxbYeob .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ebxbYeob .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ebxbYeob .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ebxbYeob .mbr-text_1,
.cid-v7ebxbYeob .mbr-text_2,
.cid-v7ebxbYeob .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ebxbYeob .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebxbYeob .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebxbYeob .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7ebxbYeob .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7ebxbYeob .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebxbYeob .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebxbYeob .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ebxbYeob .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebxbYeob .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7ebxbYeob .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ebxbYeob .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7ebxbYeob .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ebxbYeob .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v2P7xVbm3F {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v2P7xVdIm6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v2P7xVdIm6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v2P7xVdIm6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v2P7xVdIm6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v2P7xVdIm6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v2P7xVdIm6 .row > .row {
  display: block;
}
.cid-v2P7xVdIm6 .mbr-gallery-item {
  width: 100%;
}
.cid-v2P7xVdIm6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v2P7xVdIm6 .mbr-gallery-item > div {
  position: relative;
}
.cid-v2P7xVdIm6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v2P7xVdIm6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v2P7xVdIm6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v2P7xVdIm6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v2P7xVqkZt {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-v2P7xVqkZt .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v2P7xVqkZt div.b {
  padding-top: 2rem;
}
.cid-v2P7NsfMaz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v2P7NsfMaz .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v2P7NsfMaz .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v2P7NsfMaz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v2P7NsfMaz .inner-container {
    width: 100% !important;
  }
}
.cid-v7ebNCFGtK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7ebNCFGtK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ebNCFGtK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ebNCFGtK .row {
  justify-content: center;
}
.cid-v7ebNCFGtK .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ebNCFGtK .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ebNCFGtK .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ebNCFGtK .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ebNCFGtK .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ebNCFGtK .mbr-text_1,
.cid-v7ebNCFGtK .mbr-text_2,
.cid-v7ebNCFGtK .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ebNCFGtK .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebNCFGtK .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebNCFGtK .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ebNCFGtK .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ebNCFGtK .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebNCFGtK .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebNCFGtK .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ebNCFGtK .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebNCFGtK .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7ebNCFGtK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ebNCFGtK .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ebNCFGtK .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ebNCFGtK .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7ebOz5jzG {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7ebOz5jzG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ebOz5jzG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ebOz5jzG .row {
  justify-content: center;
}
.cid-v7ebOz5jzG .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ebOz5jzG .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ebOz5jzG .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ebOz5jzG .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ebOz5jzG .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ebOz5jzG .mbr-text_1,
.cid-v7ebOz5jzG .mbr-text_2,
.cid-v7ebOz5jzG .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ebOz5jzG .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebOz5jzG .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebOz5jzG .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7ebOz5jzG .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7ebOz5jzG .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebOz5jzG .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebOz5jzG .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ebOz5jzG .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebOz5jzG .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #f7ed4a;
}
.cid-v7ebOz5jzG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ebOz5jzG .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7ebOz5jzG .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ebOz5jzG .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v2P7NsIQu6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v2P7NsIQu6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v2P7NsIQu6 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-v2P7NsIQu6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v2P7NsIQu6 .inner-container {
    width: 100% !important;
  }
}
.cid-v7ebPBOwSZ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v7ebPBOwSZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ebPBOwSZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7ebPBOwSZ .row {
  justify-content: center;
}
.cid-v7ebPBOwSZ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7ebPBOwSZ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7ebPBOwSZ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7ebPBOwSZ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7ebPBOwSZ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7ebPBOwSZ .mbr-text_1,
.cid-v7ebPBOwSZ .mbr-text_2,
.cid-v7ebPBOwSZ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7ebPBOwSZ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #3bec15;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebPBOwSZ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebPBOwSZ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7ebPBOwSZ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7ebPBOwSZ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebPBOwSZ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7ebPBOwSZ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7ebPBOwSZ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #3bec15;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7ebPBOwSZ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #3bec15;
}
.cid-v7ebPBOwSZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7ebPBOwSZ .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-v7ebPBOwSZ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7ebPBOwSZ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v2P7NsOjL9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v2P7NsT5Wt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v2P7NsT5Wt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v2P7NsT5Wt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v2P7NsT5Wt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v2P7NsT5Wt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v2P7NsT5Wt .row > .row {
  display: block;
}
.cid-v2P7NsT5Wt .mbr-gallery-item {
  width: 100%;
}
.cid-v2P7NsT5Wt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v2P7NsT5Wt .mbr-gallery-item > div {
  position: relative;
}
.cid-v2P7NsT5Wt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v2P7NsT5Wt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v2P7NsT5Wt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v2P7NsT5Wt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v2P7Nt7DLs {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-v2P7Nt7DLs .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v2P7Nt7DLs div.b {
  padding-top: 2rem;
}
.cid-v6TgqFJQ45 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TgqFJQ45 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6TgqFJQ45 .section-text {
  padding: 2rem 0;
}
.cid-v6TgqFJQ45 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6TgqFJQ45 .inner-container {
    width: 100% !important;
  }
}
.cid-v6TgqGmjEw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TgqGmjEw .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6TgqGmjEw .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6TgqGmjEw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6TgqGmjEw .inner-container {
    width: 100% !important;
  }
}
.cid-v6TgqGrGfc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #64df87;
}
.cid-v6TgqGrGfc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6TgqGrGfc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6TgqGrGfc .row {
  justify-content: center;
}
.cid-v6TgqGrGfc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6TgqGrGfc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6TgqGrGfc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6TgqGrGfc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6TgqGrGfc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6TgqGrGfc .mbr-text_1,
.cid-v6TgqGrGfc .mbr-text_2,
.cid-v6TgqGrGfc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6TgqGrGfc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TgqGrGfc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6TgqGrGfc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6TgqGrGfc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6TgqGrGfc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TgqGrGfc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6TgqGrGfc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6TgqGrGfc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TgqGrGfc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6TgqGrGfc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6TgqGrGfc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6TgqGrGfc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6TgqGrGfc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6TgqGFDhh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #64df87;
}
.cid-v6TgqGFDhh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6TgqGFDhh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6TgqGFDhh .row {
  justify-content: center;
}
.cid-v6TgqGFDhh .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6TgqGFDhh .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6TgqGFDhh .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6TgqGFDhh .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6TgqGFDhh .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6TgqGFDhh .mbr-text_1,
.cid-v6TgqGFDhh .mbr-text_2,
.cid-v6TgqGFDhh .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6TgqGFDhh .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TgqGFDhh .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6TgqGFDhh .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6TgqGFDhh .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6TgqGFDhh .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TgqGFDhh .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6TgqGFDhh .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6TgqGFDhh .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TgqGFDhh .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6TgqGFDhh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6TgqGFDhh .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6TgqGFDhh .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6TgqGFDhh .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6TgqGPKnL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TgqGPKnL .mbr-section-subtitle {
  color: #767676;
}
.cid-v6TgqGPKnL .container-table {
  margin: 0 auto;
}
.cid-v6TgqGPKnL .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6TgqGPKnL .dataTables_wrapper {
  display: block;
}
.cid-v6TgqGPKnL .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6TgqGPKnL .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6TgqGPKnL table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6TgqGPKnL table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6TgqGPKnL table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6TgqGPKnL table td {
  border-top: 1px solid #232323;
}
.cid-v6TgqGPKnL .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6TgqGPKnL .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6TgqGPKnL .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6TgqGPKnL .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6TgqGPKnL .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6TgqGPKnL .dataTables_filter {
    text-align: center;
  }
  .cid-v6TgqGPKnL .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6TgqGPKnL .mbr-section-title {
  color: #ff3366;
}
.cid-v6TgqGPKnL .head-item {
  text-align: center;
  color: #232323;
}
.cid-v6TgqGPKnL .body-item {
  text-align: center;
}
.cid-v6TgqH7DsH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TgqH7DsH .mbr-section-subtitle {
  color: #232323;
}
.cid-v6TgqH7DsH .container-table {
  margin: 0 auto;
}
.cid-v6TgqH7DsH .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6TgqH7DsH .dataTables_wrapper {
  display: block;
}
.cid-v6TgqH7DsH .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6TgqH7DsH .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6TgqH7DsH table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6TgqH7DsH table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6TgqH7DsH table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6TgqH7DsH table td {
  border-top: 1px solid #232323;
}
.cid-v6TgqH7DsH .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6TgqH7DsH .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6TgqH7DsH .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6TgqH7DsH .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6TgqH7DsH .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6TgqH7DsH .dataTables_filter {
    text-align: center;
  }
  .cid-v6TgqH7DsH .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6TgqH7DsH .mbr-section-title {
  color: #232323;
}
.cid-v6TgqH7DsH .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-v6TgqH7DsH .body-item {
  text-align: center;
}
.cid-v6TgqHmhcO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TgqHmhcO .mbr-section-subtitle {
  color: #232323;
}
.cid-v6TgqHmhcO .container-table {
  margin: 0 auto;
}
.cid-v6TgqHmhcO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6TgqHmhcO .dataTables_wrapper {
  display: block;
}
.cid-v6TgqHmhcO .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6TgqHmhcO .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6TgqHmhcO table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6TgqHmhcO table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6TgqHmhcO table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6TgqHmhcO table td {
  border-top: 1px solid #232323;
}
.cid-v6TgqHmhcO .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6TgqHmhcO .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6TgqHmhcO .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6TgqHmhcO .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6TgqHmhcO .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6TgqHmhcO .dataTables_filter {
    text-align: center;
  }
  .cid-v6TgqHmhcO .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6TgqHmhcO .mbr-section-title {
  color: #232323;
}
.cid-v6TgqHmhcO .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-v6TgqHmhcO .body-item {
  text-align: center;
}
.cid-v6TgqHC6nT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TgqHC6nT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6TgqHC6nT .section-text {
  padding: 2rem 0;
}
.cid-v6TgqHC6nT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6TgqHC6nT .inner-container {
    width: 100% !important;
  }
}
.cid-v6TgqHC6nT .section-text DIV {
  text-align: center;
}
.cid-v6TgqHHiU7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TgqHHiU7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TgqHHiU7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TgqHHiU7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TgqHHiU7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TgqHHiU7 .row > .row {
  display: block;
}
.cid-v6TgqHHiU7 .mbr-gallery-item {
  width: 100%;
}
.cid-v6TgqHHiU7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TgqHHiU7 .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TgqHHiU7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TgqHHiU7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TgqHHiU7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TgqHHiU7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TgqHVbMM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-v6TgqI0idX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TgqI0idX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TgqI0idX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TgqI0idX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TgqI0idX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TgqI0idX .row > .row {
  display: block;
}
.cid-v6TgqI0idX .mbr-gallery-item {
  width: 100%;
}
.cid-v6TgqI0idX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TgqI0idX .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TgqI0idX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TgqI0idX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TgqI0idX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TgqI0idX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TgqIeWhs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-v6Tim9jl90 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6Tim9jl90 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6Tim9jl90 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6Tim9jl90 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6Tim9jl90 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6Tim9jl90 .row > .row {
  display: block;
}
.cid-v6Tim9jl90 .mbr-gallery-item {
  width: 100%;
}
.cid-v6Tim9jl90 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6Tim9jl90 .mbr-gallery-item > div {
  position: relative;
}
.cid-v6Tim9jl90 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6Tim9jl90 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6Tim9jl90 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6Tim9jl90 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TgqIwBTA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-v6TiGxB9As {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TiGxB9As .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TiGxB9As .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TiGxB9As .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TiGxB9As .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TiGxB9As .row > .row {
  display: block;
}
.cid-v6TiGxB9As .mbr-gallery-item {
  width: 100%;
}
.cid-v6TiGxB9As .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TiGxB9As .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TiGxB9As .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TiGxB9As .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TiGxB9As .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TiGxB9As .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TgqIVbop {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-v6TjhhvHZi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TjhhvHZi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TjhhvHZi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TjhhvHZi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TjhhvHZi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TjhhvHZi .row > .row {
  display: block;
}
.cid-v6TjhhvHZi .mbr-gallery-item {
  width: 100%;
}
.cid-v6TjhhvHZi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TjhhvHZi .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TjhhvHZi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TjhhvHZi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TjhhvHZi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TjhhvHZi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-vdLvXgs5s6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-vdLvXgs5s6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-vdLvXgs5s6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vdLvXgs5s6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vdLvXgs5s6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-vdLvXgs5s6 .row > .row {
  display: block;
}
.cid-vdLvXgs5s6 .mbr-gallery-item {
  width: 100%;
}
.cid-vdLvXgs5s6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-vdLvXgs5s6 .mbr-gallery-item > div {
  position: relative;
}
.cid-vdLvXgs5s6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-vdLvXgs5s6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-vdLvXgs5s6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-vdLvXgs5s6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TgqJf8VW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-v6TiIqLiWT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TiIqLiWT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TiIqLiWT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TiIqLiWT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TiIqLiWT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TiIqLiWT .row > .row {
  display: block;
}
.cid-v6TiIqLiWT .mbr-gallery-item {
  width: 100%;
}
.cid-v6TiIqLiWT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TiIqLiWT .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TiIqLiWT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TiIqLiWT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TiIqLiWT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TiIqLiWT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TgqJApE2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-v6TgqJIBso {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-v6TgqJQpYG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-v6TgqJXQYp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-v6TgqK4iFj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-v6TiJR05WX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TiJR05WX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TiJR05WX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TiJR05WX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TiJR05WX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TiJR05WX .row > .row {
  display: block;
}
.cid-v6TiJR05WX .mbr-gallery-item {
  width: 100%;
}
.cid-v6TiJR05WX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TiJR05WX .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TiJR05WX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TiJR05WX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TiJR05WX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TiJR05WX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TgqKoN4C {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-v6TiKKEonT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TiKKEonT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TiKKEonT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TiKKEonT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TiKKEonT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TiKKEonT .row > .row {
  display: block;
}
.cid-v6TiKKEonT .mbr-gallery-item {
  width: 100%;
}
.cid-v6TiKKEonT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TiKKEonT .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TiKKEonT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TiKKEonT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TiKKEonT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TiKKEonT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TgqKKc7X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-v6TiLzslyg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TiLzslyg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TiLzslyg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TiLzslyg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TiLzslyg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TiLzslyg .row > .row {
  display: block;
}
.cid-v6TiLzslyg .mbr-gallery-item {
  width: 100%;
}
.cid-v6TiLzslyg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TiLzslyg .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TiLzslyg .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TiLzslyg .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TiLzslyg .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TiLzslyg .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TgqLfLhy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-v6TiMXlwuW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TiMXlwuW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TiMXlwuW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TiMXlwuW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TiMXlwuW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TiMXlwuW .row > .row {
  display: block;
}
.cid-v6TiMXlwuW .mbr-gallery-item {
  width: 100%;
}
.cid-v6TiMXlwuW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TiMXlwuW .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TiMXlwuW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TiMXlwuW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TiMXlwuW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TiMXlwuW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TgqLIW3r {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #64df87;
}
.cid-v6TiOYu1xb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #64df87;
}
.cid-v6TiOYu1xb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TiOYu1xb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TiOYu1xb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TiOYu1xb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TiOYu1xb .row > .row {
  display: block;
}
.cid-v6TiOYu1xb .mbr-gallery-item {
  width: 100%;
}
.cid-v6TiOYu1xb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TiOYu1xb .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TiOYu1xb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TiOYu1xb .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TiOYu1xb .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TiOYu1xb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TgqMDK80 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #64df87;
}
.cid-v6TgqMDK80 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v6TgqMDK80 div.b {
  padding-top: 2rem;
}
.cid-v6TgqMDK80 H5 {
  color: #232323;
}
.cid-v6TndDRKMq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TndDRKMq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6TndDRKMq .section-text {
  padding: 2rem 0;
}
.cid-v6TndDRKMq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6TndDRKMq .inner-container {
    width: 100% !important;
  }
}
.cid-v6TndErgNF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TndErgNF .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6TndErgNF .section-text {
  padding: 2rem 0;
}
.cid-v6TndErgNF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6TndErgNF .inner-container {
    width: 100% !important;
  }
}
.cid-v6TndEx4sX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ecae15;
}
.cid-v6TndEx4sX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6TndEx4sX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6TndEx4sX .row {
  justify-content: center;
}
.cid-v6TndEx4sX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6TndEx4sX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6TndEx4sX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6TndEx4sX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6TndEx4sX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6TndEx4sX .mbr-text_1,
.cid-v6TndEx4sX .mbr-text_2,
.cid-v6TndEx4sX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6TndEx4sX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TndEx4sX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6TndEx4sX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6TndEx4sX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6TndEx4sX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TndEx4sX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6TndEx4sX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6TndEx4sX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TndEx4sX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6TndEx4sX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6TndEx4sX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6TndEx4sX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6TndEx4sX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6TndEJT2X {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ecae15;
}
.cid-v6TndEJT2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6TndEJT2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6TndEJT2X .row {
  justify-content: center;
}
.cid-v6TndEJT2X .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6TndEJT2X .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6TndEJT2X .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6TndEJT2X .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6TndEJT2X .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6TndEJT2X .mbr-text_1,
.cid-v6TndEJT2X .mbr-text_2,
.cid-v6TndEJT2X .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6TndEJT2X .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TndEJT2X .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6TndEJT2X .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6TndEJT2X .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6TndEJT2X .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TndEJT2X .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6TndEJT2X .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6TndEJT2X .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TndEJT2X .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6TndEJT2X .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6TndEJT2X .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6TndEJT2X .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6TndEJT2X .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6TndERTgV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TndERTgV .mbr-section-subtitle {
  color: #767676;
}
.cid-v6TndERTgV .container-table {
  margin: 0 auto;
}
.cid-v6TndERTgV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6TndERTgV .dataTables_wrapper {
  display: block;
}
.cid-v6TndERTgV .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6TndERTgV .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6TndERTgV table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6TndERTgV table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6TndERTgV table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6TndERTgV table td {
  border-top: 1px solid #232323;
}
.cid-v6TndERTgV table.table {
  background: #ecae15;
}
.cid-v6TndERTgV .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6TndERTgV .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6TndERTgV .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6TndERTgV .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6TndERTgV .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6TndERTgV .dataTables_filter {
    text-align: center;
  }
  .cid-v6TndERTgV .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6TndERTgV .mbr-section-title {
  color: #232323;
}
.cid-v6TndERTgV .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v6TndERTgV .body-item {
  text-align: center;
}
.cid-v6TndF77D7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TndF77D7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TndF77D7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TndF77D7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TndF77D7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TndF77D7 .row > .row {
  display: block;
}
.cid-v6TndF77D7 .mbr-gallery-item {
  width: 100%;
}
.cid-v6TndF77D7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TndF77D7 .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TndF77D7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TndF77D7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TndF77D7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TndF77D7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TndFmKih {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TndFmKih .mbr-section-subtitle {
  color: #232323;
}
.cid-v6TndFmKih .container-table {
  margin: 0 auto;
}
.cid-v6TndFmKih .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6TndFmKih .dataTables_wrapper {
  display: block;
}
.cid-v6TndFmKih .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6TndFmKih .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6TndFmKih table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6TndFmKih table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6TndFmKih table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6TndFmKih table td {
  border-top: 1px solid #232323;
}
.cid-v6TndFmKih table.table {
  background: #ecae15;
}
.cid-v6TndFmKih .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6TndFmKih .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6TndFmKih .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6TndFmKih .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6TndFmKih .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6TndFmKih .dataTables_filter {
    text-align: center;
  }
  .cid-v6TndFmKih .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6TndFmKih .mbr-section-title {
  color: #232323;
}
.cid-v6TndFmKih .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-v6TndFmKih .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6TndFBctG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TndFBctG .mbr-section-subtitle {
  color: #232323;
}
.cid-v6TndFBctG .container-table {
  margin: 0 auto;
}
.cid-v6TndFBctG .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6TndFBctG .dataTables_wrapper {
  display: block;
}
.cid-v6TndFBctG .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6TndFBctG .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6TndFBctG table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6TndFBctG table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6TndFBctG table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6TndFBctG table td {
  border-top: 1px solid #232323;
}
.cid-v6TndFBctG table.table {
  background: #ecae15;
}
.cid-v6TndFBctG .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6TndFBctG .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6TndFBctG .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6TndFBctG .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6TndFBctG .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6TndFBctG .dataTables_filter {
    text-align: center;
  }
  .cid-v6TndFBctG .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6TndFBctG .mbr-section-title {
  color: #232323;
}
.cid-v6TndFBctG .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-v6TndFBctG .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6TndFO0ui {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-v6TpONkJlN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-v6TpONkJlN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TpONkJlN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TpONkJlN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TpONkJlN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TpONkJlN .row > .row {
  display: block;
}
.cid-v6TpONkJlN .mbr-gallery-item {
  width: 100%;
}
.cid-v6TpONkJlN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TpONkJlN .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TpONkJlN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TpONkJlN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TpONkJlN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TpONkJlN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v9Fut0eeuW {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v9Fut0eeuW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v9Fut0eeuW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v9Fut0eeuW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v9Fut0eeuW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v9Fut0eeuW .row > .row {
  display: block;
}
.cid-v9Fut0eeuW .mbr-gallery-item {
  width: 100%;
}
.cid-v9Fut0eeuW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v9Fut0eeuW .mbr-gallery-item > div {
  position: relative;
}
.cid-v9Fut0eeuW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v9Fut0eeuW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v9Fut0eeuW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v9Fut0eeuW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TndGu0kc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-v6TqHr4L5q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TqHr4L5q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TqHr4L5q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TqHr4L5q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TqHr4L5q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TqHr4L5q .row > .row {
  display: block;
}
.cid-v6TqHr4L5q .mbr-gallery-item {
  width: 100%;
}
.cid-v6TqHr4L5q .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TqHr4L5q .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TqHr4L5q .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TqHr4L5q .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TqHr4L5q .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TqHr4L5q .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TndH2emG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-v6TqIv3HmB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-v6TqIv3HmB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TqIv3HmB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TqIv3HmB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TqIv3HmB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TqIv3HmB .row > .row {
  display: block;
}
.cid-v6TqIv3HmB .mbr-gallery-item {
  width: 100%;
}
.cid-v6TqIv3HmB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TqIv3HmB .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TqIv3HmB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TqIv3HmB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TqIv3HmB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TqIv3HmB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-vfvo1EGi0s {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-vfvo1EGi0s .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-vfvo1EGi0s .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vfvo1EGi0s .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vfvo1EGi0s .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-vfvo1EGi0s .row > .row {
  display: block;
}
.cid-vfvo1EGi0s .mbr-gallery-item {
  width: 100%;
}
.cid-vfvo1EGi0s .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-vfvo1EGi0s .mbr-gallery-item > div {
  position: relative;
}
.cid-vfvo1EGi0s .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-vfvo1EGi0s .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-vfvo1EGi0s .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-vfvo1EGi0s .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TndHUs8G {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-v6TqJLscqy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TqJLscqy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TqJLscqy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TqJLscqy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TqJLscqy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TqJLscqy .row > .row {
  display: block;
}
.cid-v6TqJLscqy .mbr-gallery-item {
  width: 100%;
}
.cid-v6TqJLscqy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TqJLscqy .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TqJLscqy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TqJLscqy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TqJLscqy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TqJLscqy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TndINgjO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-v6TqKO9bJN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TqKO9bJN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TqKO9bJN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TqKO9bJN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TqKO9bJN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TqKO9bJN .row > .row {
  display: block;
}
.cid-v6TqKO9bJN .mbr-gallery-item {
  width: 100%;
}
.cid-v6TqKO9bJN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TqKO9bJN .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TqKO9bJN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TqKO9bJN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TqKO9bJN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TqKO9bJN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TndJSyUw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-v6TqMfekOx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TqMfekOx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TqMfekOx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TqMfekOx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TqMfekOx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TqMfekOx .row > .row {
  display: block;
}
.cid-v6TqMfekOx .mbr-gallery-item {
  width: 100%;
}
.cid-v6TqMfekOx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TqMfekOx .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TqMfekOx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TqMfekOx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TqMfekOx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TqMfekOx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TndKGnEJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-v6TqNa3GFx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TqNa3GFx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TqNa3GFx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TqNa3GFx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TqNa3GFx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TqNa3GFx .row > .row {
  display: block;
}
.cid-v6TqNa3GFx .mbr-gallery-item {
  width: 100%;
}
.cid-v6TqNa3GFx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TqNa3GFx .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TqNa3GFx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TqNa3GFx .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TqNa3GFx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TqNa3GFx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TndLS44Z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-v6TqOd9XO9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TqOd9XO9 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TqOd9XO9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TqOd9XO9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TqOd9XO9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TqOd9XO9 .row > .row {
  display: block;
}
.cid-v6TqOd9XO9 .mbr-gallery-item {
  width: 100%;
}
.cid-v6TqOd9XO9 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TqOd9XO9 .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TqOd9XO9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TqOd9XO9 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TqOd9XO9 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TqOd9XO9 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TndNcu7H {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-v6TqPn5iJ7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TqPn5iJ7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TqPn5iJ7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TqPn5iJ7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TqPn5iJ7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TqPn5iJ7 .row > .row {
  display: block;
}
.cid-v6TqPn5iJ7 .mbr-gallery-item {
  width: 100%;
}
.cid-v6TqPn5iJ7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TqPn5iJ7 .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TqPn5iJ7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TqPn5iJ7 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TqPn5iJ7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TqPn5iJ7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TndOD6l8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-v6TqQyUhoj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TqQyUhoj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TqQyUhoj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TqQyUhoj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TqQyUhoj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TqQyUhoj .row > .row {
  display: block;
}
.cid-v6TqQyUhoj .mbr-gallery-item {
  width: 100%;
}
.cid-v6TqQyUhoj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TqQyUhoj .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TqQyUhoj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TqQyUhoj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TqQyUhoj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TqQyUhoj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TndQbDrZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-v6TqRRCsmU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TqRRCsmU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TqRRCsmU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TqRRCsmU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TqRRCsmU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TqRRCsmU .row > .row {
  display: block;
}
.cid-v6TqRRCsmU .mbr-gallery-item {
  width: 100%;
}
.cid-v6TqRRCsmU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TqRRCsmU .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TqRRCsmU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TqRRCsmU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TqRRCsmU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TqRRCsmU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TndRm0up {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ecae15;
}
.cid-v6TqSQ8q01 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ecae15;
}
.cid-v6TqSQ8q01 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TqSQ8q01 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TqSQ8q01 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TqSQ8q01 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TqSQ8q01 .row > .row {
  display: block;
}
.cid-v6TqSQ8q01 .mbr-gallery-item {
  width: 100%;
}
.cid-v6TqSQ8q01 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TqSQ8q01 .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TqSQ8q01 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TqSQ8q01 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TqSQ8q01 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TqSQ8q01 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TndSCv42 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ecae15;
}
.cid-v6TndSCv42 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v6TndSCv42 div.b {
  padding-top: 2rem;
}
.cid-v6TndSCv42 H5 {
  color: #232323;
}
.cid-v6TsY9DIsh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TsY9DIsh .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6TsY9DIsh .section-text {
  padding: 2rem 0;
}
.cid-v6TsY9DIsh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6TsY9DIsh .inner-container {
    width: 100% !important;
  }
}
.cid-v78wpURT5h {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v78wpURT5h .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v78wpURT5h .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v78wpURT5h .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v78wpURT5h .inner-container {
    width: 100% !important;
  }
}
.cid-v6TsYa5bhZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TsYa5bhZ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6TsYa5bhZ .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v6TsYa5bhZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6TsYa5bhZ .inner-container {
    width: 100% !important;
  }
}
.cid-v6TsYaaMTf {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #15ece0;
}
.cid-v6TsYaaMTf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6TsYaaMTf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6TsYaaMTf .row {
  justify-content: center;
}
.cid-v6TsYaaMTf .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6TsYaaMTf .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6TsYaaMTf .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6TsYaaMTf .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6TsYaaMTf .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6TsYaaMTf .mbr-text_1,
.cid-v6TsYaaMTf .mbr-text_2,
.cid-v6TsYaaMTf .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6TsYaaMTf .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TsYaaMTf .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6TsYaaMTf .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6TsYaaMTf .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6TsYaaMTf .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TsYaaMTf .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6TsYaaMTf .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6TsYaaMTf .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TsYaaMTf .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6TsYaaMTf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6TsYaaMTf .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6TsYaaMTf .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6TsYaaMTf .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6TsYandXQ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #15ece0;
}
.cid-v6TsYandXQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6TsYandXQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6TsYandXQ .row {
  justify-content: center;
}
.cid-v6TsYandXQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6TsYandXQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6TsYandXQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6TsYandXQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6TsYandXQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6TsYandXQ .mbr-text_1,
.cid-v6TsYandXQ .mbr-text_2,
.cid-v6TsYandXQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6TsYandXQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TsYandXQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6TsYandXQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6TsYandXQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6TsYandXQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TsYandXQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6TsYandXQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6TsYandXQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6TsYandXQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6TsYandXQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6TsYandXQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6TsYandXQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6TsYandXQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6TsYav8dw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TsYav8dw .mbr-section-subtitle {
  color: #767676;
}
.cid-v6TsYav8dw .container-table {
  margin: 0 auto;
}
.cid-v6TsYav8dw .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6TsYav8dw .dataTables_wrapper {
  display: block;
}
.cid-v6TsYav8dw .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6TsYav8dw .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6TsYav8dw table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6TsYav8dw table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6TsYav8dw table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6TsYav8dw table td {
  border-top: 1px solid #232323;
}
.cid-v6TsYav8dw table.table {
  background: #15ece0;
}
.cid-v6TsYav8dw .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6TsYav8dw .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6TsYav8dw .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6TsYav8dw .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6TsYav8dw .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6TsYav8dw .dataTables_filter {
    text-align: center;
  }
  .cid-v6TsYav8dw .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6TsYav8dw .mbr-section-title {
  color: #232323;
}
.cid-v6TsYav8dw .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v6TsYav8dw .body-item {
  text-align: center;
}
.cid-v6TsYaJ2fH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TsYaJ2fH .mbr-section-subtitle {
  color: #232323;
}
.cid-v6TsYaJ2fH .container-table {
  margin: 0 auto;
}
.cid-v6TsYaJ2fH .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6TsYaJ2fH .dataTables_wrapper {
  display: block;
}
.cid-v6TsYaJ2fH .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6TsYaJ2fH .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6TsYaJ2fH table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6TsYaJ2fH table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6TsYaJ2fH table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6TsYaJ2fH table td {
  border-top: 1px solid #232323;
}
.cid-v6TsYaJ2fH table.table {
  background: #15ece0;
}
.cid-v6TsYaJ2fH .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6TsYaJ2fH .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6TsYaJ2fH .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6TsYaJ2fH .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6TsYaJ2fH .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6TsYaJ2fH .dataTables_filter {
    text-align: center;
  }
  .cid-v6TsYaJ2fH .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6TsYaJ2fH .mbr-section-title {
  color: #232323;
}
.cid-v6TsYaJ2fH .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-v6TsYaJ2fH .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6TsYaXxnG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TsYaXxnG .mbr-section-subtitle {
  color: #232323;
}
.cid-v6TsYaXxnG .container-table {
  margin: 0 auto;
}
.cid-v6TsYaXxnG .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6TsYaXxnG .dataTables_wrapper {
  display: block;
}
.cid-v6TsYaXxnG .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6TsYaXxnG .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6TsYaXxnG table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6TsYaXxnG table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6TsYaXxnG table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6TsYaXxnG table td {
  border-top: 1px solid #232323;
}
.cid-v6TsYaXxnG table.table {
  background: #15ece0;
}
.cid-v6TsYaXxnG .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6TsYaXxnG .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6TsYaXxnG .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6TsYaXxnG .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6TsYaXxnG .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6TsYaXxnG .dataTables_filter {
    text-align: center;
  }
  .cid-v6TsYaXxnG .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6TsYaXxnG .mbr-section-title {
  color: #232323;
}
.cid-v6TsYaXxnG .head-item {
  text-align: center;
  color: #ff3366;
}
.cid-v6TsYaXxnG .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6TsYb9i6q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TsYb9i6q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TsYb9i6q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TsYb9i6q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TsYb9i6q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TsYb9i6q .row > .row {
  display: block;
}
.cid-v6TsYb9i6q .mbr-gallery-item {
  width: 100%;
}
.cid-v6TsYb9i6q .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TsYb9i6q .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TsYb9i6q .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TsYb9i6q .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TsYb9i6q .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TsYb9i6q .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TsYbkxGz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-v6Tvq01Et5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6Tvq01Et5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6Tvq01Et5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6Tvq01Et5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6Tvq01Et5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6Tvq01Et5 .row > .row {
  display: block;
}
.cid-v6Tvq01Et5 .mbr-gallery-item {
  width: 100%;
}
.cid-v6Tvq01Et5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6Tvq01Et5 .mbr-gallery-item > div {
  position: relative;
}
.cid-v6Tvq01Et5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6Tvq01Et5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6Tvq01Et5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6Tvq01Et5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TsYbC2lm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-v6TvPyuoxR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TvPyuoxR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TvPyuoxR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TvPyuoxR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TvPyuoxR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TvPyuoxR .row > .row {
  display: block;
}
.cid-v6TvPyuoxR .mbr-gallery-item {
  width: 100%;
}
.cid-v6TvPyuoxR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TvPyuoxR .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TvPyuoxR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TvPyuoxR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TvPyuoxR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TvPyuoxR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TsYbTt7N {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-v6TvQU4aDs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TvQU4aDs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TvQU4aDs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TvQU4aDs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TvQU4aDs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TvQU4aDs .row > .row {
  display: block;
}
.cid-v6TvQU4aDs .mbr-gallery-item {
  width: 100%;
}
.cid-v6TvQU4aDs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TvQU4aDs .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TvQU4aDs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TvQU4aDs .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TvQU4aDs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TvQU4aDs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TsYcbvBQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-v6TvRXjJLe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TvRXjJLe .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TvRXjJLe .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TvRXjJLe .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TvRXjJLe .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TvRXjJLe .row > .row {
  display: block;
}
.cid-v6TvRXjJLe .mbr-gallery-item {
  width: 100%;
}
.cid-v6TvRXjJLe .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TvRXjJLe .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TvRXjJLe .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TvRXjJLe .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TvRXjJLe .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TvRXjJLe .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TsYcu7v1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-v6TvSSqe1W {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TvSSqe1W .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TvSSqe1W .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TvSSqe1W .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TvSSqe1W .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TvSSqe1W .row > .row {
  display: block;
}
.cid-v6TvSSqe1W .mbr-gallery-item {
  width: 100%;
}
.cid-v6TvSSqe1W .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TvSSqe1W .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TvSSqe1W .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TvSSqe1W .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TvSSqe1W .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TvSSqe1W .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TsYcPtAA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-v6TvTS4ps8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TvTS4ps8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TvTS4ps8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TvTS4ps8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TvTS4ps8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TvTS4ps8 .row > .row {
  display: block;
}
.cid-v6TvTS4ps8 .mbr-gallery-item {
  width: 100%;
}
.cid-v6TvTS4ps8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TvTS4ps8 .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TvTS4ps8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TvTS4ps8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TvTS4ps8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TvTS4ps8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TsYd9wS9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-v6TvUUImIr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TvUUImIr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TvUUImIr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TvUUImIr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TvUUImIr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TvUUImIr .row > .row {
  display: block;
}
.cid-v6TvUUImIr .mbr-gallery-item {
  width: 100%;
}
.cid-v6TvUUImIr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TvUUImIr .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TvUUImIr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TvUUImIr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TvUUImIr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TvUUImIr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TsYdF2wO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-v6TvVSeDYH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TvVSeDYH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TvVSeDYH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TvVSeDYH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TvVSeDYH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TvVSeDYH .row > .row {
  display: block;
}
.cid-v6TvVSeDYH .mbr-gallery-item {
  width: 100%;
}
.cid-v6TvVSeDYH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TvVSeDYH .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TvVSeDYH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TvVSeDYH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TvVSeDYH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TvVSeDYH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TsYe3SmQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-v6TvWYbks4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TvWYbks4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TvWYbks4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TvWYbks4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TvWYbks4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TvWYbks4 .row > .row {
  display: block;
}
.cid-v6TvWYbks4 .mbr-gallery-item {
  width: 100%;
}
.cid-v6TvWYbks4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TvWYbks4 .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TvWYbks4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TvWYbks4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TvWYbks4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TvWYbks4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TsYepHGj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-v6TvXYoTZD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TvXYoTZD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TvXYoTZD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TvXYoTZD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TvXYoTZD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TvXYoTZD .row > .row {
  display: block;
}
.cid-v6TvXYoTZD .mbr-gallery-item {
  width: 100%;
}
.cid-v6TvXYoTZD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TvXYoTZD .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TvXYoTZD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TvXYoTZD .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TvXYoTZD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TvXYoTZD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TsYeQWri {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-v6TvZ0ykPi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6TvZ0ykPi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TvZ0ykPi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TvZ0ykPi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TvZ0ykPi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TvZ0ykPi .row > .row {
  display: block;
}
.cid-v6TvZ0ykPi .mbr-gallery-item {
  width: 100%;
}
.cid-v6TvZ0ykPi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TvZ0ykPi .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TvZ0ykPi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TvZ0ykPi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TvZ0ykPi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TvZ0ykPi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TsYflJSF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #15ece0;
}
.cid-v6Tw0eNmyy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #15ece0;
}
.cid-v6Tw0eNmyy .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6Tw0eNmyy .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6Tw0eNmyy .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6Tw0eNmyy .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6Tw0eNmyy .row > .row {
  display: block;
}
.cid-v6Tw0eNmyy .mbr-gallery-item {
  width: 100%;
}
.cid-v6Tw0eNmyy .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6Tw0eNmyy .mbr-gallery-item > div {
  position: relative;
}
.cid-v6Tw0eNmyy .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6Tw0eNmyy .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6Tw0eNmyy .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6Tw0eNmyy .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6TsYfP3gm {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #15ece0;
}
.cid-v6TsYfP3gm .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v6TsYfP3gm div.b {
  padding-top: 2rem;
}
.cid-v6TsYfP3gm H5 {
  color: #232323;
}
.cid-v6THxs0CPZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6THxs0CPZ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6THxs0CPZ .section-text {
  padding: 2rem 0;
}
.cid-v6THxs0CPZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6THxs0CPZ .inner-container {
    width: 100% !important;
  }
}
.cid-v6WmPZcruZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v6WmPZcruZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6WmPZcruZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6WmPZcruZ .row {
  justify-content: center;
}
.cid-v6WmPZcruZ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6WmPZcruZ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6WmPZcruZ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6WmPZcruZ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6WmPZcruZ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6WmPZcruZ .mbr-text_1,
.cid-v6WmPZcruZ .mbr-text_2,
.cid-v6WmPZcruZ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6WmPZcruZ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WmPZcruZ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6WmPZcruZ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6WmPZcruZ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6WmPZcruZ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WmPZcruZ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6WmPZcruZ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6WmPZcruZ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WmPZcruZ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6WmPZcruZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6WmPZcruZ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6WmPZcruZ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6WmPZcruZ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6WmQZXA47 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v6WmQZXA47 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6WmQZXA47 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6WmQZXA47 .row {
  justify-content: center;
}
.cid-v6WmQZXA47 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6WmQZXA47 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6WmQZXA47 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6WmQZXA47 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6WmQZXA47 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6WmQZXA47 .mbr-text_1,
.cid-v6WmQZXA47 .mbr-text_2,
.cid-v6WmQZXA47 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6WmQZXA47 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WmQZXA47 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6WmQZXA47 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6WmQZXA47 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6WmQZXA47 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WmQZXA47 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6WmQZXA47 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6WmQZXA47 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WmQZXA47 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6WmQZXA47 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6WmQZXA47 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6WmQZXA47 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6WmQZXA47 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6THxsEPs1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6THxsEPs1 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6THxsEPs1 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-v6THxsEPs1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6THxsEPs1 .inner-container {
    width: 100% !important;
  }
}
.cid-v6THxsHHPR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-v6THxsLr7t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6THxsLr7t .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6THxsLr7t .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-v6THxsLr7t .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6THxsLr7t .inner-container {
    width: 100% !important;
  }
}
.cid-v6THxsOFut {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6THxsOFut .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6THxsOFut .section-text {
  padding: 2rem 0;
}
.cid-v6THxsOFut .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6THxsOFut .inner-container {
    width: 100% !important;
  }
}
.cid-v6TJ4wU3Hq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6TJ4wU3Hq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6TJ4wU3Hq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6TJ4wU3Hq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6TJ4wU3Hq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6TJ4wU3Hq .row > .row {
  display: block;
}
.cid-v6TJ4wU3Hq .mbr-gallery-item {
  width: 100%;
}
.cid-v6TJ4wU3Hq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6TJ4wU3Hq .mbr-gallery-item > div {
  position: relative;
}
.cid-v6TJ4wU3Hq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6TJ4wU3Hq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6TJ4wU3Hq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6TJ4wU3Hq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6THxsSw4N {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-v6THxsSw4N .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v6THxsSw4N div.b {
  padding-top: 2rem;
}
.cid-v6THxsSw4N H5 {
  color: #232323;
}
.cid-v6WcK8qUXX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6WcK8qUXX .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6WcK8qUXX .section-text {
  padding: 2rem 0;
}
.cid-v6WcK8qUXX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6WcK8qUXX .inner-container {
    width: 100% !important;
  }
}
.cid-v6Wmw21c3d {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v6Wmw21c3d .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Wmw21c3d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Wmw21c3d .row {
  justify-content: center;
}
.cid-v6Wmw21c3d .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Wmw21c3d .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Wmw21c3d .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Wmw21c3d .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Wmw21c3d .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Wmw21c3d .mbr-text_1,
.cid-v6Wmw21c3d .mbr-text_2,
.cid-v6Wmw21c3d .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Wmw21c3d .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wmw21c3d .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Wmw21c3d .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Wmw21c3d .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Wmw21c3d .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wmw21c3d .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Wmw21c3d .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Wmw21c3d .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wmw21c3d .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6Wmw21c3d .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Wmw21c3d .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Wmw21c3d .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Wmw21c3d .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6Wmx9l48K {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v6Wmx9l48K .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6Wmx9l48K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6Wmx9l48K .row {
  justify-content: center;
}
.cid-v6Wmx9l48K .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6Wmx9l48K .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6Wmx9l48K .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6Wmx9l48K .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6Wmx9l48K .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6Wmx9l48K .mbr-text_1,
.cid-v6Wmx9l48K .mbr-text_2,
.cid-v6Wmx9l48K .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6Wmx9l48K .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wmx9l48K .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6Wmx9l48K .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Wmx9l48K .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Wmx9l48K .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wmx9l48K .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6Wmx9l48K .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6Wmx9l48K .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6Wmx9l48K .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6Wmx9l48K .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6Wmx9l48K .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6Wmx9l48K .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6Wmx9l48K .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6WcK90rC5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6WcK90rC5 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6WcK90rC5 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-v6WcK90rC5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6WcK90rC5 .inner-container {
    width: 100% !important;
  }
}
.cid-v6WcK956IN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-v6Wdko0zMu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6Wdko0zMu .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6Wdko0zMu .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-v6Wdko0zMu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6Wdko0zMu .inner-container {
    width: 100% !important;
  }
}
.cid-v6WdlHHkQT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6WdlHHkQT .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6WdlHHkQT .section-text {
  padding: 2rem 0;
}
.cid-v6WdlHHkQT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6WdlHHkQT .inner-container {
    width: 100% !important;
  }
}
.cid-v6WdnuAWGX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6WdnuAWGX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6WdnuAWGX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6WdnuAWGX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6WdnuAWGX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6WdnuAWGX .row > .row {
  display: block;
}
.cid-v6WdnuAWGX .mbr-gallery-item {
  width: 100%;
}
.cid-v6WdnuAWGX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6WdnuAWGX .mbr-gallery-item > div {
  position: relative;
}
.cid-v6WdnuAWGX .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6WdnuAWGX .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6WdnuAWGX .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6WdnuAWGX .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6WcK9y7O9 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-v6WcK9y7O9 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v6WcK9y7O9 div.b {
  padding-top: 2rem;
}
.cid-v6WcK9y7O9 H5 {
  color: #232323;
}
.cid-v6Wgw2e3A0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6Wgw2e3A0 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6Wgw2e3A0 .section-text {
  padding: 2rem 0;
}
.cid-v6Wgw2e3A0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6Wgw2e3A0 .inner-container {
    width: 100% !important;
  }
}
.cid-v6WiJYolyr {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v6WiJYolyr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6WiJYolyr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6WiJYolyr .row {
  justify-content: center;
}
.cid-v6WiJYolyr .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6WiJYolyr .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6WiJYolyr .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6WiJYolyr .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6WiJYolyr .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6WiJYolyr .mbr-text_1,
.cid-v6WiJYolyr .mbr-text_2,
.cid-v6WiJYolyr .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6WiJYolyr .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WiJYolyr .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6WiJYolyr .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6WiJYolyr .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6WiJYolyr .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WiJYolyr .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6WiJYolyr .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6WiJYolyr .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WiJYolyr .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v6WiJYolyr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6WiJYolyr .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6WiJYolyr .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6WiJYolyr .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6WiKUhUhu {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v6WiKUhUhu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6WiKUhUhu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6WiKUhUhu .row {
  justify-content: center;
}
.cid-v6WiKUhUhu .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v6WiKUhUhu .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v6WiKUhUhu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v6WiKUhUhu .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v6WiKUhUhu .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v6WiKUhUhu .mbr-text_1,
.cid-v6WiKUhUhu .mbr-text_2,
.cid-v6WiKUhUhu .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v6WiKUhUhu .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WiKUhUhu .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v6WiKUhUhu .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6WiKUhUhu .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6WiKUhUhu .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WiKUhUhu .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v6WiKUhUhu .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v6WiKUhUhu .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v6WiKUhUhu .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v6WiKUhUhu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v6WiKUhUhu .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v6WiKUhUhu .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v6WiKUhUhu .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v6Wgw2GWqe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6Wgw2GWqe .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6Wgw2GWqe .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-v6Wgw2GWqe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6Wgw2GWqe .inner-container {
    width: 100% !important;
  }
}
.cid-v6Wgw2Kkcj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-v6WgVTJDc3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6WgVTJDc3 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6WgVTJDc3 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-v6WgVTJDc3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6WgVTJDc3 .inner-container {
    width: 100% !important;
  }
}
.cid-v6WgY1aNoG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6WgY1aNoG .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6WgY1aNoG .section-text {
  padding: 2rem 0;
}
.cid-v6WgY1aNoG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6WgY1aNoG .inner-container {
    width: 100% !important;
  }
}
.cid-v6WgZ7VV6A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6WgZ7VV6A .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6WgZ7VV6A .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6WgZ7VV6A .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6WgZ7VV6A .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6WgZ7VV6A .row > .row {
  display: block;
}
.cid-v6WgZ7VV6A .mbr-gallery-item {
  width: 100%;
}
.cid-v6WgZ7VV6A .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6WgZ7VV6A .mbr-gallery-item > div {
  position: relative;
}
.cid-v6WgZ7VV6A .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6WgZ7VV6A .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6WgZ7VV6A .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6WgZ7VV6A .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6Wh0j47TV {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f7ed4a;
}
.cid-v6Wh0j47TV .mbr-section-subtitle {
  color: #232323;
}
.cid-v6Wh0j47TV .container-table {
  margin: 0 auto;
}
.cid-v6Wh0j47TV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6Wh0j47TV .dataTables_wrapper {
  display: block;
}
.cid-v6Wh0j47TV .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6Wh0j47TV .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6Wh0j47TV table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6Wh0j47TV table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6Wh0j47TV table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6Wh0j47TV table td {
  border-top: 1px solid #232323;
}
.cid-v6Wh0j47TV table.table {
  background: #ecae15;
}
.cid-v6Wh0j47TV .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6Wh0j47TV .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6Wh0j47TV .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6Wh0j47TV .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6Wh0j47TV .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6Wh0j47TV .dataTables_filter {
    text-align: center;
  }
  .cid-v6Wh0j47TV .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6Wh0j47TV .mbr-section-title {
  color: #232323;
}
.cid-v6Wh0j47TV .head-item {
  text-align: center;
  color: #516be7;
}
.cid-v6Wh0j47TV .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6Wh2mA5jQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6Wh2mA5jQ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6Wh2mA5jQ .section-text {
  padding: 2rem 0;
}
.cid-v6Wh2mA5jQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6Wh2mA5jQ .inner-container {
    width: 100% !important;
  }
}
.cid-v6Wh5MLUDL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6Wh5MLUDL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6Wh5MLUDL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6Wh5MLUDL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6Wh5MLUDL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6Wh5MLUDL .row > .row {
  display: block;
}
.cid-v6Wh5MLUDL .mbr-gallery-item {
  width: 100%;
}
.cid-v6Wh5MLUDL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6Wh5MLUDL .mbr-gallery-item > div {
  position: relative;
}
.cid-v6Wh5MLUDL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6Wh5MLUDL .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6Wh5MLUDL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6Wh5MLUDL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6Wh6T9muE {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f7ed4a;
}
.cid-v6Wh6T9muE .mbr-section-subtitle {
  color: #232323;
}
.cid-v6Wh6T9muE .container-table {
  margin: 0 auto;
}
.cid-v6Wh6T9muE .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6Wh6T9muE .dataTables_wrapper {
  display: block;
}
.cid-v6Wh6T9muE .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6Wh6T9muE .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6Wh6T9muE table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6Wh6T9muE table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6Wh6T9muE table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6Wh6T9muE table td {
  border-top: 1px solid #232323;
}
.cid-v6Wh6T9muE table.table {
  background: #ecae15;
}
.cid-v6Wh6T9muE .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6Wh6T9muE .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6Wh6T9muE .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6Wh6T9muE .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6Wh6T9muE .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6Wh6T9muE .dataTables_filter {
    text-align: center;
  }
  .cid-v6Wh6T9muE .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6Wh6T9muE .mbr-section-title {
  color: #232323;
}
.cid-v6Wh6T9muE .head-item {
  text-align: center;
  color: #516be7;
}
.cid-v6Wh6T9muE .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6Wh7Rsaeq {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f7ed4a;
}
.cid-v6Wh7Rsaeq .mbr-section-subtitle {
  color: #232323;
}
.cid-v6Wh7Rsaeq .container-table {
  margin: 0 auto;
}
.cid-v6Wh7Rsaeq .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6Wh7Rsaeq .dataTables_wrapper {
  display: block;
}
.cid-v6Wh7Rsaeq .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6Wh7Rsaeq .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6Wh7Rsaeq table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6Wh7Rsaeq table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6Wh7Rsaeq table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6Wh7Rsaeq table td {
  border-top: 1px solid #232323;
}
.cid-v6Wh7Rsaeq table.table {
  background: #ecae15;
}
.cid-v6Wh7Rsaeq .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6Wh7Rsaeq .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6Wh7Rsaeq .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6Wh7Rsaeq .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6Wh7Rsaeq .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6Wh7Rsaeq .dataTables_filter {
    text-align: center;
  }
  .cid-v6Wh7Rsaeq .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6Wh7Rsaeq .mbr-section-title {
  color: #232323;
}
.cid-v6Wh7Rsaeq .head-item {
  text-align: center;
  color: #516be7;
}
.cid-v6Wh7Rsaeq .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6Wh9IYXJo {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f7ed4a;
}
.cid-v6Wh9IYXJo .mbr-section-subtitle {
  color: #232323;
}
.cid-v6Wh9IYXJo .container-table {
  margin: 0 auto;
}
.cid-v6Wh9IYXJo .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6Wh9IYXJo .dataTables_wrapper {
  display: block;
}
.cid-v6Wh9IYXJo .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6Wh9IYXJo .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6Wh9IYXJo table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6Wh9IYXJo table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6Wh9IYXJo table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6Wh9IYXJo table td {
  border-top: 1px solid #232323;
}
.cid-v6Wh9IYXJo table.table {
  background: #ecae15;
}
.cid-v6Wh9IYXJo .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6Wh9IYXJo .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6Wh9IYXJo .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6Wh9IYXJo .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6Wh9IYXJo .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6Wh9IYXJo .dataTables_filter {
    text-align: center;
  }
  .cid-v6Wh9IYXJo .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6Wh9IYXJo .mbr-section-title {
  color: #232323;
}
.cid-v6Wh9IYXJo .head-item {
  text-align: center;
  color: #516be7;
}
.cid-v6Wh9IYXJo .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6Whc1qbsH {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f7ed4a;
}
.cid-v6Whc1qbsH .mbr-section-subtitle {
  color: #232323;
}
.cid-v6Whc1qbsH .container-table {
  margin: 0 auto;
}
.cid-v6Whc1qbsH .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6Whc1qbsH .dataTables_wrapper {
  display: block;
}
.cid-v6Whc1qbsH .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6Whc1qbsH .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6Whc1qbsH table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6Whc1qbsH table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6Whc1qbsH table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6Whc1qbsH table td {
  border-top: 1px solid #232323;
}
.cid-v6Whc1qbsH table.table {
  background: #ecae15;
}
.cid-v6Whc1qbsH .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6Whc1qbsH .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6Whc1qbsH .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6Whc1qbsH .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6Whc1qbsH .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6Whc1qbsH .dataTables_filter {
    text-align: center;
  }
  .cid-v6Whc1qbsH .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6Whc1qbsH .mbr-section-title {
  color: #232323;
}
.cid-v6Whc1qbsH .head-item {
  text-align: center;
  color: #516be7;
}
.cid-v6Whc1qbsH .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6WhdFIPkU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6WhdFIPkU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6WhdFIPkU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6WhdFIPkU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6WhdFIPkU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6WhdFIPkU .row > .row {
  display: block;
}
.cid-v6WhdFIPkU .mbr-gallery-item {
  width: 100%;
}
.cid-v6WhdFIPkU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6WhdFIPkU .mbr-gallery-item > div {
  position: relative;
}
.cid-v6WhdFIPkU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6WhdFIPkU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6WhdFIPkU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6WhdFIPkU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6WheFAQfQ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f7ed4a;
}
.cid-v6WheFAQfQ .mbr-section-subtitle {
  color: #232323;
}
.cid-v6WheFAQfQ .container-table {
  margin: 0 auto;
}
.cid-v6WheFAQfQ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6WheFAQfQ .dataTables_wrapper {
  display: block;
}
.cid-v6WheFAQfQ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6WheFAQfQ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6WheFAQfQ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6WheFAQfQ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6WheFAQfQ table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6WheFAQfQ table td {
  border-top: 1px solid #232323;
}
.cid-v6WheFAQfQ table.table {
  background: #ecae15;
}
.cid-v6WheFAQfQ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6WheFAQfQ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6WheFAQfQ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6WheFAQfQ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6WheFAQfQ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6WheFAQfQ .dataTables_filter {
    text-align: center;
  }
  .cid-v6WheFAQfQ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6WheFAQfQ .mbr-section-title {
  color: #232323;
}
.cid-v6WheFAQfQ .head-item {
  text-align: center;
  color: #516be7;
}
.cid-v6WheFAQfQ .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6Whfzd6IK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6Whfzd6IK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6Whfzd6IK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6Whfzd6IK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6Whfzd6IK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6Whfzd6IK .row > .row {
  display: block;
}
.cid-v6Whfzd6IK .mbr-gallery-item {
  width: 100%;
}
.cid-v6Whfzd6IK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6Whfzd6IK .mbr-gallery-item > div {
  position: relative;
}
.cid-v6Whfzd6IK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6Whfzd6IK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6Whfzd6IK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6Whfzd6IK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6WhgWa8uj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f7ed4a;
}
.cid-v6WhgWa8uj .mbr-section-subtitle {
  color: #232323;
}
.cid-v6WhgWa8uj .container-table {
  margin: 0 auto;
}
.cid-v6WhgWa8uj .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6WhgWa8uj .dataTables_wrapper {
  display: block;
}
.cid-v6WhgWa8uj .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6WhgWa8uj .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6WhgWa8uj table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6WhgWa8uj table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6WhgWa8uj table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6WhgWa8uj table td {
  border-top: 1px solid #232323;
}
.cid-v6WhgWa8uj table.table {
  background: #ecae15;
}
.cid-v6WhgWa8uj .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6WhgWa8uj .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6WhgWa8uj .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6WhgWa8uj .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6WhgWa8uj .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6WhgWa8uj .dataTables_filter {
    text-align: center;
  }
  .cid-v6WhgWa8uj .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6WhgWa8uj .mbr-section-title {
  color: #232323;
}
.cid-v6WhgWa8uj .head-item {
  text-align: center;
  color: #516be7;
}
.cid-v6WhgWa8uj .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6Whi9I2JU {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6Whi9I2JU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6Whi9I2JU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6Whi9I2JU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6Whi9I2JU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6Whi9I2JU .row > .row {
  display: block;
}
.cid-v6Whi9I2JU .mbr-gallery-item {
  width: 100%;
}
.cid-v6Whi9I2JU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6Whi9I2JU .mbr-gallery-item > div {
  position: relative;
}
.cid-v6Whi9I2JU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6Whi9I2JU .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6Whi9I2JU .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6Whi9I2JU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6WhjMVbaW {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f7ed4a;
}
.cid-v6WhjMVbaW .mbr-section-subtitle {
  color: #232323;
}
.cid-v6WhjMVbaW .container-table {
  margin: 0 auto;
}
.cid-v6WhjMVbaW .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6WhjMVbaW .dataTables_wrapper {
  display: block;
}
.cid-v6WhjMVbaW .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6WhjMVbaW .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6WhjMVbaW table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6WhjMVbaW table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6WhjMVbaW table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6WhjMVbaW table td {
  border-top: 1px solid #232323;
}
.cid-v6WhjMVbaW table.table {
  background: #ecae15;
}
.cid-v6WhjMVbaW .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6WhjMVbaW .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6WhjMVbaW .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6WhjMVbaW .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6WhjMVbaW .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6WhjMVbaW .dataTables_filter {
    text-align: center;
  }
  .cid-v6WhjMVbaW .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6WhjMVbaW .mbr-section-title {
  color: #232323;
}
.cid-v6WhjMVbaW .head-item {
  text-align: center;
  color: #516be7;
}
.cid-v6WhjMVbaW .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6Whlu6Efk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6Whlu6Efk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6Whlu6Efk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6Whlu6Efk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6Whlu6Efk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6Whlu6Efk .row > .row {
  display: block;
}
.cid-v6Whlu6Efk .mbr-gallery-item {
  width: 100%;
}
.cid-v6Whlu6Efk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6Whlu6Efk .mbr-gallery-item > div {
  position: relative;
}
.cid-v6Whlu6Efk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6Whlu6Efk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6Whlu6Efk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6Whlu6Efk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6Who5VTqQ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f7ed4a;
}
.cid-v6Who5VTqQ .mbr-section-subtitle {
  color: #232323;
}
.cid-v6Who5VTqQ .container-table {
  margin: 0 auto;
}
.cid-v6Who5VTqQ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6Who5VTqQ .dataTables_wrapper {
  display: block;
}
.cid-v6Who5VTqQ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6Who5VTqQ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6Who5VTqQ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6Who5VTqQ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6Who5VTqQ table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6Who5VTqQ table td {
  border-top: 1px solid #232323;
}
.cid-v6Who5VTqQ table.table {
  background: #ecae15;
}
.cid-v6Who5VTqQ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6Who5VTqQ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6Who5VTqQ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6Who5VTqQ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6Who5VTqQ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6Who5VTqQ .dataTables_filter {
    text-align: center;
  }
  .cid-v6Who5VTqQ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6Who5VTqQ .mbr-section-title {
  color: #232323;
}
.cid-v6Who5VTqQ .head-item {
  text-align: center;
  color: #516be7;
}
.cid-v6Who5VTqQ .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6Whp5EReV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6Whp5EReV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6Whp5EReV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6Whp5EReV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6Whp5EReV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6Whp5EReV .row > .row {
  display: block;
}
.cid-v6Whp5EReV .mbr-gallery-item {
  width: 100%;
}
.cid-v6Whp5EReV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6Whp5EReV .mbr-gallery-item > div {
  position: relative;
}
.cid-v6Whp5EReV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6Whp5EReV .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6Whp5EReV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6Whp5EReV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6Whq3dqRR {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f7ed4a;
}
.cid-v6Whq3dqRR .mbr-section-subtitle {
  color: #232323;
}
.cid-v6Whq3dqRR .container-table {
  margin: 0 auto;
}
.cid-v6Whq3dqRR .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6Whq3dqRR .dataTables_wrapper {
  display: block;
}
.cid-v6Whq3dqRR .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6Whq3dqRR .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6Whq3dqRR table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6Whq3dqRR table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6Whq3dqRR table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6Whq3dqRR table td {
  border-top: 1px solid #232323;
}
.cid-v6Whq3dqRR table.table {
  background: #ecae15;
}
.cid-v6Whq3dqRR .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6Whq3dqRR .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6Whq3dqRR .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6Whq3dqRR .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6Whq3dqRR .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6Whq3dqRR .dataTables_filter {
    text-align: center;
  }
  .cid-v6Whq3dqRR .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6Whq3dqRR .mbr-section-title {
  color: #232323;
}
.cid-v6Whq3dqRR .head-item {
  text-align: center;
  color: #516be7;
}
.cid-v6Whq3dqRR .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6WhqBYy50 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6WhqBYy50 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6WhqBYy50 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6WhqBYy50 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6WhqBYy50 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6WhqBYy50 .row > .row {
  display: block;
}
.cid-v6WhqBYy50 .mbr-gallery-item {
  width: 100%;
}
.cid-v6WhqBYy50 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6WhqBYy50 .mbr-gallery-item > div {
  position: relative;
}
.cid-v6WhqBYy50 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6WhqBYy50 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6WhqBYy50 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6WhqBYy50 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6Whr2Ve5O {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f7ed4a;
}
.cid-v6Whr2Ve5O .mbr-section-subtitle {
  color: #232323;
}
.cid-v6Whr2Ve5O .container-table {
  margin: 0 auto;
}
.cid-v6Whr2Ve5O .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6Whr2Ve5O .dataTables_wrapper {
  display: block;
}
.cid-v6Whr2Ve5O .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6Whr2Ve5O .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6Whr2Ve5O table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6Whr2Ve5O table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6Whr2Ve5O table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6Whr2Ve5O table td {
  border-top: 1px solid #232323;
}
.cid-v6Whr2Ve5O table.table {
  background: #ecae15;
}
.cid-v6Whr2Ve5O .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6Whr2Ve5O .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6Whr2Ve5O .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6Whr2Ve5O .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6Whr2Ve5O .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6Whr2Ve5O .dataTables_filter {
    text-align: center;
  }
  .cid-v6Whr2Ve5O .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6Whr2Ve5O .mbr-section-title {
  color: #232323;
}
.cid-v6Whr2Ve5O .head-item {
  text-align: center;
  color: #516be7;
}
.cid-v6Whr2Ve5O .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6Whrr8Kt1 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f7ed4a;
}
.cid-v6Whrr8Kt1 .mbr-section-subtitle {
  color: #232323;
}
.cid-v6Whrr8Kt1 .container-table {
  margin: 0 auto;
}
.cid-v6Whrr8Kt1 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v6Whrr8Kt1 .dataTables_wrapper {
  display: block;
}
.cid-v6Whrr8Kt1 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v6Whrr8Kt1 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v6Whrr8Kt1 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v6Whrr8Kt1 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v6Whrr8Kt1 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v6Whrr8Kt1 table td {
  border-top: 1px solid #232323;
}
.cid-v6Whrr8Kt1 table.table {
  background: #ecae15;
}
.cid-v6Whrr8Kt1 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v6Whrr8Kt1 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v6Whrr8Kt1 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v6Whrr8Kt1 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v6Whrr8Kt1 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v6Whrr8Kt1 .dataTables_filter {
    text-align: center;
  }
  .cid-v6Whrr8Kt1 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v6Whrr8Kt1 .mbr-section-title {
  color: #232323;
}
.cid-v6Whrr8Kt1 .head-item {
  text-align: center;
  color: #516be7;
}
.cid-v6Whrr8Kt1 .body-item {
  text-align: center;
  color: #232323;
}
.cid-v6WhrS1TOA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6WhrS1TOA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v6WhrS1TOA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6WhrS1TOA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v6WhrS1TOA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v6WhrS1TOA .row > .row {
  display: block;
}
.cid-v6WhrS1TOA .mbr-gallery-item {
  width: 100%;
}
.cid-v6WhrS1TOA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v6WhrS1TOA .mbr-gallery-item > div {
  position: relative;
}
.cid-v6WhrS1TOA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v6WhrS1TOA .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v6WhrS1TOA .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v6WhrS1TOA .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v6WhsjHSGb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v6WhsjHSGb .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6WhsjHSGb .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-v6WhsjHSGb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6WhsjHSGb .inner-container {
    width: 100% !important;
  }
}
.cid-v6Wgw3hPdQ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-v6Wgw3hPdQ .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v6Wgw3hPdQ div.b {
  padding-top: 2rem;
}
.cid-v6Wgw3hPdQ H5 {
  color: #232323;
}
.cid-v7afPYZnIJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7afPYZnIJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7afPYZnIJ .section-text {
  padding: 2rem 0;
}
.cid-v7afPYZnIJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7afPYZnIJ .inner-container {
    width: 100% !important;
  }
}
.cid-v7agauKNg5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v7agauKNg5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7agauKNg5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7agauKNg5 .row {
  justify-content: center;
}
.cid-v7agauKNg5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7agauKNg5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7agauKNg5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7agauKNg5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7agauKNg5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7agauKNg5 .mbr-text_1,
.cid-v7agauKNg5 .mbr-text_2,
.cid-v7agauKNg5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7agauKNg5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7agauKNg5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7agauKNg5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7agauKNg5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7agauKNg5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7agauKNg5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7agauKNg5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7agauKNg5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7agauKNg5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7agauKNg5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7agauKNg5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7agauKNg5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7agauKNg5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7agbxV1k9 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v7agbxV1k9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7agbxV1k9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7agbxV1k9 .row {
  justify-content: center;
}
.cid-v7agbxV1k9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7agbxV1k9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7agbxV1k9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7agbxV1k9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7agbxV1k9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7agbxV1k9 .mbr-text_1,
.cid-v7agbxV1k9 .mbr-text_2,
.cid-v7agbxV1k9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7agbxV1k9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7agbxV1k9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7agbxV1k9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7agbxV1k9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7agbxV1k9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7agbxV1k9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7agbxV1k9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7agbxV1k9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7agbxV1k9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7agbxV1k9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7agbxV1k9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7agbxV1k9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7agbxV1k9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7afPZldb0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7afPZldb0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7afPZldb0 .section-text {
  padding: 2rem 0;
}
.cid-v7afPZldb0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7afPZldb0 .inner-container {
    width: 100% !important;
  }
}
.cid-v7afPZoQKh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7afPZoQKh .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7afPZoQKh .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-v7afPZoQKh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7afPZoQKh .inner-container {
    width: 100% !important;
  }
}
.cid-v7afPZrodR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v7afPZrodR .item {
  padding-bottom: 2rem;
}
.cid-v7afPZrodR .item-wrapper {
  height: 100%;
}
.cid-v7afPZrodR .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v7afPZrodR .carousel-control,
.cid-v7afPZrodR .close {
  background: #1b1b1b;
}
.cid-v7afPZrodR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v7afPZrodR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v7afPZrodR .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-v7afPZrodR .close::before {
  content: '\e91a';
}
.cid-v7afPZrodR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v7afPZrodR .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-v7afPZrodR .carousel-inner > .active {
  display: block;
}
.cid-v7afPZrodR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7afPZrodR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7afPZrodR .carousel-control .icon-next,
.cid-v7afPZrodR .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-v7afPZrodR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v7afPZrodR .carousel-control,
  .cid-v7afPZrodR .carousel-indicators,
  .cid-v7afPZrodR .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v7afPZrodR .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v7afPZrodR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v7afPZrodR .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-v7afPZrodR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v7afPZrodR .carousel-indicators {
    display: none;
  }
}
.cid-v7afPZrodR .carousel-indicators .active,
.cid-v7afPZrodR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-v7afPZrodR .carousel-indicators .active {
  background: #fff;
}
.cid-v7afPZrodR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v7afPZrodR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v7afPZrodR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v7afPZrodR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v7afPZrodR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v7afPZrodR .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-v7afPZrodR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v7afPZrodR .carousel {
  width: 100%;
}
.cid-v7afPZrodR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v7afPZrodR .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-v7afPZrodR .modal.fade .modal-dialog,
.cid-v7afPZrodR .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-v7afPZrodR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v7afPZrodR a {
  display: block;
}
.cid-v7afPZrodR a.img {
  pointer-events: none;
}
.cid-v7afPZrodR H3 {
  color: #232323;
}
.cid-v7afPZSAMu {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-v7afPZSAMu .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7afPZSAMu div.b {
  padding-top: 2rem;
}
.cid-v7gvpjs7ZJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gvpjs7ZJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gvpjs7ZJ .section-text {
  padding: 2rem 0;
}
.cid-v7gvpjs7ZJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gvpjs7ZJ .inner-container {
    width: 100% !important;
  }
}
.cid-v7gvpk3X8g {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gvpk3X8g .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gvpk3X8g .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gvpk3X8g .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gvpk3X8g .inner-container {
    width: 100% !important;
  }
}
.cid-v7gvpk9mV9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gvpk9mV9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gvpk9mV9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gvpk9mV9 .row {
  justify-content: center;
}
.cid-v7gvpk9mV9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gvpk9mV9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gvpk9mV9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gvpk9mV9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gvpk9mV9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gvpk9mV9 .mbr-text_1,
.cid-v7gvpk9mV9 .mbr-text_2,
.cid-v7gvpk9mV9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gvpk9mV9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gvpk9mV9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gvpk9mV9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gvpk9mV9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gvpk9mV9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gvpk9mV9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gvpk9mV9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gvpk9mV9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gvpk9mV9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gvpk9mV9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gvpk9mV9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gvpk9mV9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gvpk9mV9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gvpknNCb {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gvpknNCb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gvpknNCb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gvpknNCb .row {
  justify-content: center;
}
.cid-v7gvpknNCb .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gvpknNCb .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gvpknNCb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gvpknNCb .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gvpknNCb .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gvpknNCb .mbr-text_1,
.cid-v7gvpknNCb .mbr-text_2,
.cid-v7gvpknNCb .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gvpknNCb .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gvpknNCb .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gvpknNCb .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gvpknNCb .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gvpknNCb .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gvpknNCb .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gvpknNCb .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gvpknNCb .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gvpknNCb .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gvpknNCb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gvpknNCb .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gvpknNCb .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gvpknNCb .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gvpkyQMV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gvpkyQMV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gvpkyQMV .section-text {
  padding: 2rem 0;
}
.cid-v7gvpkyQMV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gvpkyQMV .inner-container {
    width: 100% !important;
  }
}
.cid-v7gZeeicbu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gZeeicbu .mbr-section-subtitle {
  color: #767676;
}
.cid-v7gZeeicbu .container-table {
  margin: 0 auto;
}
.cid-v7gZeeicbu .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7gZeeicbu .dataTables_wrapper {
  display: block;
}
.cid-v7gZeeicbu .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7gZeeicbu .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7gZeeicbu table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7gZeeicbu table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7gZeeicbu table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7gZeeicbu table td {
  border-top: 1px solid #232323;
}
.cid-v7gZeeicbu table.table {
  background: #ecae15;
}
.cid-v7gZeeicbu .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7gZeeicbu .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7gZeeicbu .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7gZeeicbu .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7gZeeicbu .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7gZeeicbu .dataTables_filter {
    text-align: center;
  }
  .cid-v7gZeeicbu .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7gZeeicbu .mbr-section-title {
  color: #232323;
}
.cid-v7gZeeicbu .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7gZeeicbu .body-item {
  text-align: center;
}
.cid-v7gvpl250X {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gvpl8FyJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gvpl8FyJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gvpl8FyJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gvpl8FyJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gvpl8FyJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gvpl8FyJ .row > .row {
  display: block;
}
.cid-v7gvpl8FyJ .mbr-gallery-item {
  width: 100%;
}
.cid-v7gvpl8FyJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gvpl8FyJ .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gvpl8FyJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gvpl8FyJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gvpl8FyJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gvpl8FyJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gz3MboOA {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gz3MboOA .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gz3MboOA div.b {
  padding-top: 2rem;
}
.cid-v7gz3MboOA H5 {
  color: #f7ed4a;
}
.cid-v7gzY5BL56 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gzY5BL56 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gzY5BL56 .section-text {
  padding: 2rem 0;
}
.cid-v7gzY5BL56 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gzY5BL56 .inner-container {
    width: 100% !important;
  }
}
.cid-v7gzY6brLp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gzY6brLp .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gzY6brLp .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gzY6brLp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gzY6brLp .inner-container {
    width: 100% !important;
  }
}
.cid-v7gzY6lcmN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gzY6lcmN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gzY6lcmN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gzY6lcmN .row {
  justify-content: center;
}
.cid-v7gzY6lcmN .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gzY6lcmN .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gzY6lcmN .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gzY6lcmN .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gzY6lcmN .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gzY6lcmN .mbr-text_1,
.cid-v7gzY6lcmN .mbr-text_2,
.cid-v7gzY6lcmN .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gzY6lcmN .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gzY6lcmN .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gzY6lcmN .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gzY6lcmN .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gzY6lcmN .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gzY6lcmN .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gzY6lcmN .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gzY6lcmN .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gzY6lcmN .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gzY6lcmN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gzY6lcmN .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gzY6lcmN .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gzY6lcmN .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gzY6A8KH {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gzY6A8KH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gzY6A8KH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gzY6A8KH .row {
  justify-content: center;
}
.cid-v7gzY6A8KH .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gzY6A8KH .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gzY6A8KH .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gzY6A8KH .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gzY6A8KH .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gzY6A8KH .mbr-text_1,
.cid-v7gzY6A8KH .mbr-text_2,
.cid-v7gzY6A8KH .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gzY6A8KH .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gzY6A8KH .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gzY6A8KH .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gzY6A8KH .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gzY6A8KH .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gzY6A8KH .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gzY6A8KH .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gzY6A8KH .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gzY6A8KH .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gzY6A8KH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gzY6A8KH .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gzY6A8KH .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gzY6A8KH .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gzY6KuVo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gzY6KuVo .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gzY6KuVo .section-text {
  padding: 2rem 0;
}
.cid-v7gzY6KuVo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gzY6KuVo .inner-container {
    width: 100% !important;
  }
}
.cid-v7h24TWAGh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7h24TWAGh .mbr-section-subtitle {
  color: #767676;
}
.cid-v7h24TWAGh .container-table {
  margin: 0 auto;
}
.cid-v7h24TWAGh .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7h24TWAGh .dataTables_wrapper {
  display: block;
}
.cid-v7h24TWAGh .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7h24TWAGh .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7h24TWAGh table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7h24TWAGh table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7h24TWAGh table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7h24TWAGh table td {
  border-top: 1px solid #232323;
}
.cid-v7h24TWAGh table.table {
  background: #ecae15;
}
.cid-v7h24TWAGh .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7h24TWAGh .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7h24TWAGh .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7h24TWAGh .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7h24TWAGh .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7h24TWAGh .dataTables_filter {
    text-align: center;
  }
  .cid-v7h24TWAGh .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7h24TWAGh .mbr-section-title {
  color: #232323;
}
.cid-v7h24TWAGh .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7h24TWAGh .body-item {
  text-align: center;
}
.cid-v7gzY7WlmY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gzY84Gss {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gzY84Gss .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gzY84Gss .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gzY84Gss .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gzY84Gss .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gzY84Gss .row > .row {
  display: block;
}
.cid-v7gzY84Gss .mbr-gallery-item {
  width: 100%;
}
.cid-v7gzY84Gss .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gzY84Gss .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gzY84Gss .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gzY84Gss .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gzY84Gss .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gzY84Gss .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gzY7MbKn {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gzY7MbKn .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gzY7MbKn div.b {
  padding-top: 2rem;
}
.cid-v7gzY7MbKn H5 {
  color: #f7ed4a;
}
.cid-v7gCzlRxyt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gCzlRxyt .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gCzlRxyt .section-text {
  padding: 2rem 0;
}
.cid-v7gCzlRxyt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gCzlRxyt .inner-container {
    width: 100% !important;
  }
}
.cid-v7gCzmsi0Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gCzmsi0Q .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gCzmsi0Q .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gCzmsi0Q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gCzmsi0Q .inner-container {
    width: 100% !important;
  }
}
.cid-v7gCzmyQEn {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gCzmyQEn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gCzmyQEn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gCzmyQEn .row {
  justify-content: center;
}
.cid-v7gCzmyQEn .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gCzmyQEn .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gCzmyQEn .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gCzmyQEn .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gCzmyQEn .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gCzmyQEn .mbr-text_1,
.cid-v7gCzmyQEn .mbr-text_2,
.cid-v7gCzmyQEn .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gCzmyQEn .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gCzmyQEn .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gCzmyQEn .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gCzmyQEn .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gCzmyQEn .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gCzmyQEn .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gCzmyQEn .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gCzmyQEn .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gCzmyQEn .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gCzmyQEn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gCzmyQEn .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gCzmyQEn .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gCzmyQEn .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gCzmK0QF {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gCzmK0QF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gCzmK0QF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gCzmK0QF .row {
  justify-content: center;
}
.cid-v7gCzmK0QF .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gCzmK0QF .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gCzmK0QF .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gCzmK0QF .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gCzmK0QF .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gCzmK0QF .mbr-text_1,
.cid-v7gCzmK0QF .mbr-text_2,
.cid-v7gCzmK0QF .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gCzmK0QF .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gCzmK0QF .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gCzmK0QF .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gCzmK0QF .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gCzmK0QF .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gCzmK0QF .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gCzmK0QF .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gCzmK0QF .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gCzmK0QF .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gCzmK0QF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gCzmK0QF .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gCzmK0QF .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gCzmK0QF .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gCzmTjtG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gCzmTjtG .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gCzmTjtG .section-text {
  padding: 2rem 0;
}
.cid-v7gCzmTjtG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gCzmTjtG .inner-container {
    width: 100% !important;
  }
}
.cid-v7h4gpB6y0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7h4gpB6y0 .mbr-section-subtitle {
  color: #767676;
}
.cid-v7h4gpB6y0 .container-table {
  margin: 0 auto;
}
.cid-v7h4gpB6y0 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7h4gpB6y0 .dataTables_wrapper {
  display: block;
}
.cid-v7h4gpB6y0 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7h4gpB6y0 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7h4gpB6y0 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7h4gpB6y0 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7h4gpB6y0 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7h4gpB6y0 table td {
  border-top: 1px solid #232323;
}
.cid-v7h4gpB6y0 table.table {
  background: #ecae15;
}
.cid-v7h4gpB6y0 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7h4gpB6y0 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7h4gpB6y0 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7h4gpB6y0 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7h4gpB6y0 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7h4gpB6y0 .dataTables_filter {
    text-align: center;
  }
  .cid-v7h4gpB6y0 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7h4gpB6y0 .mbr-section-title {
  color: #232323;
}
.cid-v7h4gpB6y0 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7h4gpB6y0 .body-item {
  text-align: center;
}
.cid-v7gCznPv39 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gCznUMBj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gCznUMBj .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gCznUMBj .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gCznUMBj .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gCznUMBj .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gCznUMBj .row > .row {
  display: block;
}
.cid-v7gCznUMBj .mbr-gallery-item {
  width: 100%;
}
.cid-v7gCznUMBj .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gCznUMBj .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gCznUMBj .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gCznUMBj .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gCznUMBj .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gCznUMBj .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gCzxtd0A {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gCzxtd0A .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gCzxtd0A div.b {
  padding-top: 2rem;
}
.cid-v7gCzxtd0A H5 {
  color: #f7ed4a;
}
.cid-v7gDjCo3Dk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gDjCo3Dk .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gDjCo3Dk .section-text {
  padding: 2rem 0;
}
.cid-v7gDjCo3Dk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gDjCo3Dk .inner-container {
    width: 100% !important;
  }
}
.cid-v7gDjCZK7N {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gDjCZK7N .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gDjCZK7N .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gDjCZK7N .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gDjCZK7N .inner-container {
    width: 100% !important;
  }
}
.cid-v7gDjD4VSq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gDjD4VSq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gDjD4VSq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gDjD4VSq .row {
  justify-content: center;
}
.cid-v7gDjD4VSq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gDjD4VSq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gDjD4VSq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gDjD4VSq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gDjD4VSq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gDjD4VSq .mbr-text_1,
.cid-v7gDjD4VSq .mbr-text_2,
.cid-v7gDjD4VSq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gDjD4VSq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gDjD4VSq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gDjD4VSq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gDjD4VSq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gDjD4VSq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gDjD4VSq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gDjD4VSq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gDjD4VSq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gDjD4VSq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gDjD4VSq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gDjD4VSq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gDjD4VSq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gDjD4VSq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gDjDgsgO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gDjDgsgO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gDjDgsgO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gDjDgsgO .row {
  justify-content: center;
}
.cid-v7gDjDgsgO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gDjDgsgO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gDjDgsgO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gDjDgsgO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gDjDgsgO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gDjDgsgO .mbr-text_1,
.cid-v7gDjDgsgO .mbr-text_2,
.cid-v7gDjDgsgO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gDjDgsgO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gDjDgsgO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gDjDgsgO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gDjDgsgO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gDjDgsgO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gDjDgsgO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gDjDgsgO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gDjDgsgO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gDjDgsgO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gDjDgsgO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gDjDgsgO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gDjDgsgO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gDjDgsgO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gDjDphY6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gDjDphY6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gDjDphY6 .section-text {
  padding: 2rem 0;
}
.cid-v7gDjDphY6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gDjDphY6 .inner-container {
    width: 100% !important;
  }
}
.cid-v7h6gkxsK0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7h6gkxsK0 .mbr-section-subtitle {
  color: #767676;
}
.cid-v7h6gkxsK0 .container-table {
  margin: 0 auto;
}
.cid-v7h6gkxsK0 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7h6gkxsK0 .dataTables_wrapper {
  display: block;
}
.cid-v7h6gkxsK0 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7h6gkxsK0 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7h6gkxsK0 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7h6gkxsK0 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7h6gkxsK0 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7h6gkxsK0 table td {
  border-top: 1px solid #232323;
}
.cid-v7h6gkxsK0 table.table {
  background: #ecae15;
}
.cid-v7h6gkxsK0 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7h6gkxsK0 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7h6gkxsK0 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7h6gkxsK0 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7h6gkxsK0 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7h6gkxsK0 .dataTables_filter {
    text-align: center;
  }
  .cid-v7h6gkxsK0 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7h6gkxsK0 .mbr-section-title {
  color: #232323;
}
.cid-v7h6gkxsK0 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7h6gkxsK0 .body-item {
  text-align: center;
}
.cid-v7gDjEtt0U {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gDjEzUDP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gDjEzUDP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gDjEzUDP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gDjEzUDP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gDjEzUDP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gDjEzUDP .row > .row {
  display: block;
}
.cid-v7gDjEzUDP .mbr-gallery-item {
  width: 100%;
}
.cid-v7gDjEzUDP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gDjEzUDP .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gDjEzUDP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gDjEzUDP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gDjEzUDP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gDjEzUDP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gDjNE8RE {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gDjNE8RE .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gDjNE8RE div.b {
  padding-top: 2rem;
}
.cid-v7gDjNE8RE H5 {
  color: #f7ed4a;
}
.cid-v7gDKWP7eV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gDKWP7eV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gDKWP7eV .section-text {
  padding: 2rem 0;
}
.cid-v7gDKWP7eV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gDKWP7eV .inner-container {
    width: 100% !important;
  }
}
.cid-v7gDKXpXSY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gDKXpXSY .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gDKXpXSY .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gDKXpXSY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gDKXpXSY .inner-container {
    width: 100% !important;
  }
}
.cid-v7gDKXvyhe {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gDKXvyhe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gDKXvyhe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gDKXvyhe .row {
  justify-content: center;
}
.cid-v7gDKXvyhe .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gDKXvyhe .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gDKXvyhe .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gDKXvyhe .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gDKXvyhe .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gDKXvyhe .mbr-text_1,
.cid-v7gDKXvyhe .mbr-text_2,
.cid-v7gDKXvyhe .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gDKXvyhe .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gDKXvyhe .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gDKXvyhe .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gDKXvyhe .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gDKXvyhe .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gDKXvyhe .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gDKXvyhe .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gDKXvyhe .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gDKXvyhe .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gDKXvyhe .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gDKXvyhe .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gDKXvyhe .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gDKXvyhe .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gDKXHDsT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gDKXHDsT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gDKXHDsT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gDKXHDsT .row {
  justify-content: center;
}
.cid-v7gDKXHDsT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gDKXHDsT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gDKXHDsT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gDKXHDsT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gDKXHDsT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gDKXHDsT .mbr-text_1,
.cid-v7gDKXHDsT .mbr-text_2,
.cid-v7gDKXHDsT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gDKXHDsT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gDKXHDsT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gDKXHDsT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gDKXHDsT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gDKXHDsT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gDKXHDsT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gDKXHDsT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gDKXHDsT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gDKXHDsT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gDKXHDsT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gDKXHDsT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gDKXHDsT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gDKXHDsT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gDKXSE1G {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gDKXSE1G .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gDKXSE1G .section-text {
  padding: 2rem 0;
}
.cid-v7gDKXSE1G .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gDKXSE1G .inner-container {
    width: 100% !important;
  }
}
.cid-v7h9Z8qfr6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7h9Z8qfr6 .mbr-section-subtitle {
  color: #767676;
}
.cid-v7h9Z8qfr6 .container-table {
  margin: 0 auto;
}
.cid-v7h9Z8qfr6 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7h9Z8qfr6 .dataTables_wrapper {
  display: block;
}
.cid-v7h9Z8qfr6 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7h9Z8qfr6 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7h9Z8qfr6 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7h9Z8qfr6 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7h9Z8qfr6 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7h9Z8qfr6 table td {
  border-top: 1px solid #232323;
}
.cid-v7h9Z8qfr6 table.table {
  background: #ecae15;
}
.cid-v7h9Z8qfr6 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7h9Z8qfr6 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7h9Z8qfr6 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7h9Z8qfr6 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7h9Z8qfr6 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7h9Z8qfr6 .dataTables_filter {
    text-align: center;
  }
  .cid-v7h9Z8qfr6 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7h9Z8qfr6 .mbr-section-title {
  color: #232323;
}
.cid-v7h9Z8qfr6 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7h9Z8qfr6 .body-item {
  text-align: center;
}
.cid-v7gDKZ6qlf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gDKZbz57 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gDKZbz57 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gDKZbz57 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gDKZbz57 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gDKZbz57 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gDKZbz57 .row > .row {
  display: block;
}
.cid-v7gDKZbz57 .mbr-gallery-item {
  width: 100%;
}
.cid-v7gDKZbz57 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gDKZbz57 .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gDKZbz57 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gDKZbz57 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gDKZbz57 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gDKZbz57 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gDL7xeag {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gDL7xeag .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gDL7xeag div.b {
  padding-top: 2rem;
}
.cid-v7gDL7xeag H5 {
  color: #f7ed4a;
}
.cid-v7gEgiXLvL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gEgiXLvL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gEgiXLvL .section-text {
  padding: 2rem 0;
}
.cid-v7gEgiXLvL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gEgiXLvL .inner-container {
    width: 100% !important;
  }
}
.cid-v7gEgjJHPz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gEgjJHPz .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gEgjJHPz .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gEgjJHPz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gEgjJHPz .inner-container {
    width: 100% !important;
  }
}
.cid-v7gEgjPnwx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gEgjPnwx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gEgjPnwx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gEgjPnwx .row {
  justify-content: center;
}
.cid-v7gEgjPnwx .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gEgjPnwx .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gEgjPnwx .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gEgjPnwx .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gEgjPnwx .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gEgjPnwx .mbr-text_1,
.cid-v7gEgjPnwx .mbr-text_2,
.cid-v7gEgjPnwx .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gEgjPnwx .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gEgjPnwx .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gEgjPnwx .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gEgjPnwx .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gEgjPnwx .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gEgjPnwx .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gEgjPnwx .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gEgjPnwx .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gEgjPnwx .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gEgjPnwx .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gEgjPnwx .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gEgjPnwx .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gEgjPnwx .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gEgk1O37 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gEgk1O37 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gEgk1O37 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gEgk1O37 .row {
  justify-content: center;
}
.cid-v7gEgk1O37 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gEgk1O37 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gEgk1O37 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gEgk1O37 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gEgk1O37 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gEgk1O37 .mbr-text_1,
.cid-v7gEgk1O37 .mbr-text_2,
.cid-v7gEgk1O37 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gEgk1O37 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gEgk1O37 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gEgk1O37 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gEgk1O37 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gEgk1O37 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gEgk1O37 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gEgk1O37 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gEgk1O37 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gEgk1O37 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gEgk1O37 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gEgk1O37 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gEgk1O37 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gEgk1O37 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gEgkaIXU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gEgkaIXU .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gEgkaIXU .section-text {
  padding: 2rem 0;
}
.cid-v7gEgkaIXU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gEgkaIXU .inner-container {
    width: 100% !important;
  }
}
.cid-v7izeWWwEg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7izeWWwEg .mbr-section-subtitle {
  color: #767676;
}
.cid-v7izeWWwEg .container-table {
  margin: 0 auto;
}
.cid-v7izeWWwEg .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7izeWWwEg .dataTables_wrapper {
  display: block;
}
.cid-v7izeWWwEg .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7izeWWwEg .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7izeWWwEg table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7izeWWwEg table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7izeWWwEg table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7izeWWwEg table td {
  border-top: 1px solid #232323;
}
.cid-v7izeWWwEg table.table {
  background: #ecae15;
}
.cid-v7izeWWwEg .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7izeWWwEg .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7izeWWwEg .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7izeWWwEg .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7izeWWwEg .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7izeWWwEg .dataTables_filter {
    text-align: center;
  }
  .cid-v7izeWWwEg .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7izeWWwEg .mbr-section-title {
  color: #232323;
}
.cid-v7izeWWwEg .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7izeWWwEg .body-item {
  text-align: center;
}
.cid-v7gEglGZbc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gEglLL5r {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gEglLL5r .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gEglLL5r .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gEglLL5r .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gEglLL5r .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gEglLL5r .row > .row {
  display: block;
}
.cid-v7gEglLL5r .mbr-gallery-item {
  width: 100%;
}
.cid-v7gEglLL5r .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-v7gEglLL5r .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gEglLL5r .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gEglLL5r .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gEglLL5r .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gEglLL5r .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-v7gEgudtJu {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gEgudtJu .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gEgudtJu div.b {
  padding-top: 2rem;
}
.cid-v7gEgudtJu H5 {
  color: #f7ed4a;
}
.cid-v7gEH82P4X {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gEH82P4X .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gEH82P4X .section-text {
  padding: 2rem 0;
}
.cid-v7gEH82P4X .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gEH82P4X .inner-container {
    width: 100% !important;
  }
}
.cid-v7gEH8EvlA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gEH8EvlA .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gEH8EvlA .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gEH8EvlA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gEH8EvlA .inner-container {
    width: 100% !important;
  }
}
.cid-v7gEH8KAiT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gEH8KAiT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gEH8KAiT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gEH8KAiT .row {
  justify-content: center;
}
.cid-v7gEH8KAiT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gEH8KAiT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gEH8KAiT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gEH8KAiT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gEH8KAiT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gEH8KAiT .mbr-text_1,
.cid-v7gEH8KAiT .mbr-text_2,
.cid-v7gEH8KAiT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gEH8KAiT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gEH8KAiT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gEH8KAiT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gEH8KAiT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gEH8KAiT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gEH8KAiT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gEH8KAiT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gEH8KAiT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gEH8KAiT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gEH8KAiT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gEH8KAiT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gEH8KAiT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gEH8KAiT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gEH8Y3b8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gEH8Y3b8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gEH8Y3b8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gEH8Y3b8 .row {
  justify-content: center;
}
.cid-v7gEH8Y3b8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gEH8Y3b8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gEH8Y3b8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gEH8Y3b8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gEH8Y3b8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gEH8Y3b8 .mbr-text_1,
.cid-v7gEH8Y3b8 .mbr-text_2,
.cid-v7gEH8Y3b8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gEH8Y3b8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gEH8Y3b8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gEH8Y3b8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gEH8Y3b8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gEH8Y3b8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gEH8Y3b8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gEH8Y3b8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gEH8Y3b8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gEH8Y3b8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gEH8Y3b8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gEH8Y3b8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gEH8Y3b8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gEH8Y3b8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gEH95HCB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gEH95HCB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gEH95HCB .section-text {
  padding: 2rem 0;
}
.cid-v7gEH95HCB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gEH95HCB .inner-container {
    width: 100% !important;
  }
}
.cid-v7iBglnkXg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7iBglnkXg .mbr-section-subtitle {
  color: #767676;
}
.cid-v7iBglnkXg .container-table {
  margin: 0 auto;
}
.cid-v7iBglnkXg .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7iBglnkXg .dataTables_wrapper {
  display: block;
}
.cid-v7iBglnkXg .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7iBglnkXg .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7iBglnkXg table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7iBglnkXg table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7iBglnkXg table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7iBglnkXg table td {
  border-top: 1px solid #232323;
}
.cid-v7iBglnkXg table.table {
  background: #ecae15;
}
.cid-v7iBglnkXg .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7iBglnkXg .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7iBglnkXg .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7iBglnkXg .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7iBglnkXg .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7iBglnkXg .dataTables_filter {
    text-align: center;
  }
  .cid-v7iBglnkXg .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7iBglnkXg .mbr-section-title {
  color: #232323;
}
.cid-v7iBglnkXg .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7iBglnkXg .body-item {
  text-align: center;
}
.cid-v7gEHaNXyH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gEHaTPOP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gEHaTPOP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gEHaTPOP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gEHaTPOP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gEHaTPOP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gEHaTPOP .row > .row {
  display: block;
}
.cid-v7gEHaTPOP .mbr-gallery-item {
  width: 100%;
}
.cid-v7gEHaTPOP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gEHaTPOP .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gEHaTPOP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gEHaTPOP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gEHaTPOP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gEHaTPOP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gEHiTY0j {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gEHiTY0j .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gEHiTY0j div.b {
  padding-top: 2rem;
}
.cid-v7gEHiTY0j H5 {
  color: #f7ed4a;
}
.cid-v7gFl3h0hK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gFl3h0hK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gFl3h0hK .section-text {
  padding: 2rem 0;
}
.cid-v7gFl3h0hK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gFl3h0hK .inner-container {
    width: 100% !important;
  }
}
.cid-v7gFl3UIaq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gFl3UIaq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gFl3UIaq .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gFl3UIaq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gFl3UIaq .inner-container {
    width: 100% !important;
  }
}
.cid-v7gFl42EPo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gFl42EPo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gFl42EPo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gFl42EPo .row {
  justify-content: center;
}
.cid-v7gFl42EPo .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gFl42EPo .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gFl42EPo .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gFl42EPo .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gFl42EPo .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gFl42EPo .mbr-text_1,
.cid-v7gFl42EPo .mbr-text_2,
.cid-v7gFl42EPo .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gFl42EPo .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gFl42EPo .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gFl42EPo .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gFl42EPo .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gFl42EPo .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gFl42EPo .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gFl42EPo .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gFl42EPo .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gFl42EPo .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gFl42EPo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gFl42EPo .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gFl42EPo .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gFl42EPo .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gFl4ex4g {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gFl4ex4g .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gFl4ex4g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gFl4ex4g .row {
  justify-content: center;
}
.cid-v7gFl4ex4g .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gFl4ex4g .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gFl4ex4g .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gFl4ex4g .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gFl4ex4g .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gFl4ex4g .mbr-text_1,
.cid-v7gFl4ex4g .mbr-text_2,
.cid-v7gFl4ex4g .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gFl4ex4g .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gFl4ex4g .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gFl4ex4g .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gFl4ex4g .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gFl4ex4g .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gFl4ex4g .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gFl4ex4g .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gFl4ex4g .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gFl4ex4g .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gFl4ex4g .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gFl4ex4g .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gFl4ex4g .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gFl4ex4g .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gFl4nhII {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gFl4nhII .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gFl4nhII .section-text {
  padding: 2rem 0;
}
.cid-v7gFl4nhII .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gFl4nhII .inner-container {
    width: 100% !important;
  }
}
.cid-v7iDEjpWO2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7iDEjpWO2 .mbr-section-subtitle {
  color: #767676;
}
.cid-v7iDEjpWO2 .container-table {
  margin: 0 auto;
}
.cid-v7iDEjpWO2 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7iDEjpWO2 .dataTables_wrapper {
  display: block;
}
.cid-v7iDEjpWO2 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7iDEjpWO2 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7iDEjpWO2 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7iDEjpWO2 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7iDEjpWO2 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7iDEjpWO2 table td {
  border-top: 1px solid #232323;
}
.cid-v7iDEjpWO2 table.table {
  background: #ecae15;
}
.cid-v7iDEjpWO2 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7iDEjpWO2 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7iDEjpWO2 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7iDEjpWO2 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7iDEjpWO2 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7iDEjpWO2 .dataTables_filter {
    text-align: center;
  }
  .cid-v7iDEjpWO2 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7iDEjpWO2 .mbr-section-title {
  color: #232323;
}
.cid-v7iDEjpWO2 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7iDEjpWO2 .body-item {
  text-align: center;
}
.cid-v7gFl6hCHj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gFl6mHY2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gFl6mHY2 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gFl6mHY2 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gFl6mHY2 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gFl6mHY2 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gFl6mHY2 .row > .row {
  display: block;
}
.cid-v7gFl6mHY2 .mbr-gallery-item {
  width: 100%;
}
.cid-v7gFl6mHY2 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gFl6mHY2 .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gFl6mHY2 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gFl6mHY2 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gFl6mHY2 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gFl6mHY2 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gFlekQ0s {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gFlekQ0s .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gFlekQ0s div.b {
  padding-top: 2rem;
}
.cid-v7gFlekQ0s H5 {
  color: #f7ed4a;
}
.cid-v7gIY86RAL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gIY86RAL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gIY86RAL .section-text {
  padding: 2rem 0;
}
.cid-v7gIY86RAL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gIY86RAL .inner-container {
    width: 100% !important;
  }
}
.cid-v7gIY8IJar {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gIY8IJar .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gIY8IJar .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gIY8IJar .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gIY8IJar .inner-container {
    width: 100% !important;
  }
}
.cid-v7gIY8OAdb {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gIY8OAdb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gIY8OAdb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gIY8OAdb .row {
  justify-content: center;
}
.cid-v7gIY8OAdb .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gIY8OAdb .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gIY8OAdb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gIY8OAdb .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gIY8OAdb .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gIY8OAdb .mbr-text_1,
.cid-v7gIY8OAdb .mbr-text_2,
.cid-v7gIY8OAdb .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gIY8OAdb .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gIY8OAdb .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gIY8OAdb .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gIY8OAdb .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gIY8OAdb .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gIY8OAdb .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gIY8OAdb .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gIY8OAdb .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gIY8OAdb .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gIY8OAdb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gIY8OAdb .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gIY8OAdb .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gIY8OAdb .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gIY90wE5 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gIY90wE5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gIY90wE5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gIY90wE5 .row {
  justify-content: center;
}
.cid-v7gIY90wE5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gIY90wE5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gIY90wE5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gIY90wE5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gIY90wE5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gIY90wE5 .mbr-text_1,
.cid-v7gIY90wE5 .mbr-text_2,
.cid-v7gIY90wE5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gIY90wE5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gIY90wE5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gIY90wE5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gIY90wE5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gIY90wE5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gIY90wE5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gIY90wE5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gIY90wE5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gIY90wE5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gIY90wE5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gIY90wE5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gIY90wE5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gIY90wE5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gIY99j6t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gIY99j6t .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gIY99j6t .section-text {
  padding: 2rem 0;
}
.cid-v7gIY99j6t .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gIY99j6t .inner-container {
    width: 100% !important;
  }
}
.cid-v7jNJ4FIA2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7jNJ4FIA2 .mbr-section-subtitle {
  color: #767676;
}
.cid-v7jNJ4FIA2 .container-table {
  margin: 0 auto;
}
.cid-v7jNJ4FIA2 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7jNJ4FIA2 .dataTables_wrapper {
  display: block;
}
.cid-v7jNJ4FIA2 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7jNJ4FIA2 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7jNJ4FIA2 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7jNJ4FIA2 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7jNJ4FIA2 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7jNJ4FIA2 table td {
  border-top: 1px solid #232323;
}
.cid-v7jNJ4FIA2 table.table {
  background: #ecae15;
}
.cid-v7jNJ4FIA2 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7jNJ4FIA2 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7jNJ4FIA2 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7jNJ4FIA2 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7jNJ4FIA2 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7jNJ4FIA2 .dataTables_filter {
    text-align: center;
  }
  .cid-v7jNJ4FIA2 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7jNJ4FIA2 .mbr-section-title {
  color: #232323;
}
.cid-v7jNJ4FIA2 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7jNJ4FIA2 .body-item {
  text-align: center;
}
.cid-v7gIYbmmhs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gIYbs3Xk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gIYbs3Xk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gIYbs3Xk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gIYbs3Xk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gIYbs3Xk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gIYbs3Xk .row > .row {
  display: block;
}
.cid-v7gIYbs3Xk .mbr-gallery-item {
  width: 100%;
}
.cid-v7gIYbs3Xk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gIYbs3Xk .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gIYbs3Xk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gIYbs3Xk .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gIYbs3Xk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gIYbs3Xk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gIYiRkwq {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gIYiRkwq .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gIYiRkwq div.b {
  padding-top: 2rem;
}
.cid-v7gIYiRkwq H5 {
  color: #f7ed4a;
}
.cid-v7gJja2mml {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gJja2mml .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gJja2mml .section-text {
  padding: 2rem 0;
}
.cid-v7gJja2mml .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gJja2mml .inner-container {
    width: 100% !important;
  }
}
.cid-v7gJjaFbkY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gJjaFbkY .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gJjaFbkY .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gJjaFbkY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gJjaFbkY .inner-container {
    width: 100% !important;
  }
}
.cid-v7gJjaMH47 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gJjaMH47 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gJjaMH47 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gJjaMH47 .row {
  justify-content: center;
}
.cid-v7gJjaMH47 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gJjaMH47 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gJjaMH47 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gJjaMH47 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gJjaMH47 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gJjaMH47 .mbr-text_1,
.cid-v7gJjaMH47 .mbr-text_2,
.cid-v7gJjaMH47 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gJjaMH47 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gJjaMH47 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gJjaMH47 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gJjaMH47 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gJjaMH47 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gJjaMH47 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gJjaMH47 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gJjaMH47 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gJjaMH47 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gJjaMH47 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gJjaMH47 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gJjaMH47 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gJjaMH47 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gJjb07u2 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gJjb07u2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gJjb07u2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gJjb07u2 .row {
  justify-content: center;
}
.cid-v7gJjb07u2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gJjb07u2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gJjb07u2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gJjb07u2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gJjb07u2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gJjb07u2 .mbr-text_1,
.cid-v7gJjb07u2 .mbr-text_2,
.cid-v7gJjb07u2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gJjb07u2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gJjb07u2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gJjb07u2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gJjb07u2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gJjb07u2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gJjb07u2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gJjb07u2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gJjb07u2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gJjb07u2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gJjb07u2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gJjb07u2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gJjb07u2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gJjb07u2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gJjb8Hw7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gJjb8Hw7 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gJjb8Hw7 .section-text {
  padding: 2rem 0;
}
.cid-v7gJjb8Hw7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gJjb8Hw7 .inner-container {
    width: 100% !important;
  }
}
.cid-v7jPJrOOnP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7jPJrOOnP .mbr-section-subtitle {
  color: #767676;
}
.cid-v7jPJrOOnP .container-table {
  margin: 0 auto;
}
.cid-v7jPJrOOnP .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7jPJrOOnP .dataTables_wrapper {
  display: block;
}
.cid-v7jPJrOOnP .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7jPJrOOnP .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7jPJrOOnP table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7jPJrOOnP table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7jPJrOOnP table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7jPJrOOnP table td {
  border-top: 1px solid #232323;
}
.cid-v7jPJrOOnP table.table {
  background: #ecae15;
}
.cid-v7jPJrOOnP .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7jPJrOOnP .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7jPJrOOnP .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7jPJrOOnP .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7jPJrOOnP .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7jPJrOOnP .dataTables_filter {
    text-align: center;
  }
  .cid-v7jPJrOOnP .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7jPJrOOnP .mbr-section-title {
  color: #232323;
}
.cid-v7jPJrOOnP .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7jPJrOOnP .body-item {
  text-align: center;
}
.cid-v7gJjdrnts {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gJjdxUMI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gJjdxUMI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gJjdxUMI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gJjdxUMI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gJjdxUMI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gJjdxUMI .row > .row {
  display: block;
}
.cid-v7gJjdxUMI .mbr-gallery-item {
  width: 100%;
}
.cid-v7gJjdxUMI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gJjdxUMI .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gJjdxUMI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gJjdxUMI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gJjdxUMI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gJjdxUMI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gJjkKMxc {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gJjkKMxc .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gJjkKMxc div.b {
  padding-top: 2rem;
}
.cid-v7gJjkKMxc H5 {
  color: #f7ed4a;
}
.cid-v7gJEPSL1e {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gJEPSL1e .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gJEPSL1e .section-text {
  padding: 2rem 0;
}
.cid-v7gJEPSL1e .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gJEPSL1e .inner-container {
    width: 100% !important;
  }
}
.cid-v7gJEQus73 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gJEQus73 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gJEQus73 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gJEQus73 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gJEQus73 .inner-container {
    width: 100% !important;
  }
}
.cid-v7gJEQBHV2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gJEQBHV2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gJEQBHV2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gJEQBHV2 .row {
  justify-content: center;
}
.cid-v7gJEQBHV2 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gJEQBHV2 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gJEQBHV2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gJEQBHV2 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gJEQBHV2 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gJEQBHV2 .mbr-text_1,
.cid-v7gJEQBHV2 .mbr-text_2,
.cid-v7gJEQBHV2 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gJEQBHV2 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gJEQBHV2 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gJEQBHV2 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gJEQBHV2 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gJEQBHV2 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gJEQBHV2 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gJEQBHV2 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gJEQBHV2 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gJEQBHV2 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gJEQBHV2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gJEQBHV2 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gJEQBHV2 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gJEQBHV2 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gJEQRs9Z {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gJEQRs9Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gJEQRs9Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gJEQRs9Z .row {
  justify-content: center;
}
.cid-v7gJEQRs9Z .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gJEQRs9Z .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gJEQRs9Z .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gJEQRs9Z .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gJEQRs9Z .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gJEQRs9Z .mbr-text_1,
.cid-v7gJEQRs9Z .mbr-text_2,
.cid-v7gJEQRs9Z .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gJEQRs9Z .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gJEQRs9Z .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gJEQRs9Z .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gJEQRs9Z .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gJEQRs9Z .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gJEQRs9Z .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gJEQRs9Z .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gJEQRs9Z .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gJEQRs9Z .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gJEQRs9Z .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gJEQRs9Z .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gJEQRs9Z .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gJEQRs9Z .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gJER0OPQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gJER0OPQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gJER0OPQ .section-text {
  padding: 2rem 0;
}
.cid-v7gJER0OPQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gJER0OPQ .inner-container {
    width: 100% !important;
  }
}
.cid-v7jREOzLeg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7jREOzLeg .mbr-section-subtitle {
  color: #767676;
}
.cid-v7jREOzLeg .container-table {
  margin: 0 auto;
}
.cid-v7jREOzLeg .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7jREOzLeg .dataTables_wrapper {
  display: block;
}
.cid-v7jREOzLeg .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7jREOzLeg .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7jREOzLeg table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7jREOzLeg table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7jREOzLeg table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7jREOzLeg table td {
  border-top: 1px solid #232323;
}
.cid-v7jREOzLeg table.table {
  background: #ecae15;
}
.cid-v7jREOzLeg .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7jREOzLeg .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7jREOzLeg .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7jREOzLeg .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7jREOzLeg .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7jREOzLeg .dataTables_filter {
    text-align: center;
  }
  .cid-v7jREOzLeg .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7jREOzLeg .mbr-section-title {
  color: #232323;
}
.cid-v7jREOzLeg .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7jREOzLeg .body-item {
  text-align: center;
}
.cid-v7gJETAdlr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gJETGyVZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gJETGyVZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gJETGyVZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gJETGyVZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gJETGyVZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gJETGyVZ .row > .row {
  display: block;
}
.cid-v7gJETGyVZ .mbr-gallery-item {
  width: 100%;
}
.cid-v7gJETGyVZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gJETGyVZ .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gJETGyVZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gJETGyVZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gJETGyVZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gJETGyVZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gJF0MenA {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gJF0MenA .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gJF0MenA div.b {
  padding-top: 2rem;
}
.cid-v7gJF0MenA H5 {
  color: #f7ed4a;
}
.cid-v7gK1tU4pi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gK1tU4pi .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gK1tU4pi .section-text {
  padding: 2rem 0;
}
.cid-v7gK1tU4pi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gK1tU4pi .inner-container {
    width: 100% !important;
  }
}
.cid-v7gK1uw8mL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gK1uw8mL .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gK1uw8mL .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gK1uw8mL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gK1uw8mL .inner-container {
    width: 100% !important;
  }
}
.cid-v7gK1uCcIL {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gK1uCcIL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gK1uCcIL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gK1uCcIL .row {
  justify-content: center;
}
.cid-v7gK1uCcIL .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gK1uCcIL .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gK1uCcIL .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gK1uCcIL .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gK1uCcIL .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gK1uCcIL .mbr-text_1,
.cid-v7gK1uCcIL .mbr-text_2,
.cid-v7gK1uCcIL .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gK1uCcIL .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gK1uCcIL .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gK1uCcIL .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gK1uCcIL .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gK1uCcIL .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gK1uCcIL .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gK1uCcIL .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gK1uCcIL .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gK1uCcIL .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gK1uCcIL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gK1uCcIL .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gK1uCcIL .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gK1uCcIL .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gK1uO3n9 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gK1uO3n9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gK1uO3n9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gK1uO3n9 .row {
  justify-content: center;
}
.cid-v7gK1uO3n9 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gK1uO3n9 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gK1uO3n9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gK1uO3n9 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gK1uO3n9 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gK1uO3n9 .mbr-text_1,
.cid-v7gK1uO3n9 .mbr-text_2,
.cid-v7gK1uO3n9 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gK1uO3n9 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gK1uO3n9 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gK1uO3n9 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gK1uO3n9 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gK1uO3n9 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gK1uO3n9 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gK1uO3n9 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gK1uO3n9 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gK1uO3n9 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gK1uO3n9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gK1uO3n9 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gK1uO3n9 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gK1uO3n9 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gK1uWg4k {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gK1uWg4k .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gK1uWg4k .section-text {
  padding: 2rem 0;
}
.cid-v7gK1uWg4k .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gK1uWg4k .inner-container {
    width: 100% !important;
  }
}
.cid-v7jTyve8z2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7jTyve8z2 .mbr-section-subtitle {
  color: #767676;
}
.cid-v7jTyve8z2 .container-table {
  margin: 0 auto;
}
.cid-v7jTyve8z2 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7jTyve8z2 .dataTables_wrapper {
  display: block;
}
.cid-v7jTyve8z2 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7jTyve8z2 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7jTyve8z2 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7jTyve8z2 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7jTyve8z2 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7jTyve8z2 table td {
  border-top: 1px solid #232323;
}
.cid-v7jTyve8z2 table.table {
  background: #ecae15;
}
.cid-v7jTyve8z2 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7jTyve8z2 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7jTyve8z2 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7jTyve8z2 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7jTyve8z2 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7jTyve8z2 .dataTables_filter {
    text-align: center;
  }
  .cid-v7jTyve8z2 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7jTyve8z2 .mbr-section-title {
  color: #232323;
}
.cid-v7jTyve8z2 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7jTyve8z2 .body-item {
  text-align: center;
}
.cid-v7gK1xQIP6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gK1xWCrQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gK1xWCrQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gK1xWCrQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gK1xWCrQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gK1xWCrQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gK1xWCrQ .row > .row {
  display: block;
}
.cid-v7gK1xWCrQ .mbr-gallery-item {
  width: 100%;
}
.cid-v7gK1xWCrQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gK1xWCrQ .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gK1xWCrQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gK1xWCrQ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gK1xWCrQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gK1xWCrQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gK1F6TcO {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gK1F6TcO .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gK1F6TcO div.b {
  padding-top: 2rem;
}
.cid-v7gK1F6TcO H5 {
  color: #f7ed4a;
}
.cid-v7gKoAHWz6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gKoAHWz6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gKoAHWz6 .section-text {
  padding: 2rem 0;
}
.cid-v7gKoAHWz6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gKoAHWz6 .inner-container {
    width: 100% !important;
  }
}
.cid-v7gKoBkasq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gKoBkasq .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gKoBkasq .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gKoBkasq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gKoBkasq .inner-container {
    width: 100% !important;
  }
}
.cid-v7gKoBqlpy {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gKoBqlpy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gKoBqlpy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gKoBqlpy .row {
  justify-content: center;
}
.cid-v7gKoBqlpy .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gKoBqlpy .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gKoBqlpy .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gKoBqlpy .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gKoBqlpy .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gKoBqlpy .mbr-text_1,
.cid-v7gKoBqlpy .mbr-text_2,
.cid-v7gKoBqlpy .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gKoBqlpy .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gKoBqlpy .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gKoBqlpy .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gKoBqlpy .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gKoBqlpy .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gKoBqlpy .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gKoBqlpy .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gKoBqlpy .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gKoBqlpy .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gKoBqlpy .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gKoBqlpy .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gKoBqlpy .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gKoBqlpy .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gKoBC3qm {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gKoBC3qm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gKoBC3qm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gKoBC3qm .row {
  justify-content: center;
}
.cid-v7gKoBC3qm .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gKoBC3qm .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gKoBC3qm .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gKoBC3qm .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gKoBC3qm .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gKoBC3qm .mbr-text_1,
.cid-v7gKoBC3qm .mbr-text_2,
.cid-v7gKoBC3qm .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gKoBC3qm .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gKoBC3qm .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gKoBC3qm .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gKoBC3qm .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gKoBC3qm .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gKoBC3qm .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gKoBC3qm .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gKoBC3qm .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gKoBC3qm .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gKoBC3qm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gKoBC3qm .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gKoBC3qm .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gKoBC3qm .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gKoBOyCT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gKoBOyCT .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gKoBOyCT .section-text {
  padding: 2rem 0;
}
.cid-v7gKoBOyCT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gKoBOyCT .inner-container {
    width: 100% !important;
  }
}
.cid-v7jWL6HOzK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7jWL6HOzK .mbr-section-subtitle {
  color: #767676;
}
.cid-v7jWL6HOzK .container-table {
  margin: 0 auto;
}
.cid-v7jWL6HOzK .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7jWL6HOzK .dataTables_wrapper {
  display: block;
}
.cid-v7jWL6HOzK .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7jWL6HOzK .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7jWL6HOzK table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7jWL6HOzK table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7jWL6HOzK table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7jWL6HOzK table td {
  border-top: 1px solid #232323;
}
.cid-v7jWL6HOzK table.table {
  background: #ecae15;
}
.cid-v7jWL6HOzK .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7jWL6HOzK .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7jWL6HOzK .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7jWL6HOzK .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7jWL6HOzK .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7jWL6HOzK .dataTables_filter {
    text-align: center;
  }
  .cid-v7jWL6HOzK .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7jWL6HOzK .mbr-section-title {
  color: #232323;
}
.cid-v7jWL6HOzK .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7jWL6HOzK .body-item {
  text-align: center;
}
.cid-v7gKoF11eM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gKoF9eDH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gKoF9eDH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gKoF9eDH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gKoF9eDH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gKoF9eDH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gKoF9eDH .row > .row {
  display: block;
}
.cid-v7gKoF9eDH .mbr-gallery-item {
  width: 100%;
}
.cid-v7gKoF9eDH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gKoF9eDH .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gKoF9eDH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gKoF9eDH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gKoF9eDH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gKoF9eDH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gKoLOgNu {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gKoLOgNu .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gKoLOgNu div.b {
  padding-top: 2rem;
}
.cid-v7gKoLOgNu H5 {
  color: #f7ed4a;
}
.cid-v7gKMVAKef {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gKMVAKef .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gKMVAKef .section-text {
  padding: 2rem 0;
}
.cid-v7gKMVAKef .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gKMVAKef .inner-container {
    width: 100% !important;
  }
}
.cid-v7gKMWeCGz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gKMWeCGz .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gKMWeCGz .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gKMWeCGz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gKMWeCGz .inner-container {
    width: 100% !important;
  }
}
.cid-v7gKMWjk7d {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gKMWjk7d .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gKMWjk7d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gKMWjk7d .row {
  justify-content: center;
}
.cid-v7gKMWjk7d .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gKMWjk7d .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gKMWjk7d .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gKMWjk7d .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gKMWjk7d .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gKMWjk7d .mbr-text_1,
.cid-v7gKMWjk7d .mbr-text_2,
.cid-v7gKMWjk7d .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gKMWjk7d .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gKMWjk7d .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gKMWjk7d .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gKMWjk7d .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gKMWjk7d .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gKMWjk7d .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gKMWjk7d .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gKMWjk7d .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gKMWjk7d .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gKMWjk7d .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gKMWjk7d .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gKMWjk7d .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gKMWjk7d .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gKMWvvnn {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gKMWvvnn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gKMWvvnn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gKMWvvnn .row {
  justify-content: center;
}
.cid-v7gKMWvvnn .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gKMWvvnn .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gKMWvvnn .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gKMWvvnn .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gKMWvvnn .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gKMWvvnn .mbr-text_1,
.cid-v7gKMWvvnn .mbr-text_2,
.cid-v7gKMWvvnn .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gKMWvvnn .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gKMWvvnn .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gKMWvvnn .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gKMWvvnn .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gKMWvvnn .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gKMWvvnn .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gKMWvvnn .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gKMWvvnn .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gKMWvvnn .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gKMWvvnn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gKMWvvnn .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gKMWvvnn .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gKMWvvnn .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gKMWDDFJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gKMWDDFJ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gKMWDDFJ .section-text {
  padding: 2rem 0;
}
.cid-v7gKMWDDFJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gKMWDDFJ .inner-container {
    width: 100% !important;
  }
}
.cid-v7jYGvWDO5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7jYGvWDO5 .mbr-section-subtitle {
  color: #767676;
}
.cid-v7jYGvWDO5 .container-table {
  margin: 0 auto;
}
.cid-v7jYGvWDO5 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7jYGvWDO5 .dataTables_wrapper {
  display: block;
}
.cid-v7jYGvWDO5 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7jYGvWDO5 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7jYGvWDO5 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7jYGvWDO5 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7jYGvWDO5 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7jYGvWDO5 table td {
  border-top: 1px solid #232323;
}
.cid-v7jYGvWDO5 table.table {
  background: #ecae15;
}
.cid-v7jYGvWDO5 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7jYGvWDO5 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7jYGvWDO5 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7jYGvWDO5 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7jYGvWDO5 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7jYGvWDO5 .dataTables_filter {
    text-align: center;
  }
  .cid-v7jYGvWDO5 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7jYGvWDO5 .mbr-section-title {
  color: #232323;
}
.cid-v7jYGvWDO5 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7jYGvWDO5 .body-item {
  text-align: center;
}
.cid-v7gKN02tuf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gKN09v8f {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gKN09v8f .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gKN09v8f .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gKN09v8f .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gKN09v8f .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gKN09v8f .row > .row {
  display: block;
}
.cid-v7gKN09v8f .mbr-gallery-item {
  width: 100%;
}
.cid-v7gKN09v8f .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gKN09v8f .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gKN09v8f .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gKN09v8f .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gKN09v8f .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gKN09v8f .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gKN6BZOV {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gKN6BZOV .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gKN6BZOV div.b {
  padding-top: 2rem;
}
.cid-v7gKN6BZOV H5 {
  color: #f7ed4a;
}
.cid-v7gLbluf6H {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gLbluf6H .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gLbluf6H .section-text {
  padding: 2rem 0;
}
.cid-v7gLbluf6H .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gLbluf6H .inner-container {
    width: 100% !important;
  }
}
.cid-v7gLbm7ylW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gLbm7ylW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gLbm7ylW .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gLbm7ylW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gLbm7ylW .inner-container {
    width: 100% !important;
  }
}
.cid-v7gLbmdapb {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gLbmdapb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gLbmdapb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gLbmdapb .row {
  justify-content: center;
}
.cid-v7gLbmdapb .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gLbmdapb .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gLbmdapb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gLbmdapb .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gLbmdapb .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gLbmdapb .mbr-text_1,
.cid-v7gLbmdapb .mbr-text_2,
.cid-v7gLbmdapb .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gLbmdapb .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLbmdapb .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gLbmdapb .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gLbmdapb .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gLbmdapb .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLbmdapb .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gLbmdapb .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gLbmdapb .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLbmdapb .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gLbmdapb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gLbmdapb .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gLbmdapb .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gLbmdapb .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gLbmo4hU {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gLbmo4hU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gLbmo4hU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gLbmo4hU .row {
  justify-content: center;
}
.cid-v7gLbmo4hU .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gLbmo4hU .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gLbmo4hU .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gLbmo4hU .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gLbmo4hU .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gLbmo4hU .mbr-text_1,
.cid-v7gLbmo4hU .mbr-text_2,
.cid-v7gLbmo4hU .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gLbmo4hU .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLbmo4hU .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gLbmo4hU .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gLbmo4hU .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gLbmo4hU .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLbmo4hU .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gLbmo4hU .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gLbmo4hU .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLbmo4hU .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gLbmo4hU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gLbmo4hU .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gLbmo4hU .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gLbmo4hU .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gLbmxKPK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gLbmxKPK .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gLbmxKPK .section-text {
  padding: 2rem 0;
}
.cid-v7gLbmxKPK .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gLbmxKPK .inner-container {
    width: 100% !important;
  }
}
.cid-v7k4HPFZ5m {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7k4HPFZ5m .mbr-section-subtitle {
  color: #767676;
}
.cid-v7k4HPFZ5m .container-table {
  margin: 0 auto;
}
.cid-v7k4HPFZ5m .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7k4HPFZ5m .dataTables_wrapper {
  display: block;
}
.cid-v7k4HPFZ5m .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7k4HPFZ5m .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7k4HPFZ5m table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7k4HPFZ5m table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7k4HPFZ5m table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7k4HPFZ5m table td {
  border-top: 1px solid #232323;
}
.cid-v7k4HPFZ5m table.table {
  background: #ecae15;
}
.cid-v7k4HPFZ5m .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7k4HPFZ5m .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7k4HPFZ5m .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7k4HPFZ5m .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7k4HPFZ5m .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7k4HPFZ5m .dataTables_filter {
    text-align: center;
  }
  .cid-v7k4HPFZ5m .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7k4HPFZ5m .mbr-section-title {
  color: #232323;
}
.cid-v7k4HPFZ5m .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7k4HPFZ5m .body-item {
  text-align: center;
}
.cid-v7gLbq2HLS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gLbqa2T0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gLbqa2T0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gLbqa2T0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gLbqa2T0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gLbqa2T0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gLbqa2T0 .row > .row {
  display: block;
}
.cid-v7gLbqa2T0 .mbr-gallery-item {
  width: 100%;
}
.cid-v7gLbqa2T0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gLbqa2T0 .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gLbqa2T0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gLbqa2T0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gLbqa2T0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gLbqa2T0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gLbwcKsK {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gLbwcKsK .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gLbwcKsK div.b {
  padding-top: 2rem;
}
.cid-v7gLbwcKsK H5 {
  color: #f7ed4a;
}
.cid-v7gLw4JJYS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gLw4JJYS .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gLw4JJYS .section-text {
  padding: 2rem 0;
}
.cid-v7gLw4JJYS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gLw4JJYS .inner-container {
    width: 100% !important;
  }
}
.cid-v7gLw5nXXr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gLw5nXXr .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gLw5nXXr .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gLw5nXXr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gLw5nXXr .inner-container {
    width: 100% !important;
  }
}
.cid-v7gLw5tSql {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gLw5tSql .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gLw5tSql .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gLw5tSql .row {
  justify-content: center;
}
.cid-v7gLw5tSql .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gLw5tSql .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gLw5tSql .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gLw5tSql .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gLw5tSql .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gLw5tSql .mbr-text_1,
.cid-v7gLw5tSql .mbr-text_2,
.cid-v7gLw5tSql .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gLw5tSql .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLw5tSql .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gLw5tSql .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gLw5tSql .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gLw5tSql .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLw5tSql .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gLw5tSql .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gLw5tSql .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLw5tSql .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gLw5tSql .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gLw5tSql .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gLw5tSql .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gLw5tSql .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gLw5GWDV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gLw5GWDV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gLw5GWDV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gLw5GWDV .row {
  justify-content: center;
}
.cid-v7gLw5GWDV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gLw5GWDV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gLw5GWDV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gLw5GWDV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gLw5GWDV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gLw5GWDV .mbr-text_1,
.cid-v7gLw5GWDV .mbr-text_2,
.cid-v7gLw5GWDV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gLw5GWDV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLw5GWDV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gLw5GWDV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gLw5GWDV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gLw5GWDV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLw5GWDV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gLw5GWDV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gLw5GWDV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLw5GWDV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gLw5GWDV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gLw5GWDV .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gLw5GWDV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gLw5GWDV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gLw5OXCk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gLw5OXCk .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gLw5OXCk .section-text {
  padding: 2rem 0;
}
.cid-v7gLw5OXCk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gLw5OXCk .inner-container {
    width: 100% !important;
  }
}
.cid-v7k8Otp500 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7k8Otp500 .mbr-section-subtitle {
  color: #767676;
}
.cid-v7k8Otp500 .container-table {
  margin: 0 auto;
}
.cid-v7k8Otp500 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7k8Otp500 .dataTables_wrapper {
  display: block;
}
.cid-v7k8Otp500 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7k8Otp500 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7k8Otp500 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7k8Otp500 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7k8Otp500 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7k8Otp500 table td {
  border-top: 1px solid #232323;
}
.cid-v7k8Otp500 table.table {
  background: #ecae15;
}
.cid-v7k8Otp500 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7k8Otp500 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7k8Otp500 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7k8Otp500 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7k8Otp500 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7k8Otp500 .dataTables_filter {
    text-align: center;
  }
  .cid-v7k8Otp500 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7k8Otp500 .mbr-section-title {
  color: #232323;
}
.cid-v7k8Otp500 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7k8Otp500 .body-item {
  text-align: center;
}
.cid-v7gLw9CHsG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gLw9KETu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gLw9KETu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gLw9KETu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gLw9KETu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gLw9KETu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gLw9KETu .row > .row {
  display: block;
}
.cid-v7gLw9KETu .mbr-gallery-item {
  width: 100%;
}
.cid-v7gLw9KETu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gLw9KETu .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gLw9KETu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gLw9KETu .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gLw9KETu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gLw9KETu .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gLwfvb93 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gLwfvb93 .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gLwfvb93 div.b {
  padding-top: 2rem;
}
.cid-v7gLwfvb93 H5 {
  color: #f7ed4a;
}
.cid-v7gLTWkks9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gLTWkks9 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gLTWkks9 .section-text {
  padding: 2rem 0;
}
.cid-v7gLTWkks9 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gLTWkks9 .inner-container {
    width: 100% !important;
  }
}
.cid-v7gLTWYZRP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gLTWYZRP .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gLTWYZRP .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gLTWYZRP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gLTWYZRP .inner-container {
    width: 100% !important;
  }
}
.cid-v7gLTX3o8e {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gLTX3o8e .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gLTX3o8e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gLTX3o8e .row {
  justify-content: center;
}
.cid-v7gLTX3o8e .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gLTX3o8e .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gLTX3o8e .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gLTX3o8e .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gLTX3o8e .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gLTX3o8e .mbr-text_1,
.cid-v7gLTX3o8e .mbr-text_2,
.cid-v7gLTX3o8e .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gLTX3o8e .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLTX3o8e .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gLTX3o8e .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gLTX3o8e .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gLTX3o8e .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLTX3o8e .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gLTX3o8e .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gLTX3o8e .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLTX3o8e .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gLTX3o8e .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gLTX3o8e .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gLTX3o8e .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gLTX3o8e .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gLTXebZ3 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gLTXebZ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gLTXebZ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gLTXebZ3 .row {
  justify-content: center;
}
.cid-v7gLTXebZ3 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gLTXebZ3 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gLTXebZ3 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gLTXebZ3 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gLTXebZ3 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gLTXebZ3 .mbr-text_1,
.cid-v7gLTXebZ3 .mbr-text_2,
.cid-v7gLTXebZ3 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gLTXebZ3 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLTXebZ3 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gLTXebZ3 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gLTXebZ3 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gLTXebZ3 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLTXebZ3 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gLTXebZ3 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gLTXebZ3 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gLTXebZ3 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gLTXebZ3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gLTXebZ3 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gLTXebZ3 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gLTXebZ3 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gLTXmyPE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gLTXmyPE .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gLTXmyPE .section-text {
  padding: 2rem 0;
}
.cid-v7gLTXmyPE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gLTXmyPE .inner-container {
    width: 100% !important;
  }
}
.cid-v7kbas8dTx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7kbas8dTx .mbr-section-subtitle {
  color: #767676;
}
.cid-v7kbas8dTx .container-table {
  margin: 0 auto;
}
.cid-v7kbas8dTx .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7kbas8dTx .dataTables_wrapper {
  display: block;
}
.cid-v7kbas8dTx .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7kbas8dTx .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7kbas8dTx table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7kbas8dTx table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7kbas8dTx table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7kbas8dTx table td {
  border-top: 1px solid #232323;
}
.cid-v7kbas8dTx table.table {
  background: #ecae15;
}
.cid-v7kbas8dTx .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7kbas8dTx .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7kbas8dTx .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7kbas8dTx .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7kbas8dTx .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7kbas8dTx .dataTables_filter {
    text-align: center;
  }
  .cid-v7kbas8dTx .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7kbas8dTx .mbr-section-title {
  color: #232323;
}
.cid-v7kbas8dTx .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7kbas8dTx .body-item {
  text-align: center;
}
.cid-v7gLU1ksXA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gLU1rZE6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gLU1rZE6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gLU1rZE6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gLU1rZE6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gLU1rZE6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gLU1rZE6 .row > .row {
  display: block;
}
.cid-v7gLU1rZE6 .mbr-gallery-item {
  width: 100%;
}
.cid-v7gLU1rZE6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gLU1rZE6 .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gLU1rZE6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gLU1rZE6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gLU1rZE6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gLU1rZE6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gLU6QOIQ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gLU6QOIQ .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gLU6QOIQ div.b {
  padding-top: 2rem;
}
.cid-v7gLU6QOIQ H5 {
  color: #f7ed4a;
}
.cid-v7gMhTIp4k {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gMhTIp4k .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gMhTIp4k .section-text {
  padding: 2rem 0;
}
.cid-v7gMhTIp4k .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gMhTIp4k .inner-container {
    width: 100% !important;
  }
}
.cid-v7gMhUmE1F {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gMhUmE1F .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gMhUmE1F .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gMhUmE1F .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gMhUmE1F .inner-container {
    width: 100% !important;
  }
}
.cid-v7gMhUsPQM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gMhUsPQM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gMhUsPQM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gMhUsPQM .row {
  justify-content: center;
}
.cid-v7gMhUsPQM .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gMhUsPQM .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gMhUsPQM .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gMhUsPQM .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gMhUsPQM .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gMhUsPQM .mbr-text_1,
.cid-v7gMhUsPQM .mbr-text_2,
.cid-v7gMhUsPQM .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gMhUsPQM .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMhUsPQM .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gMhUsPQM .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gMhUsPQM .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gMhUsPQM .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMhUsPQM .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gMhUsPQM .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gMhUsPQM .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMhUsPQM .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gMhUsPQM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gMhUsPQM .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gMhUsPQM .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gMhUsPQM .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gMhUD4KJ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gMhUD4KJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gMhUD4KJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gMhUD4KJ .row {
  justify-content: center;
}
.cid-v7gMhUD4KJ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gMhUD4KJ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gMhUD4KJ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gMhUD4KJ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gMhUD4KJ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gMhUD4KJ .mbr-text_1,
.cid-v7gMhUD4KJ .mbr-text_2,
.cid-v7gMhUD4KJ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gMhUD4KJ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMhUD4KJ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gMhUD4KJ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gMhUD4KJ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gMhUD4KJ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMhUD4KJ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gMhUD4KJ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gMhUD4KJ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMhUD4KJ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gMhUD4KJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gMhUD4KJ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gMhUD4KJ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gMhUD4KJ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gMhUJv91 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gMhUJv91 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gMhUJv91 .section-text {
  padding: 2rem 0;
}
.cid-v7gMhUJv91 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gMhUJv91 .inner-container {
    width: 100% !important;
  }
}
.cid-v7kdH2a9jV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7kdH2a9jV .mbr-section-subtitle {
  color: #767676;
}
.cid-v7kdH2a9jV .container-table {
  margin: 0 auto;
}
.cid-v7kdH2a9jV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7kdH2a9jV .dataTables_wrapper {
  display: block;
}
.cid-v7kdH2a9jV .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7kdH2a9jV .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7kdH2a9jV table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7kdH2a9jV table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7kdH2a9jV table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7kdH2a9jV table td {
  border-top: 1px solid #232323;
}
.cid-v7kdH2a9jV table.table {
  background: #ecae15;
}
.cid-v7kdH2a9jV .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7kdH2a9jV .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7kdH2a9jV .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7kdH2a9jV .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7kdH2a9jV .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7kdH2a9jV .dataTables_filter {
    text-align: center;
  }
  .cid-v7kdH2a9jV .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7kdH2a9jV .mbr-section-title {
  color: #232323;
}
.cid-v7kdH2a9jV .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7kdH2a9jV .body-item {
  text-align: center;
}
.cid-v7gMhZoGPy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gMhZxJPu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gMhZxJPu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gMhZxJPu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gMhZxJPu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gMhZxJPu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gMhZxJPu .row > .row {
  display: block;
}
.cid-v7gMhZxJPu .mbr-gallery-item {
  width: 100%;
}
.cid-v7gMhZxJPu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gMhZxJPu .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gMhZxJPu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gMhZxJPu .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gMhZxJPu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gMhZxJPu .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gMi4Thu6 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gMi4Thu6 .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gMi4Thu6 div.b {
  padding-top: 2rem;
}
.cid-v7gMi4Thu6 H5 {
  color: #f7ed4a;
}
.cid-v7gMCQC9MR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gMCQC9MR .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gMCQC9MR .section-text {
  padding: 2rem 0;
}
.cid-v7gMCQC9MR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gMCQC9MR .inner-container {
    width: 100% !important;
  }
}
.cid-v7gMCRfGN2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gMCRfGN2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gMCRfGN2 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gMCRfGN2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gMCRfGN2 .inner-container {
    width: 100% !important;
  }
}
.cid-v7gMCRlyu5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gMCRlyu5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gMCRlyu5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gMCRlyu5 .row {
  justify-content: center;
}
.cid-v7gMCRlyu5 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gMCRlyu5 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gMCRlyu5 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gMCRlyu5 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gMCRlyu5 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gMCRlyu5 .mbr-text_1,
.cid-v7gMCRlyu5 .mbr-text_2,
.cid-v7gMCRlyu5 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gMCRlyu5 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMCRlyu5 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gMCRlyu5 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gMCRlyu5 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gMCRlyu5 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMCRlyu5 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gMCRlyu5 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gMCRlyu5 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMCRlyu5 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gMCRlyu5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gMCRlyu5 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gMCRlyu5 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gMCRlyu5 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gMCRxERM {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gMCRxERM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gMCRxERM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gMCRxERM .row {
  justify-content: center;
}
.cid-v7gMCRxERM .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gMCRxERM .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gMCRxERM .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gMCRxERM .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gMCRxERM .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gMCRxERM .mbr-text_1,
.cid-v7gMCRxERM .mbr-text_2,
.cid-v7gMCRxERM .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gMCRxERM .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMCRxERM .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gMCRxERM .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gMCRxERM .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gMCRxERM .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMCRxERM .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gMCRxERM .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gMCRxERM .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMCRxERM .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gMCRxERM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gMCRxERM .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gMCRxERM .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gMCRxERM .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gMCRFG7m {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gMCRFG7m .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gMCRFG7m .section-text {
  padding: 2rem 0;
}
.cid-v7gMCRFG7m .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gMCRFG7m .inner-container {
    width: 100% !important;
  }
}
.cid-v7kfXOYrDq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7kfXOYrDq .mbr-section-subtitle {
  color: #767676;
}
.cid-v7kfXOYrDq .container-table {
  margin: 0 auto;
}
.cid-v7kfXOYrDq .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7kfXOYrDq .dataTables_wrapper {
  display: block;
}
.cid-v7kfXOYrDq .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7kfXOYrDq .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7kfXOYrDq table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7kfXOYrDq table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7kfXOYrDq table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7kfXOYrDq table td {
  border-top: 1px solid #232323;
}
.cid-v7kfXOYrDq table.table {
  background: #ecae15;
}
.cid-v7kfXOYrDq .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7kfXOYrDq .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7kfXOYrDq .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7kfXOYrDq .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7kfXOYrDq .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7kfXOYrDq .dataTables_filter {
    text-align: center;
  }
  .cid-v7kfXOYrDq .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7kfXOYrDq .mbr-section-title {
  color: #232323;
}
.cid-v7kfXOYrDq .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7kfXOYrDq .body-item {
  text-align: center;
}
.cid-v7gMCWqgnP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gMCWywNJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gMCWywNJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gMCWywNJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gMCWywNJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gMCWywNJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gMCWywNJ .row > .row {
  display: block;
}
.cid-v7gMCWywNJ .mbr-gallery-item {
  width: 100%;
}
.cid-v7gMCWywNJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gMCWywNJ .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gMCWywNJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gMCWywNJ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gMCWywNJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gMCWywNJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gMD1uepE {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gMD1uepE .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gMD1uepE div.b {
  padding-top: 2rem;
}
.cid-v7gMD1uepE H5 {
  color: #f7ed4a;
}
.cid-v7gMZwVugM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gMZwVugM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gMZwVugM .section-text {
  padding: 2rem 0;
}
.cid-v7gMZwVugM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gMZwVugM .inner-container {
    width: 100% !important;
  }
}
.cid-v7gMZxAFU3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gMZxAFU3 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gMZxAFU3 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gMZxAFU3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gMZxAFU3 .inner-container {
    width: 100% !important;
  }
}
.cid-v7gMZxHaik {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gMZxHaik .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gMZxHaik .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gMZxHaik .row {
  justify-content: center;
}
.cid-v7gMZxHaik .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gMZxHaik .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gMZxHaik .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gMZxHaik .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gMZxHaik .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gMZxHaik .mbr-text_1,
.cid-v7gMZxHaik .mbr-text_2,
.cid-v7gMZxHaik .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gMZxHaik .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMZxHaik .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gMZxHaik .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gMZxHaik .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gMZxHaik .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMZxHaik .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gMZxHaik .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gMZxHaik .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMZxHaik .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gMZxHaik .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gMZxHaik .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gMZxHaik .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gMZxHaik .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gMZxTz4M {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gMZxTz4M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gMZxTz4M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gMZxTz4M .row {
  justify-content: center;
}
.cid-v7gMZxTz4M .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gMZxTz4M .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gMZxTz4M .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gMZxTz4M .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gMZxTz4M .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gMZxTz4M .mbr-text_1,
.cid-v7gMZxTz4M .mbr-text_2,
.cid-v7gMZxTz4M .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gMZxTz4M .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMZxTz4M .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gMZxTz4M .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gMZxTz4M .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gMZxTz4M .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMZxTz4M .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gMZxTz4M .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gMZxTz4M .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gMZxTz4M .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gMZxTz4M .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gMZxTz4M .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gMZxTz4M .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gMZxTz4M .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gMZy1hel {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gMZy1hel .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gMZy1hel .section-text {
  padding: 2rem 0;
}
.cid-v7gMZy1hel .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gMZy1hel .inner-container {
    width: 100% !important;
  }
}
.cid-v7kiq44ZfS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7kiq44ZfS .mbr-section-subtitle {
  color: #767676;
}
.cid-v7kiq44ZfS .container-table {
  margin: 0 auto;
}
.cid-v7kiq44ZfS .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7kiq44ZfS .dataTables_wrapper {
  display: block;
}
.cid-v7kiq44ZfS .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7kiq44ZfS .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7kiq44ZfS table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7kiq44ZfS table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7kiq44ZfS table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7kiq44ZfS table td {
  border-top: 1px solid #232323;
}
.cid-v7kiq44ZfS table.table {
  background: #ecae15;
}
.cid-v7kiq44ZfS .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7kiq44ZfS .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7kiq44ZfS .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7kiq44ZfS .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7kiq44ZfS .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7kiq44ZfS .dataTables_filter {
    text-align: center;
  }
  .cid-v7kiq44ZfS .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7kiq44ZfS .mbr-section-title {
  color: #232323;
}
.cid-v7kiq44ZfS .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7kiq44ZfS .body-item {
  text-align: center;
}
.cid-v7gMZD5Hnp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gMZDdvtr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gMZDdvtr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gMZDdvtr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gMZDdvtr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gMZDdvtr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gMZDdvtr .row > .row {
  display: block;
}
.cid-v7gMZDdvtr .mbr-gallery-item {
  width: 100%;
}
.cid-v7gMZDdvtr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gMZDdvtr .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gMZDdvtr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gMZDdvtr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gMZDdvtr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gMZDdvtr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gMZHWzVZ {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gMZHWzVZ .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gMZHWzVZ div.b {
  padding-top: 2rem;
}
.cid-v7gMZHWzVZ H5 {
  color: #f7ed4a;
}
.cid-v7gNp5XHKU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gNp5XHKU .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gNp5XHKU .section-text {
  padding: 2rem 0;
}
.cid-v7gNp5XHKU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gNp5XHKU .inner-container {
    width: 100% !important;
  }
}
.cid-v7gNp6LzRf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gNp6LzRf .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gNp6LzRf .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gNp6LzRf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gNp6LzRf .inner-container {
    width: 100% !important;
  }
}
.cid-v7gNp6R7RE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gNp6R7RE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gNp6R7RE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gNp6R7RE .row {
  justify-content: center;
}
.cid-v7gNp6R7RE .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gNp6R7RE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gNp6R7RE .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gNp6R7RE .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gNp6R7RE .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gNp6R7RE .mbr-text_1,
.cid-v7gNp6R7RE .mbr-text_2,
.cid-v7gNp6R7RE .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gNp6R7RE .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gNp6R7RE .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gNp6R7RE .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gNp6R7RE .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gNp6R7RE .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gNp6R7RE .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gNp6R7RE .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gNp6R7RE .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gNp6R7RE .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gNp6R7RE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gNp6R7RE .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gNp6R7RE .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gNp6R7RE .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gNp7381g {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gNp7381g .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gNp7381g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gNp7381g .row {
  justify-content: center;
}
.cid-v7gNp7381g .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gNp7381g .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gNp7381g .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gNp7381g .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gNp7381g .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gNp7381g .mbr-text_1,
.cid-v7gNp7381g .mbr-text_2,
.cid-v7gNp7381g .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gNp7381g .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gNp7381g .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gNp7381g .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gNp7381g .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gNp7381g .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gNp7381g .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gNp7381g .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gNp7381g .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gNp7381g .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gNp7381g .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gNp7381g .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gNp7381g .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gNp7381g .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gNp7daCs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gNp7daCs .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gNp7daCs .section-text {
  padding: 2rem 0;
}
.cid-v7gNp7daCs .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gNp7daCs .inner-container {
    width: 100% !important;
  }
}
.cid-v7kvAAghIW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7kvAAghIW .mbr-section-subtitle {
  color: #767676;
}
.cid-v7kvAAghIW .container-table {
  margin: 0 auto;
}
.cid-v7kvAAghIW .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7kvAAghIW .dataTables_wrapper {
  display: block;
}
.cid-v7kvAAghIW .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7kvAAghIW .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7kvAAghIW table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7kvAAghIW table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7kvAAghIW table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7kvAAghIW table td {
  border-top: 1px solid #232323;
}
.cid-v7kvAAghIW table.table {
  background: #ecae15;
}
.cid-v7kvAAghIW .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7kvAAghIW .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7kvAAghIW .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7kvAAghIW .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7kvAAghIW .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7kvAAghIW .dataTables_filter {
    text-align: center;
  }
  .cid-v7kvAAghIW .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7kvAAghIW .mbr-section-title {
  color: #232323;
}
.cid-v7kvAAghIW .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7kvAAghIW .body-item {
  text-align: center;
}
.cid-v7gNpczS1q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gNpcHKMv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gNpcHKMv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gNpcHKMv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gNpcHKMv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gNpcHKMv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gNpcHKMv .row > .row {
  display: block;
}
.cid-v7gNpcHKMv .mbr-gallery-item {
  width: 100%;
}
.cid-v7gNpcHKMv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gNpcHKMv .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gNpcHKMv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gNpcHKMv .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gNpcHKMv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gNpcHKMv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gNph59JA {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gNph59JA .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gNph59JA div.b {
  padding-top: 2rem;
}
.cid-v7gNph59JA H5 {
  color: #f7ed4a;
}
.cid-v7gNS2ar8t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gNS2ar8t .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gNS2ar8t .section-text {
  padding: 2rem 0;
}
.cid-v7gNS2ar8t .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gNS2ar8t .inner-container {
    width: 100% !important;
  }
}
.cid-v7gNS2Pzqp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gNS2Pzqp .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gNS2Pzqp .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gNS2Pzqp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gNS2Pzqp .inner-container {
    width: 100% !important;
  }
}
.cid-v7gNS2UiwL {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gNS2UiwL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gNS2UiwL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gNS2UiwL .row {
  justify-content: center;
}
.cid-v7gNS2UiwL .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gNS2UiwL .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gNS2UiwL .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gNS2UiwL .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gNS2UiwL .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gNS2UiwL .mbr-text_1,
.cid-v7gNS2UiwL .mbr-text_2,
.cid-v7gNS2UiwL .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gNS2UiwL .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gNS2UiwL .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gNS2UiwL .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gNS2UiwL .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gNS2UiwL .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gNS2UiwL .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gNS2UiwL .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gNS2UiwL .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gNS2UiwL .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gNS2UiwL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gNS2UiwL .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gNS2UiwL .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gNS2UiwL .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gNS36I55 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gNS36I55 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gNS36I55 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gNS36I55 .row {
  justify-content: center;
}
.cid-v7gNS36I55 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gNS36I55 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gNS36I55 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gNS36I55 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gNS36I55 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gNS36I55 .mbr-text_1,
.cid-v7gNS36I55 .mbr-text_2,
.cid-v7gNS36I55 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gNS36I55 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gNS36I55 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gNS36I55 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gNS36I55 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gNS36I55 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gNS36I55 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gNS36I55 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gNS36I55 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gNS36I55 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gNS36I55 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gNS36I55 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gNS36I55 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gNS36I55 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gNS3hcio {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gNS3hcio .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gNS3hcio .section-text {
  padding: 2rem 0;
}
.cid-v7gNS3hcio .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gNS3hcio .inner-container {
    width: 100% !important;
  }
}
.cid-v7kyQxGckY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7kyQxGckY .mbr-section-subtitle {
  color: #767676;
}
.cid-v7kyQxGckY .container-table {
  margin: 0 auto;
}
.cid-v7kyQxGckY .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7kyQxGckY .dataTables_wrapper {
  display: block;
}
.cid-v7kyQxGckY .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7kyQxGckY .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7kyQxGckY table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7kyQxGckY table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7kyQxGckY table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7kyQxGckY table td {
  border-top: 1px solid #232323;
}
.cid-v7kyQxGckY table.table {
  background: #ecae15;
}
.cid-v7kyQxGckY .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7kyQxGckY .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7kyQxGckY .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7kyQxGckY .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7kyQxGckY .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7kyQxGckY .dataTables_filter {
    text-align: center;
  }
  .cid-v7kyQxGckY .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7kyQxGckY .mbr-section-title {
  color: #232323;
}
.cid-v7kyQxGckY .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7kyQxGckY .body-item {
  text-align: center;
}
.cid-v7gNS90PT4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gNS9apnw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gNS9apnw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gNS9apnw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gNS9apnw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gNS9apnw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gNS9apnw .row > .row {
  display: block;
}
.cid-v7gNS9apnw .mbr-gallery-item {
  width: 100%;
}
.cid-v7gNS9apnw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gNS9apnw .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gNS9apnw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gNS9apnw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gNS9apnw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gNS9apnw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gNSddbop {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gNSddbop .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gNSddbop div.b {
  padding-top: 2rem;
}
.cid-v7gNSddbop H5 {
  color: #f7ed4a;
}
.cid-v7gOeN1kit {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gOeN1kit .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gOeN1kit .section-text {
  padding: 2rem 0;
}
.cid-v7gOeN1kit .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gOeN1kit .inner-container {
    width: 100% !important;
  }
}
.cid-v7gOeNH5yx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gOeNH5yx .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gOeNH5yx .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gOeNH5yx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gOeNH5yx .inner-container {
    width: 100% !important;
  }
}
.cid-v7gOeNMx4z {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gOeNMx4z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gOeNMx4z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gOeNMx4z .row {
  justify-content: center;
}
.cid-v7gOeNMx4z .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gOeNMx4z .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gOeNMx4z .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gOeNMx4z .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gOeNMx4z .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gOeNMx4z .mbr-text_1,
.cid-v7gOeNMx4z .mbr-text_2,
.cid-v7gOeNMx4z .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gOeNMx4z .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gOeNMx4z .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gOeNMx4z .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gOeNMx4z .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gOeNMx4z .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gOeNMx4z .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gOeNMx4z .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gOeNMx4z .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gOeNMx4z .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gOeNMx4z .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gOeNMx4z .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gOeNMx4z .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gOeNMx4z .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gOeNY3Bf {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gOeNY3Bf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gOeNY3Bf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gOeNY3Bf .row {
  justify-content: center;
}
.cid-v7gOeNY3Bf .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gOeNY3Bf .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gOeNY3Bf .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gOeNY3Bf .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gOeNY3Bf .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gOeNY3Bf .mbr-text_1,
.cid-v7gOeNY3Bf .mbr-text_2,
.cid-v7gOeNY3Bf .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gOeNY3Bf .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gOeNY3Bf .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gOeNY3Bf .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gOeNY3Bf .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gOeNY3Bf .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gOeNY3Bf .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gOeNY3Bf .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gOeNY3Bf .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gOeNY3Bf .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gOeNY3Bf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gOeNY3Bf .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gOeNY3Bf .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gOeNY3Bf .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gOeO43W6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gOeO43W6 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gOeO43W6 .section-text {
  padding: 2rem 0;
}
.cid-v7gOeO43W6 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gOeO43W6 .inner-container {
    width: 100% !important;
  }
}
.cid-v7kJjLRHTO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7kJjLRHTO .mbr-section-subtitle {
  color: #767676;
}
.cid-v7kJjLRHTO .container-table {
  margin: 0 auto;
}
.cid-v7kJjLRHTO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7kJjLRHTO .dataTables_wrapper {
  display: block;
}
.cid-v7kJjLRHTO .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7kJjLRHTO .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7kJjLRHTO table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7kJjLRHTO table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7kJjLRHTO table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7kJjLRHTO table td {
  border-top: 1px solid #232323;
}
.cid-v7kJjLRHTO table.table {
  background: #ecae15;
}
.cid-v7kJjLRHTO .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7kJjLRHTO .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7kJjLRHTO .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7kJjLRHTO .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7kJjLRHTO .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7kJjLRHTO .dataTables_filter {
    text-align: center;
  }
  .cid-v7kJjLRHTO .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7kJjLRHTO .mbr-section-title {
  color: #232323;
}
.cid-v7kJjLRHTO .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7kJjLRHTO .body-item {
  text-align: center;
}
.cid-v7gOeTZy5x {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gOeU8ctf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gOeU8ctf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gOeU8ctf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gOeU8ctf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gOeU8ctf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gOeU8ctf .row > .row {
  display: block;
}
.cid-v7gOeU8ctf .mbr-gallery-item {
  width: 100%;
}
.cid-v7gOeU8ctf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gOeU8ctf .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gOeU8ctf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gOeU8ctf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gOeU8ctf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gOeU8ctf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gOeXPSh4 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gOeXPSh4 .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gOeXPSh4 div.b {
  padding-top: 2rem;
}
.cid-v7gOeXPSh4 H5 {
  color: #f7ed4a;
}
.cid-v7gOCJmN6R {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gOCJmN6R .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gOCJmN6R .section-text {
  padding: 2rem 0;
}
.cid-v7gOCJmN6R .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gOCJmN6R .inner-container {
    width: 100% !important;
  }
}
.cid-v7gOCK24MP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gOCK24MP .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gOCK24MP .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gOCK24MP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gOCK24MP .inner-container {
    width: 100% !important;
  }
}
.cid-v7gOCK7jvz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gOCK7jvz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gOCK7jvz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gOCK7jvz .row {
  justify-content: center;
}
.cid-v7gOCK7jvz .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gOCK7jvz .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gOCK7jvz .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gOCK7jvz .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gOCK7jvz .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gOCK7jvz .mbr-text_1,
.cid-v7gOCK7jvz .mbr-text_2,
.cid-v7gOCK7jvz .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gOCK7jvz .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gOCK7jvz .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gOCK7jvz .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gOCK7jvz .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gOCK7jvz .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gOCK7jvz .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gOCK7jvz .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gOCK7jvz .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gOCK7jvz .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gOCK7jvz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gOCK7jvz .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gOCK7jvz .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gOCK7jvz .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gOCKjRju {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gOCKjRju .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gOCKjRju .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gOCKjRju .row {
  justify-content: center;
}
.cid-v7gOCKjRju .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gOCKjRju .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gOCKjRju .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gOCKjRju .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gOCKjRju .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gOCKjRju .mbr-text_1,
.cid-v7gOCKjRju .mbr-text_2,
.cid-v7gOCKjRju .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gOCKjRju .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gOCKjRju .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gOCKjRju .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gOCKjRju .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gOCKjRju .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gOCKjRju .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gOCKjRju .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gOCKjRju .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gOCKjRju .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gOCKjRju .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gOCKjRju .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gOCKjRju .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gOCKjRju .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gOCKq4M2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gOCKq4M2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gOCKq4M2 .section-text {
  padding: 2rem 0;
}
.cid-v7gOCKq4M2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gOCKq4M2 .inner-container {
    width: 100% !important;
  }
}
.cid-v7kLZuyL6N {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7kLZuyL6N .mbr-section-subtitle {
  color: #767676;
}
.cid-v7kLZuyL6N .container-table {
  margin: 0 auto;
}
.cid-v7kLZuyL6N .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7kLZuyL6N .dataTables_wrapper {
  display: block;
}
.cid-v7kLZuyL6N .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7kLZuyL6N .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7kLZuyL6N table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7kLZuyL6N table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7kLZuyL6N table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7kLZuyL6N table td {
  border-top: 1px solid #232323;
}
.cid-v7kLZuyL6N table.table {
  background: #ecae15;
}
.cid-v7kLZuyL6N .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7kLZuyL6N .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7kLZuyL6N .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7kLZuyL6N .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7kLZuyL6N .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7kLZuyL6N .dataTables_filter {
    text-align: center;
  }
  .cid-v7kLZuyL6N .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7kLZuyL6N .mbr-section-title {
  color: #232323;
}
.cid-v7kLZuyL6N .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7kLZuyL6N .body-item {
  text-align: center;
}
.cid-v7gOCQJ260 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gOCQSa7a {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gOCQSa7a .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gOCQSa7a .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gOCQSa7a .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gOCQSa7a .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gOCQSa7a .row > .row {
  display: block;
}
.cid-v7gOCQSa7a .mbr-gallery-item {
  width: 100%;
}
.cid-v7gOCQSa7a .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gOCQSa7a .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gOCQSa7a .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gOCQSa7a .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gOCQSa7a .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gOCQSa7a .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gOCUa5D8 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gOCUa5D8 .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gOCUa5D8 div.b {
  padding-top: 2rem;
}
.cid-v7gOCUa5D8 H5 {
  color: #f7ed4a;
}
.cid-v7gPShfge0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gPShfge0 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gPShfge0 .section-text {
  padding: 2rem 0;
}
.cid-v7gPShfge0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gPShfge0 .inner-container {
    width: 100% !important;
  }
}
.cid-v7gPShU1C8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gPShU1C8 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gPShU1C8 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gPShU1C8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gPShU1C8 .inner-container {
    width: 100% !important;
  }
}
.cid-v7gPSi08jq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gPSi08jq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gPSi08jq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gPSi08jq .row {
  justify-content: center;
}
.cid-v7gPSi08jq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gPSi08jq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gPSi08jq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gPSi08jq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gPSi08jq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gPSi08jq .mbr-text_1,
.cid-v7gPSi08jq .mbr-text_2,
.cid-v7gPSi08jq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gPSi08jq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gPSi08jq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gPSi08jq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gPSi08jq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gPSi08jq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gPSi08jq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gPSi08jq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gPSi08jq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gPSi08jq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gPSi08jq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gPSi08jq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gPSi08jq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gPSi08jq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gPSifjMn {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gPSifjMn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gPSifjMn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gPSifjMn .row {
  justify-content: center;
}
.cid-v7gPSifjMn .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gPSifjMn .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gPSifjMn .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gPSifjMn .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gPSifjMn .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gPSifjMn .mbr-text_1,
.cid-v7gPSifjMn .mbr-text_2,
.cid-v7gPSifjMn .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gPSifjMn .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gPSifjMn .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gPSifjMn .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gPSifjMn .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gPSifjMn .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gPSifjMn .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gPSifjMn .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gPSifjMn .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gPSifjMn .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gPSifjMn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gPSifjMn .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gPSifjMn .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gPSifjMn .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gPSioCxB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gPSioCxB .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gPSioCxB .section-text {
  padding: 2rem 0;
}
.cid-v7gPSioCxB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gPSioCxB .inner-container {
    width: 100% !important;
  }
}
.cid-v7kON4i6Km {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7kON4i6Km .mbr-section-subtitle {
  color: #767676;
}
.cid-v7kON4i6Km .container-table {
  margin: 0 auto;
}
.cid-v7kON4i6Km .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7kON4i6Km .dataTables_wrapper {
  display: block;
}
.cid-v7kON4i6Km .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7kON4i6Km .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7kON4i6Km table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7kON4i6Km table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7kON4i6Km table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7kON4i6Km table td {
  border-top: 1px solid #232323;
}
.cid-v7kON4i6Km table.table {
  background: #ecae15;
}
.cid-v7kON4i6Km .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7kON4i6Km .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7kON4i6Km .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7kON4i6Km .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7kON4i6Km .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7kON4i6Km .dataTables_filter {
    text-align: center;
  }
  .cid-v7kON4i6Km .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7kON4i6Km .mbr-section-title {
  color: #232323;
}
.cid-v7kON4i6Km .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7kON4i6Km .body-item {
  text-align: center;
}
.cid-v7gPSp8CTh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gPSph5Gp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gPSph5Gp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gPSph5Gp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gPSph5Gp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gPSph5Gp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gPSph5Gp .row > .row {
  display: block;
}
.cid-v7gPSph5Gp .mbr-gallery-item {
  width: 100%;
}
.cid-v7gPSph5Gp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gPSph5Gp .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gPSph5Gp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gPSph5Gp .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gPSph5Gp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gPSph5Gp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gPSseF6c {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gPSseF6c .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gPSseF6c div.b {
  padding-top: 2rem;
}
.cid-v7gPSseF6c H5 {
  color: #f7ed4a;
}
.cid-v7gQgbV8CO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gQgbV8CO .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gQgbV8CO .section-text {
  padding: 2rem 0;
}
.cid-v7gQgbV8CO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gQgbV8CO .inner-container {
    width: 100% !important;
  }
}
.cid-v7gQgcAlZw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gQgcAlZw .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gQgcAlZw .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gQgcAlZw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gQgcAlZw .inner-container {
    width: 100% !important;
  }
}
.cid-v7gQgcJbcc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gQgcJbcc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gQgcJbcc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gQgcJbcc .row {
  justify-content: center;
}
.cid-v7gQgcJbcc .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gQgcJbcc .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gQgcJbcc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gQgcJbcc .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gQgcJbcc .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gQgcJbcc .mbr-text_1,
.cid-v7gQgcJbcc .mbr-text_2,
.cid-v7gQgcJbcc .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gQgcJbcc .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gQgcJbcc .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gQgcJbcc .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gQgcJbcc .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gQgcJbcc .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gQgcJbcc .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gQgcJbcc .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gQgcJbcc .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gQgcJbcc .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gQgcJbcc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gQgcJbcc .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gQgcJbcc .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gQgcJbcc .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gQgcYtwU {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gQgcYtwU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gQgcYtwU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gQgcYtwU .row {
  justify-content: center;
}
.cid-v7gQgcYtwU .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gQgcYtwU .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gQgcYtwU .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gQgcYtwU .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gQgcYtwU .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gQgcYtwU .mbr-text_1,
.cid-v7gQgcYtwU .mbr-text_2,
.cid-v7gQgcYtwU .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gQgcYtwU .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gQgcYtwU .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gQgcYtwU .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gQgcYtwU .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gQgcYtwU .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gQgcYtwU .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gQgcYtwU .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gQgcYtwU .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gQgcYtwU .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gQgcYtwU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gQgcYtwU .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gQgcYtwU .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gQgcYtwU .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gQgd8w7K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gQgd8w7K .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gQgd8w7K .section-text {
  padding: 2rem 0;
}
.cid-v7gQgd8w7K .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gQgd8w7K .inner-container {
    width: 100% !important;
  }
}
.cid-v7kRbvayQH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7kRbvayQH .mbr-section-subtitle {
  color: #767676;
}
.cid-v7kRbvayQH .container-table {
  margin: 0 auto;
}
.cid-v7kRbvayQH .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7kRbvayQH .dataTables_wrapper {
  display: block;
}
.cid-v7kRbvayQH .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7kRbvayQH .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7kRbvayQH table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7kRbvayQH table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7kRbvayQH table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7kRbvayQH table td {
  border-top: 1px solid #232323;
}
.cid-v7kRbvayQH table.table {
  background: #ecae15;
}
.cid-v7kRbvayQH .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7kRbvayQH .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7kRbvayQH .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7kRbvayQH .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7kRbvayQH .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7kRbvayQH .dataTables_filter {
    text-align: center;
  }
  .cid-v7kRbvayQH .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7kRbvayQH .mbr-section-title {
  color: #232323;
}
.cid-v7kRbvayQH .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7kRbvayQH .body-item {
  text-align: center;
}
.cid-v7gQgke3Gq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gQgkozmW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gQgkozmW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gQgkozmW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gQgkozmW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gQgkozmW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gQgkozmW .row > .row {
  display: block;
}
.cid-v7gQgkozmW .mbr-gallery-item {
  width: 100%;
}
.cid-v7gQgkozmW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gQgkozmW .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gQgkozmW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gQgkozmW .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gQgkozmW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gQgkozmW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gQgn0ynT {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gQgn0ynT .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gQgn0ynT div.b {
  padding-top: 2rem;
}
.cid-v7gQgn0ynT H5 {
  color: #f7ed4a;
}
.cid-v7gQF5Iwbs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gQF5Iwbs .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gQF5Iwbs .section-text {
  padding: 2rem 0;
}
.cid-v7gQF5Iwbs .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gQF5Iwbs .inner-container {
    width: 100% !important;
  }
}
.cid-v7gQF6o20q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gQF6o20q .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gQF6o20q .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gQF6o20q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gQF6o20q .inner-container {
    width: 100% !important;
  }
}
.cid-v7gQF6t7MT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gQF6t7MT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gQF6t7MT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gQF6t7MT .row {
  justify-content: center;
}
.cid-v7gQF6t7MT .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gQF6t7MT .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gQF6t7MT .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gQF6t7MT .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gQF6t7MT .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gQF6t7MT .mbr-text_1,
.cid-v7gQF6t7MT .mbr-text_2,
.cid-v7gQF6t7MT .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gQF6t7MT .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gQF6t7MT .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gQF6t7MT .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gQF6t7MT .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gQF6t7MT .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gQF6t7MT .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gQF6t7MT .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gQF6t7MT .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gQF6t7MT .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gQF6t7MT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gQF6t7MT .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gQF6t7MT .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gQF6t7MT .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gQF6F9n8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gQF6F9n8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gQF6F9n8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gQF6F9n8 .row {
  justify-content: center;
}
.cid-v7gQF6F9n8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gQF6F9n8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gQF6F9n8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gQF6F9n8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gQF6F9n8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gQF6F9n8 .mbr-text_1,
.cid-v7gQF6F9n8 .mbr-text_2,
.cid-v7gQF6F9n8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gQF6F9n8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gQF6F9n8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gQF6F9n8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gQF6F9n8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gQF6F9n8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gQF6F9n8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gQF6F9n8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gQF6F9n8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gQF6F9n8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gQF6F9n8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gQF6F9n8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gQF6F9n8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gQF6F9n8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gQF6PKSM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gQF6PKSM .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gQF6PKSM .section-text {
  padding: 2rem 0;
}
.cid-v7gQF6PKSM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gQF6PKSM .inner-container {
    width: 100% !important;
  }
}
.cid-v7kTyExtEC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7kTyExtEC .mbr-section-subtitle {
  color: #767676;
}
.cid-v7kTyExtEC .container-table {
  margin: 0 auto;
}
.cid-v7kTyExtEC .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7kTyExtEC .dataTables_wrapper {
  display: block;
}
.cid-v7kTyExtEC .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7kTyExtEC .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7kTyExtEC table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7kTyExtEC table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7kTyExtEC table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7kTyExtEC table td {
  border-top: 1px solid #232323;
}
.cid-v7kTyExtEC table.table {
  background: #ecae15;
}
.cid-v7kTyExtEC .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7kTyExtEC .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7kTyExtEC .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7kTyExtEC .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7kTyExtEC .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7kTyExtEC .dataTables_filter {
    text-align: center;
  }
  .cid-v7kTyExtEC .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7kTyExtEC .mbr-section-title {
  color: #232323;
}
.cid-v7kTyExtEC .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7kTyExtEC .body-item {
  text-align: center;
}
.cid-v7gQFe58we {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gQFeeviw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gQFeeviw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gQFeeviw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gQFeeviw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gQFeeviw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gQFeeviw .row > .row {
  display: block;
}
.cid-v7gQFeeviw .mbr-gallery-item {
  width: 100%;
}
.cid-v7gQFeeviw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gQFeeviw .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gQFeeviw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gQFeeviw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gQFeeviw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gQFeeviw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gQFgoMFx {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gQFgoMFx .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gQFgoMFx div.b {
  padding-top: 2rem;
}
.cid-v7gQFgoMFx H5 {
  color: #f7ed4a;
}
.cid-v7gR3t0J6t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gR3t0J6t .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gR3t0J6t .section-text {
  padding: 2rem 0;
}
.cid-v7gR3t0J6t .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gR3t0J6t .inner-container {
    width: 100% !important;
  }
}
.cid-v7gR3tHoD2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gR3tHoD2 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gR3tHoD2 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gR3tHoD2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gR3tHoD2 .inner-container {
    width: 100% !important;
  }
}
.cid-v7gR3tMqRI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gR3tMqRI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gR3tMqRI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gR3tMqRI .row {
  justify-content: center;
}
.cid-v7gR3tMqRI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gR3tMqRI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gR3tMqRI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gR3tMqRI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gR3tMqRI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gR3tMqRI .mbr-text_1,
.cid-v7gR3tMqRI .mbr-text_2,
.cid-v7gR3tMqRI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gR3tMqRI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gR3tMqRI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gR3tMqRI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gR3tMqRI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gR3tMqRI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gR3tMqRI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gR3tMqRI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gR3tMqRI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gR3tMqRI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gR3tMqRI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gR3tMqRI .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gR3tMqRI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gR3tMqRI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gR3tY9qX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gR3tY9qX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gR3tY9qX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gR3tY9qX .row {
  justify-content: center;
}
.cid-v7gR3tY9qX .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gR3tY9qX .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gR3tY9qX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gR3tY9qX .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gR3tY9qX .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gR3tY9qX .mbr-text_1,
.cid-v7gR3tY9qX .mbr-text_2,
.cid-v7gR3tY9qX .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gR3tY9qX .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gR3tY9qX .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gR3tY9qX .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gR3tY9qX .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gR3tY9qX .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gR3tY9qX .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gR3tY9qX .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gR3tY9qX .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gR3tY9qX .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gR3tY9qX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gR3tY9qX .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gR3tY9qX .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gR3tY9qX .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gR3u5eol {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gR3u5eol .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gR3u5eol .section-text {
  padding: 2rem 0;
}
.cid-v7gR3u5eol .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gR3u5eol .inner-container {
    width: 100% !important;
  }
}
.cid-v7kVvPSFB8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7kVvPSFB8 .mbr-section-subtitle {
  color: #767676;
}
.cid-v7kVvPSFB8 .container-table {
  margin: 0 auto;
}
.cid-v7kVvPSFB8 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7kVvPSFB8 .dataTables_wrapper {
  display: block;
}
.cid-v7kVvPSFB8 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7kVvPSFB8 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7kVvPSFB8 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7kVvPSFB8 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7kVvPSFB8 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7kVvPSFB8 table td {
  border-top: 1px solid #232323;
}
.cid-v7kVvPSFB8 table.table {
  background: #ecae15;
}
.cid-v7kVvPSFB8 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7kVvPSFB8 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7kVvPSFB8 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7kVvPSFB8 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7kVvPSFB8 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7kVvPSFB8 .dataTables_filter {
    text-align: center;
  }
  .cid-v7kVvPSFB8 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7kVvPSFB8 .mbr-section-title {
  color: #232323;
}
.cid-v7kVvPSFB8 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7kVvPSFB8 .body-item {
  text-align: center;
}
.cid-v7gR3BPb00 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gR3BZneB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gR3BZneB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gR3BZneB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gR3BZneB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gR3BZneB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gR3BZneB .row > .row {
  display: block;
}
.cid-v7gR3BZneB .mbr-gallery-item {
  width: 100%;
}
.cid-v7gR3BZneB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gR3BZneB .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gR3BZneB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gR3BZneB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gR3BZneB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gR3BZneB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gR3DJiS8 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gR3DJiS8 .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gR3DJiS8 div.b {
  padding-top: 2rem;
}
.cid-v7gR3DJiS8 H5 {
  color: #f7ed4a;
}
.cid-v7gRqN4Gzu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gRqN4Gzu .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gRqN4Gzu .section-text {
  padding: 2rem 0;
}
.cid-v7gRqN4Gzu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gRqN4Gzu .inner-container {
    width: 100% !important;
  }
}
.cid-v7gRqNK74x {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gRqNK74x .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gRqNK74x .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gRqNK74x .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gRqNK74x .inner-container {
    width: 100% !important;
  }
}
.cid-v7gRqNRzmR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gRqNRzmR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gRqNRzmR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gRqNRzmR .row {
  justify-content: center;
}
.cid-v7gRqNRzmR .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gRqNRzmR .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gRqNRzmR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gRqNRzmR .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gRqNRzmR .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gRqNRzmR .mbr-text_1,
.cid-v7gRqNRzmR .mbr-text_2,
.cid-v7gRqNRzmR .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gRqNRzmR .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gRqNRzmR .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gRqNRzmR .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gRqNRzmR .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gRqNRzmR .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gRqNRzmR .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gRqNRzmR .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gRqNRzmR .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gRqNRzmR .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gRqNRzmR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gRqNRzmR .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gRqNRzmR .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gRqNRzmR .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gRqO3xo7 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gRqO3xo7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gRqO3xo7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gRqO3xo7 .row {
  justify-content: center;
}
.cid-v7gRqO3xo7 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gRqO3xo7 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gRqO3xo7 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gRqO3xo7 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gRqO3xo7 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gRqO3xo7 .mbr-text_1,
.cid-v7gRqO3xo7 .mbr-text_2,
.cid-v7gRqO3xo7 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gRqO3xo7 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gRqO3xo7 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gRqO3xo7 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gRqO3xo7 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gRqO3xo7 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gRqO3xo7 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gRqO3xo7 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gRqO3xo7 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gRqO3xo7 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gRqO3xo7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gRqO3xo7 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gRqO3xo7 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gRqO3xo7 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gRqO9qQk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gRqO9qQk .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gRqO9qQk .section-text {
  padding: 2rem 0;
}
.cid-v7gRqO9qQk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gRqO9qQk .inner-container {
    width: 100% !important;
  }
}
.cid-v7kXx7nj2B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7kXx7nj2B .mbr-section-subtitle {
  color: #767676;
}
.cid-v7kXx7nj2B .container-table {
  margin: 0 auto;
}
.cid-v7kXx7nj2B .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7kXx7nj2B .dataTables_wrapper {
  display: block;
}
.cid-v7kXx7nj2B .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7kXx7nj2B .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7kXx7nj2B table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7kXx7nj2B table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7kXx7nj2B table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7kXx7nj2B table td {
  border-top: 1px solid #232323;
}
.cid-v7kXx7nj2B table.table {
  background: #ecae15;
}
.cid-v7kXx7nj2B .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7kXx7nj2B .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7kXx7nj2B .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7kXx7nj2B .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7kXx7nj2B .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7kXx7nj2B .dataTables_filter {
    text-align: center;
  }
  .cid-v7kXx7nj2B .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7kXx7nj2B .mbr-section-title {
  color: #232323;
}
.cid-v7kXx7nj2B .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7kXx7nj2B .body-item {
  text-align: center;
}
.cid-v7gRqWdumE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gRqWnxn1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gRqWnxn1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gRqWnxn1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gRqWnxn1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gRqWnxn1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gRqWnxn1 .row > .row {
  display: block;
}
.cid-v7gRqWnxn1 .mbr-gallery-item {
  width: 100%;
}
.cid-v7gRqWnxn1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gRqWnxn1 .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gRqWnxn1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gRqWnxn1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gRqWnxn1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gRqWnxn1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gRqXMCdo {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gRqXMCdo .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gRqXMCdo div.b {
  padding-top: 2rem;
}
.cid-v7gRqXMCdo H5 {
  color: #f7ed4a;
}
.cid-v7gRPVasOi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gRPVasOi .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gRPVasOi .section-text {
  padding: 2rem 0;
}
.cid-v7gRPVasOi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gRPVasOi .inner-container {
    width: 100% !important;
  }
}
.cid-v7gRPVPT5B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gRPVPT5B .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gRPVPT5B .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gRPVPT5B .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gRPVPT5B .inner-container {
    width: 100% !important;
  }
}
.cid-v7gRPVUrtA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gRPVUrtA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gRPVUrtA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gRPVUrtA .row {
  justify-content: center;
}
.cid-v7gRPVUrtA .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gRPVUrtA .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gRPVUrtA .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gRPVUrtA .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gRPVUrtA .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gRPVUrtA .mbr-text_1,
.cid-v7gRPVUrtA .mbr-text_2,
.cid-v7gRPVUrtA .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gRPVUrtA .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gRPVUrtA .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gRPVUrtA .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gRPVUrtA .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gRPVUrtA .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gRPVUrtA .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gRPVUrtA .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gRPVUrtA .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gRPVUrtA .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gRPVUrtA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gRPVUrtA .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gRPVUrtA .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gRPVUrtA .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gRPW6nyJ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gRPW6nyJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gRPW6nyJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gRPW6nyJ .row {
  justify-content: center;
}
.cid-v7gRPW6nyJ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gRPW6nyJ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gRPW6nyJ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gRPW6nyJ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gRPW6nyJ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gRPW6nyJ .mbr-text_1,
.cid-v7gRPW6nyJ .mbr-text_2,
.cid-v7gRPW6nyJ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gRPW6nyJ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gRPW6nyJ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gRPW6nyJ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gRPW6nyJ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gRPW6nyJ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gRPW6nyJ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gRPW6nyJ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gRPW6nyJ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gRPW6nyJ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gRPW6nyJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gRPW6nyJ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gRPW6nyJ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gRPW6nyJ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gRPWcnBW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gRPWcnBW .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gRPWcnBW .section-text {
  padding: 2rem 0;
}
.cid-v7gRPWcnBW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gRPWcnBW .inner-container {
    width: 100% !important;
  }
}
.cid-v7kZwZDMo0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7kZwZDMo0 .mbr-section-subtitle {
  color: #767676;
}
.cid-v7kZwZDMo0 .container-table {
  margin: 0 auto;
}
.cid-v7kZwZDMo0 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7kZwZDMo0 .dataTables_wrapper {
  display: block;
}
.cid-v7kZwZDMo0 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7kZwZDMo0 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7kZwZDMo0 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7kZwZDMo0 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7kZwZDMo0 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7kZwZDMo0 table td {
  border-top: 1px solid #232323;
}
.cid-v7kZwZDMo0 table.table {
  background: #ecae15;
}
.cid-v7kZwZDMo0 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7kZwZDMo0 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7kZwZDMo0 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7kZwZDMo0 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7kZwZDMo0 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7kZwZDMo0 .dataTables_filter {
    text-align: center;
  }
  .cid-v7kZwZDMo0 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7kZwZDMo0 .mbr-section-title {
  color: #232323;
}
.cid-v7kZwZDMo0 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7kZwZDMo0 .body-item {
  text-align: center;
}
.cid-v7gRQ53yGT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gRQ5dPvs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gRQ5dPvs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gRQ5dPvs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gRQ5dPvs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gRQ5dPvs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gRQ5dPvs .row > .row {
  display: block;
}
.cid-v7gRQ5dPvs .mbr-gallery-item {
  width: 100%;
}
.cid-v7gRQ5dPvs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gRQ5dPvs .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gRQ5dPvs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gRQ5dPvs .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gRQ5dPvs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gRQ5dPvs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gRQ6dClA {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gRQ6dClA .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gRQ6dClA div.b {
  padding-top: 2rem;
}
.cid-v7gRQ6dClA H5 {
  color: #f7ed4a;
}
.cid-v7gSdtmXZv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gSdtmXZv .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gSdtmXZv .section-text {
  padding: 2rem 0;
}
.cid-v7gSdtmXZv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gSdtmXZv .inner-container {
    width: 100% !important;
  }
}
.cid-v7gSdu1KRP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gSdu1KRP .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gSdu1KRP .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gSdu1KRP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gSdu1KRP .inner-container {
    width: 100% !important;
  }
}
.cid-v7gSdu7Ou8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gSdu7Ou8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gSdu7Ou8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gSdu7Ou8 .row {
  justify-content: center;
}
.cid-v7gSdu7Ou8 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gSdu7Ou8 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gSdu7Ou8 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gSdu7Ou8 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gSdu7Ou8 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gSdu7Ou8 .mbr-text_1,
.cid-v7gSdu7Ou8 .mbr-text_2,
.cid-v7gSdu7Ou8 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gSdu7Ou8 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gSdu7Ou8 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gSdu7Ou8 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gSdu7Ou8 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gSdu7Ou8 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gSdu7Ou8 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gSdu7Ou8 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gSdu7Ou8 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gSdu7Ou8 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gSdu7Ou8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gSdu7Ou8 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gSdu7Ou8 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gSdu7Ou8 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gSduiw3V {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gSduiw3V .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gSduiw3V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gSduiw3V .row {
  justify-content: center;
}
.cid-v7gSduiw3V .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gSduiw3V .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gSduiw3V .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gSduiw3V .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gSduiw3V .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gSduiw3V .mbr-text_1,
.cid-v7gSduiw3V .mbr-text_2,
.cid-v7gSduiw3V .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gSduiw3V .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gSduiw3V .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gSduiw3V .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gSduiw3V .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gSduiw3V .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gSduiw3V .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gSduiw3V .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gSduiw3V .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gSduiw3V .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gSduiw3V .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gSduiw3V .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gSduiw3V .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gSduiw3V .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gSdupFvQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gSdupFvQ .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gSdupFvQ .section-text {
  padding: 2rem 0;
}
.cid-v7gSdupFvQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gSdupFvQ .inner-container {
    width: 100% !important;
  }
}
.cid-v7l1KoI371 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7l1KoI371 .mbr-section-subtitle {
  color: #767676;
}
.cid-v7l1KoI371 .container-table {
  margin: 0 auto;
}
.cid-v7l1KoI371 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7l1KoI371 .dataTables_wrapper {
  display: block;
}
.cid-v7l1KoI371 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7l1KoI371 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7l1KoI371 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7l1KoI371 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7l1KoI371 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7l1KoI371 table td {
  border-top: 1px solid #232323;
}
.cid-v7l1KoI371 table.table {
  background: #ecae15;
}
.cid-v7l1KoI371 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7l1KoI371 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7l1KoI371 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7l1KoI371 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7l1KoI371 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7l1KoI371 .dataTables_filter {
    text-align: center;
  }
  .cid-v7l1KoI371 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7l1KoI371 .mbr-section-title {
  color: #232323;
}
.cid-v7l1KoI371 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7l1KoI371 .body-item {
  text-align: center;
}
.cid-v7gSdDmysK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gSdDzmyb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gSdDzmyb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gSdDzmyb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gSdDzmyb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gSdDzmyb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gSdDzmyb .row > .row {
  display: block;
}
.cid-v7gSdDzmyb .mbr-gallery-item {
  width: 100%;
}
.cid-v7gSdDzmyb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gSdDzmyb .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gSdDzmyb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gSdDzmyb .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gSdDzmyb .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gSdDzmyb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gSdEdTen {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gSdEdTen .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gSdEdTen div.b {
  padding-top: 2rem;
}
.cid-v7gSdEdTen H5 {
  color: #f7ed4a;
}
.cid-v7gWzkQpeX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gWzkQpeX .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gWzkQpeX .section-text {
  padding: 2rem 0;
}
.cid-v7gWzkQpeX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gWzkQpeX .inner-container {
    width: 100% !important;
  }
}
.cid-v7gWzlw8M4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gWzlw8M4 .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gWzlw8M4 .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7gWzlw8M4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gWzlw8M4 .inner-container {
    width: 100% !important;
  }
}
.cid-v7gWzlCh56 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #516be7;
}
.cid-v7gWzlCh56 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gWzlCh56 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gWzlCh56 .row {
  justify-content: center;
}
.cid-v7gWzlCh56 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gWzlCh56 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gWzlCh56 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gWzlCh56 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gWzlCh56 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gWzlCh56 .mbr-text_1,
.cid-v7gWzlCh56 .mbr-text_2,
.cid-v7gWzlCh56 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gWzlCh56 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gWzlCh56 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #eafa72;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gWzlCh56 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gWzlCh56 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gWzlCh56 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gWzlCh56 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #eafa72;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gWzlCh56 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #eafa72;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gWzlCh56 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gWzlCh56 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #db4af7;
}
.cid-v7gWzlCh56 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gWzlCh56 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gWzlCh56 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gWzlCh56 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gWzlP6zQ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #516be7;
}
.cid-v7gWzlP6zQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7gWzlP6zQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7gWzlP6zQ .row {
  justify-content: center;
}
.cid-v7gWzlP6zQ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7gWzlP6zQ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7gWzlP6zQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7gWzlP6zQ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7gWzlP6zQ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7gWzlP6zQ .mbr-text_1,
.cid-v7gWzlP6zQ .mbr-text_2,
.cid-v7gWzlP6zQ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7gWzlP6zQ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gWzlP6zQ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7gWzlP6zQ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gWzlP6zQ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gWzlP6zQ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gWzlP6zQ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7gWzlP6zQ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7gWzlP6zQ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7gWzlP6zQ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v7gWzlP6zQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7gWzlP6zQ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7gWzlP6zQ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7gWzlP6zQ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7gWzm0wDO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gWzm0wDO .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7gWzm0wDO .section-text {
  padding: 2rem 0;
}
.cid-v7gWzm0wDO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7gWzm0wDO .inner-container {
    width: 100% !important;
  }
}
.cid-v7l41CSCJ0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7l41CSCJ0 .mbr-section-subtitle {
  color: #767676;
}
.cid-v7l41CSCJ0 .container-table {
  margin: 0 auto;
}
.cid-v7l41CSCJ0 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v7l41CSCJ0 .dataTables_wrapper {
  display: block;
}
.cid-v7l41CSCJ0 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v7l41CSCJ0 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v7l41CSCJ0 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v7l41CSCJ0 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v7l41CSCJ0 table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v7l41CSCJ0 table td {
  border-top: 1px solid #232323;
}
.cid-v7l41CSCJ0 table.table {
  background: #ecae15;
}
.cid-v7l41CSCJ0 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v7l41CSCJ0 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v7l41CSCJ0 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v7l41CSCJ0 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v7l41CSCJ0 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v7l41CSCJ0 .dataTables_filter {
    text-align: center;
  }
  .cid-v7l41CSCJ0 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v7l41CSCJ0 .mbr-section-title {
  color: #232323;
}
.cid-v7l41CSCJ0 .head-item {
  text-align: center;
  color: #3e69ea;
}
.cid-v7l41CSCJ0 .body-item {
  text-align: center;
}
.cid-v7gWzvGOBr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #516be7;
}
.cid-v7gWzvTbLR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #516be7;
}
.cid-v7gWzvTbLR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7gWzvTbLR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7gWzvTbLR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7gWzvTbLR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7gWzvTbLR .row > .row {
  display: block;
}
.cid-v7gWzvTbLR .mbr-gallery-item {
  width: 100%;
}
.cid-v7gWzvTbLR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7gWzvTbLR .mbr-gallery-item > div {
  position: relative;
}
.cid-v7gWzvTbLR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7gWzvTbLR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v7gWzvTbLR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v7gWzvTbLR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7gWzw6YBj {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #516be7;
}
.cid-v7gWzw6YBj .mbr-text {
  color: #f7ed4a;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7gWzw6YBj div.b {
  padding-top: 2rem;
}
.cid-v7gWzw6YBj H5 {
  color: #f7ed4a;
}
.cid-v7rRGDqy5R {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v7rRGDqy5R .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7rRGDqy5R .section-text {
  padding: 2rem 0;
}
.cid-v7rRGDqy5R .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7rRGDqy5R .inner-container {
    width: 100% !important;
  }
}
.cid-v7rRGDQqff {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v7rRGDQqff .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rRGDQqff .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rRGDQqff .row {
  justify-content: center;
}
.cid-v7rRGDQqff .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rRGDQqff .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rRGDQqff .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rRGDQqff .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rRGDQqff .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rRGDQqff .mbr-text_1,
.cid-v7rRGDQqff .mbr-text_2,
.cid-v7rRGDQqff .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rRGDQqff .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rRGDQqff .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rRGDQqff .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rRGDQqff .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rRGDQqff .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rRGDQqff .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rRGDQqff .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rRGDQqff .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rRGDQqff .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v7rRGDQqff .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rRGDQqff .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rRGDQqff .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rRGDQqff .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rRGE4RWO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v7rRGE4RWO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7rRGE4RWO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7rRGE4RWO .row {
  justify-content: center;
}
.cid-v7rRGE4RWO .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v7rRGE4RWO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v7rRGE4RWO .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7rRGE4RWO .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v7rRGE4RWO .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v7rRGE4RWO .mbr-text_1,
.cid-v7rRGE4RWO .mbr-text_2,
.cid-v7rRGE4RWO .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v7rRGE4RWO .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rRGE4RWO .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v7rRGE4RWO .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rRGE4RWO .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rRGE4RWO .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rRGE4RWO .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v7rRGE4RWO .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v7rRGE4RWO .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v7rRGE4RWO .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v7rRGE4RWO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v7rRGE4RWO .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v7rRGE4RWO .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v7rRGE4RWO .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v7rRGEc6N0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v7rRGEc6N0 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7rRGEc6N0 .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-v7rRGEc6N0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7rRGEc6N0 .inner-container {
    width: 100% !important;
  }
}
.cid-v7rRGEhkTj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v7rRGEhkTj .line {
  background-color: #64df87;
  color: #64df87;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7rRGEhkTj .section-text {
  padding: 2rem 0;
  color: #232323;
}
.cid-v7rRGEhkTj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7rRGEhkTj .inner-container {
    width: 100% !important;
  }
}
.cid-v7rRGEkBEO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v7rRGEkBEO .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v7rRGEkBEO .section-text {
  padding: 2rem 0;
}
.cid-v7rRGEkBEO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v7rRGEkBEO .inner-container {
    width: 100% !important;
  }
}
.cid-v7rRGEkBEO .section-text DIV {
  text-align: center;
}
.cid-v7rRGEn6N7 {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-v7rRGEn6N7 .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v7rRGEn6N7 div.b {
  padding-top: 2rem;
}
.cid-v7rRGEn6N7 H5 {
  color: #232323;
}
.cid-v8ayon9Fwr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8ayon9Fwr .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v8ayon9Fwr .section-text {
  padding: 2rem 0;
}
.cid-v8ayon9Fwr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v8ayon9Fwr .inner-container {
    width: 100% !important;
  }
}
.cid-v8ayonAIQ1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v8ayonAIQ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8ayonAIQ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8ayonAIQ1 .row {
  justify-content: center;
}
.cid-v8ayonAIQ1 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v8ayonAIQ1 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v8ayonAIQ1 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v8ayonAIQ1 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v8ayonAIQ1 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v8ayonAIQ1 .mbr-text_1,
.cid-v8ayonAIQ1 .mbr-text_2,
.cid-v8ayonAIQ1 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v8ayonAIQ1 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v8ayonAIQ1 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v8ayonAIQ1 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v8ayonAIQ1 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v8ayonAIQ1 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v8ayonAIQ1 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v8ayonAIQ1 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v8ayonAIQ1 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v8ayonAIQ1 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v8ayonAIQ1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v8ayonAIQ1 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v8ayonAIQ1 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v8ayonAIQ1 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v8ayonPjDV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v8ayonPjDV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8ayonPjDV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8ayonPjDV .row {
  justify-content: center;
}
.cid-v8ayonPjDV .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v8ayonPjDV .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v8ayonPjDV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v8ayonPjDV .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v8ayonPjDV .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v8ayonPjDV .mbr-text_1,
.cid-v8ayonPjDV .mbr-text_2,
.cid-v8ayonPjDV .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v8ayonPjDV .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v8ayonPjDV .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v8ayonPjDV .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v8ayonPjDV .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v8ayonPjDV .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v8ayonPjDV .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v8ayonPjDV .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v8ayonPjDV .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v8ayonPjDV .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v8ayonPjDV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v8ayonPjDV .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v8ayonPjDV .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v8ayonPjDV .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v8ayonYvem {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8ayonYvem .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v8ayonYvem .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-v8ayonYvem .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v8ayonYvem .inner-container {
    width: 100% !important;
  }
}
.cid-v8ayoo5kJV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8ayoo5kJV .mbr-section-subtitle {
  color: #767676;
}
.cid-v8ayoo5kJV .container-table {
  margin: 0 auto;
}
.cid-v8ayoo5kJV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8ayoo5kJV .dataTables_wrapper {
  display: block;
}
.cid-v8ayoo5kJV .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8ayoo5kJV .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8ayoo5kJV table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8ayoo5kJV table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8ayoo5kJV table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8ayoo5kJV table td {
  border-top: 1px solid #232323;
}
.cid-v8ayoo5kJV .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8ayoo5kJV .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8ayoo5kJV .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8ayoo5kJV .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8ayoo5kJV .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8ayoo5kJV .dataTables_filter {
    text-align: center;
  }
  .cid-v8ayoo5kJV .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8ayoo5kJV .mbr-section-title {
  color: #232323;
}
.cid-v8ayoo5kJV .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8ayoo5kJV .body-item {
  text-align: center;
}
.cid-v8ayoopppJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8ayoopppJ .mbr-section-subtitle {
  color: #767676;
}
.cid-v8ayoopppJ .container-table {
  margin: 0 auto;
}
.cid-v8ayoopppJ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v8ayoopppJ .dataTables_wrapper {
  display: block;
}
.cid-v8ayoopppJ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v8ayoopppJ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v8ayoopppJ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v8ayoopppJ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v8ayoopppJ table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v8ayoopppJ table td {
  border-top: 1px solid #232323;
}
.cid-v8ayoopppJ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v8ayoopppJ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v8ayoopppJ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v8ayoopppJ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v8ayoopppJ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v8ayoopppJ .dataTables_filter {
    text-align: center;
  }
  .cid-v8ayoopppJ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v8ayoopppJ .mbr-section-title {
  color: #232323;
}
.cid-v8ayoopppJ .head-item {
  text-align: center;
  color: #232323;
}
.cid-v8ayoopppJ .body-item {
  text-align: center;
}
.cid-v8ayooCerP {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-v8ayooCerP .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v8ayooCerP div.b {
  padding-top: 2rem;
}
.cid-v8ayooCerP H5 {
  color: #232323;
}
.cid-v8azJ2tos8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8azJ2tos8 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v8azJ2tos8 .section-text {
  padding: 2rem 0;
}
.cid-v8azJ2tos8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v8azJ2tos8 .inner-container {
    width: 100% !important;
  }
}
.cid-v8azJ2S3se {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v8azJ2S3se .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8azJ2S3se .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8azJ2S3se .row {
  justify-content: center;
}
.cid-v8azJ2S3se .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v8azJ2S3se .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v8azJ2S3se .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v8azJ2S3se .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v8azJ2S3se .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v8azJ2S3se .mbr-text_1,
.cid-v8azJ2S3se .mbr-text_2,
.cid-v8azJ2S3se .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v8azJ2S3se .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v8azJ2S3se .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v8azJ2S3se .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v8azJ2S3se .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v8azJ2S3se .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v8azJ2S3se .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v8azJ2S3se .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v8azJ2S3se .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v8azJ2S3se .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v8azJ2S3se .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v8azJ2S3se .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v8azJ2S3se .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v8azJ2S3se .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v8azJ34Nsl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v8azJ34Nsl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8azJ34Nsl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8azJ34Nsl .row {
  justify-content: center;
}
.cid-v8azJ34Nsl .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v8azJ34Nsl .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v8azJ34Nsl .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v8azJ34Nsl .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v8azJ34Nsl .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v8azJ34Nsl .mbr-text_1,
.cid-v8azJ34Nsl .mbr-text_2,
.cid-v8azJ34Nsl .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v8azJ34Nsl .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v8azJ34Nsl .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v8azJ34Nsl .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v8azJ34Nsl .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v8azJ34Nsl .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v8azJ34Nsl .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v8azJ34Nsl .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v8azJ34Nsl .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v8azJ34Nsl .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-v8azJ34Nsl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v8azJ34Nsl .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v8azJ34Nsl .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v8azJ34Nsl .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v8azJ3cQMl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8azJ3cQMl .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v8azJ3cQMl .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-v8azJ3cQMl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v8azJ3cQMl .inner-container {
    width: 100% !important;
  }
}
.cid-v8azJ3hhsb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-v8azJ3k04L {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8azJ3k04L .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v8azJ3k04L .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-v8azJ3k04L .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v8azJ3k04L .inner-container {
    width: 100% !important;
  }
}
.cid-v8aADikxAV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aADikxAV .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v8aADikxAV .section-text {
  padding: 2rem 0;
}
.cid-v8aADikxAV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v8aADikxAV .inner-container {
    width: 100% !important;
  }
}
.cid-v8aAF0tcR1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v8aAF0tcR1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v8aAF0tcR1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v8aAF0tcR1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v8aAF0tcR1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v8aAF0tcR1 .row > .row {
  display: block;
}
.cid-v8aAF0tcR1 .mbr-gallery-item {
  width: 100%;
}
.cid-v8aAF0tcR1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v8aAF0tcR1 .mbr-gallery-item > div {
  position: relative;
}
.cid-v8aAF0tcR1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v8aAF0tcR1 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v8aAF0tcR1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v8aAF0tcR1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v8azJ3LeKe {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-v8azJ3LeKe .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v8azJ3LeKe div.b {
  padding-top: 2rem;
}
.cid-v8azJ3LeKe H5 {
  color: #232323;
}
.cid-v93tGpaqx1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v93tGpaqx1 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v93tGpaqx1 .section-text {
  padding: 2rem 0;
}
.cid-v93tGpaqx1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v93tGpaqx1 .inner-container {
    width: 100% !important;
  }
}
.cid-v93tGpx89n {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-v93tGpx89n .mbr-fallback-image.disabled {
  display: none;
}
.cid-v93tGpx89n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v93tGpx89n .row {
  justify-content: center;
}
.cid-v93tGpx89n .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v93tGpx89n .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v93tGpx89n .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v93tGpx89n .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v93tGpx89n .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v93tGpx89n .mbr-text_1,
.cid-v93tGpx89n .mbr-text_2,
.cid-v93tGpx89n .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v93tGpx89n .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v93tGpx89n .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v93tGpx89n .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v93tGpx89n .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v93tGpx89n .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v93tGpx89n .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v93tGpx89n .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v93tGpx89n .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v93tGpx89n .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v93tGpx89n .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v93tGpx89n .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v93tGpx89n .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v93tGpx89n .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v93tGpJY4Y {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-v93tGpJY4Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v93tGpJY4Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v93tGpJY4Y .row {
  justify-content: center;
}
.cid-v93tGpJY4Y .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v93tGpJY4Y .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v93tGpJY4Y .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v93tGpJY4Y .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v93tGpJY4Y .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v93tGpJY4Y .mbr-text_1,
.cid-v93tGpJY4Y .mbr-text_2,
.cid-v93tGpJY4Y .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v93tGpJY4Y .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v93tGpJY4Y .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v93tGpJY4Y .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v93tGpJY4Y .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v93tGpJY4Y .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v93tGpJY4Y .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v93tGpJY4Y .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v93tGpJY4Y .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v93tGpJY4Y .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v93tGpJY4Y .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v93tGpJY4Y .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v93tGpJY4Y .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v93tGpJY4Y .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v93tGpR34v {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v93tGpR34v .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v93tGpR34v .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-v93tGpR34v .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v93tGpR34v .inner-container {
    width: 100% !important;
  }
}
.cid-v93tGpXMpb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-v93tYNp5h4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v93tYNp5h4 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v93tYNp5h4 .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-v93tYNp5h4 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v93tYNp5h4 .inner-container {
    width: 100% !important;
  }
}
.cid-v93tZL2mrn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v93tZL2mrn .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v93tZL2mrn .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-v93tZL2mrn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v93tZL2mrn .inner-container {
    width: 100% !important;
  }
}
.cid-v93u0UViSm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v93u0UViSm .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v93u0UViSm .section-text {
  padding: 2rem 0;
}
.cid-v93u0UViSm .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v93u0UViSm .inner-container {
    width: 100% !important;
  }
}
.cid-v93u2aY3nm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-v93u2aY3nm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v93u2aY3nm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v93u2aY3nm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v93u2aY3nm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v93u2aY3nm .row > .row {
  display: block;
}
.cid-v93u2aY3nm .mbr-gallery-item {
  width: 100%;
}
.cid-v93u2aY3nm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v93u2aY3nm .mbr-gallery-item > div {
  position: relative;
}
.cid-v93u2aY3nm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v93u2aY3nm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v93u2aY3nm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v93u2aY3nm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v93tGqjH3e {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-v93tGqjH3e .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v93tGqjH3e div.b {
  padding-top: 2rem;
}
.cid-v93tGqjH3e H5 {
  color: #232323;
}
.cid-v9OFruIpHo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OFruIpHo .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9OFruIpHo .section-text {
  padding: 2rem 0;
}
.cid-v9OFruIpHo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9OFruIpHo .inner-container {
    width: 100% !important;
  }
}
.cid-v9OFrv51u1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9OFrv51u1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9OFrv51u1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9OFrv51u1 .row {
  justify-content: center;
}
.cid-v9OFrv51u1 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9OFrv51u1 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9OFrv51u1 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9OFrv51u1 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9OFrv51u1 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9OFrv51u1 .mbr-text_1,
.cid-v9OFrv51u1 .mbr-text_2,
.cid-v9OFrv51u1 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9OFrv51u1 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OFrv51u1 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9OFrv51u1 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9OFrv51u1 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9OFrv51u1 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OFrv51u1 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9OFrv51u1 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9OFrv51u1 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OFrv51u1 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9OFrv51u1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9OFrv51u1 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9OFrv51u1 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9OFrv51u1 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9OFrvhX45 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9OFrvhX45 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9OFrvhX45 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9OFrvhX45 .row {
  justify-content: center;
}
.cid-v9OFrvhX45 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9OFrvhX45 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9OFrvhX45 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9OFrvhX45 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9OFrvhX45 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9OFrvhX45 .mbr-text_1,
.cid-v9OFrvhX45 .mbr-text_2,
.cid-v9OFrvhX45 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9OFrvhX45 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OFrvhX45 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9OFrvhX45 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v9OFrvhX45 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v9OFrvhX45 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OFrvhX45 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9OFrvhX45 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9OFrvhX45 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OFrvhX45 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v9OFrvhX45 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9OFrvhX45 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9OFrvhX45 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9OFrvhX45 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9XfjzvInp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9XfjzvInp .mbr-section-subtitle {
  color: #767676;
}
.cid-v9XfjzvInp .container-table {
  margin: 0 auto;
}
.cid-v9XfjzvInp .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9XfjzvInp .dataTables_wrapper {
  display: block;
}
.cid-v9XfjzvInp .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9XfjzvInp .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9XfjzvInp table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9XfjzvInp table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9XfjzvInp table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9XfjzvInp table td {
  border-top: 1px solid #232323;
}
.cid-v9XfjzvInp table.table {
  background: #3eddea;
}
.cid-v9XfjzvInp .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9XfjzvInp .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9XfjzvInp .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9XfjzvInp .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9XfjzvInp .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9XfjzvInp .dataTables_filter {
    text-align: center;
  }
  .cid-v9XfjzvInp .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9XfjzvInp .mbr-section-title {
  color: #ff3366;
}
.cid-v9XfjzvInp .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9XfjzvInp .body-item {
  text-align: center;
}
.cid-v9OFrvriys {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OFrvriys .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9OFrvriys .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-v9OFrvriys .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9OFrvriys .inner-container {
    width: 100% !important;
  }
}
.cid-v9OFrvxnHd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v9OFrvCOHF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OFrvCOHF .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9OFrvCOHF .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-v9OFrvCOHF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9OFrvCOHF .inner-container {
    width: 100% !important;
  }
}
.cid-v9OFrvIELY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OFrvIELY .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9OFrvIELY .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-v9OFrvIELY .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9OFrvIELY .inner-container {
    width: 100% !important;
  }
}
.cid-v9OFrvOOtT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OFrvOOtT .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9OFrvOOtT .section-text {
  padding: 2rem 0;
}
.cid-v9OFrvOOtT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9OFrvOOtT .inner-container {
    width: 100% !important;
  }
}
.cid-v9OFrvVx5k {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OFrvVx5k .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v9OFrvVx5k .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v9OFrvVx5k .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v9OFrvVx5k .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v9OFrvVx5k .row > .row {
  display: block;
}
.cid-v9OFrvVx5k .mbr-gallery-item {
  width: 100%;
}
.cid-v9OFrvVx5k .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v9OFrvVx5k .mbr-gallery-item > div {
  position: relative;
}
.cid-v9OFrvVx5k .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v9OFrvVx5k .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v9OFrvVx5k .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v9OFrvVx5k .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v9OFrwzrOy {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-v9OFrwzrOy .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v9OFrwzrOy div.b {
  padding-top: 2rem;
}
.cid-v9OFrwzrOy H5 {
  color: #232323;
}
.cid-v9OH63riRt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OH63riRt .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9OH63riRt .section-text {
  padding: 2rem 0;
}
.cid-v9OH63riRt .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9OH63riRt .inner-container {
    width: 100% !important;
  }
}
.cid-v9OH63QDW7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9OH63QDW7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9OH63QDW7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9OH63QDW7 .row {
  justify-content: center;
}
.cid-v9OH63QDW7 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9OH63QDW7 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9OH63QDW7 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9OH63QDW7 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9OH63QDW7 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9OH63QDW7 .mbr-text_1,
.cid-v9OH63QDW7 .mbr-text_2,
.cid-v9OH63QDW7 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9OH63QDW7 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OH63QDW7 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9OH63QDW7 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9OH63QDW7 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9OH63QDW7 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OH63QDW7 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9OH63QDW7 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9OH63QDW7 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OH63QDW7 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9OH63QDW7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9OH63QDW7 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9OH63QDW7 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9OH63QDW7 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9OH6431bq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9OH6431bq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9OH6431bq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9OH6431bq .row {
  justify-content: center;
}
.cid-v9OH6431bq .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9OH6431bq .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9OH6431bq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9OH6431bq .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9OH6431bq .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9OH6431bq .mbr-text_1,
.cid-v9OH6431bq .mbr-text_2,
.cid-v9OH6431bq .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9OH6431bq .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OH6431bq .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9OH6431bq .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v9OH6431bq .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v9OH6431bq .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OH6431bq .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9OH6431bq .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9OH6431bq .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OH6431bq .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v9OH6431bq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9OH6431bq .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9OH6431bq .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9OH6431bq .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9XELsmmBm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9XELsmmBm .mbr-section-subtitle {
  color: #767676;
}
.cid-v9XELsmmBm .container-table {
  margin: 0 auto;
}
.cid-v9XELsmmBm .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9XELsmmBm .dataTables_wrapper {
  display: block;
}
.cid-v9XELsmmBm .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9XELsmmBm .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9XELsmmBm table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9XELsmmBm table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9XELsmmBm table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9XELsmmBm table td {
  border-top: 1px solid #232323;
}
.cid-v9XELsmmBm table.table {
  background: #3eddea;
}
.cid-v9XELsmmBm .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9XELsmmBm .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9XELsmmBm .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9XELsmmBm .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9XELsmmBm .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9XELsmmBm .dataTables_filter {
    text-align: center;
  }
  .cid-v9XELsmmBm .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9XELsmmBm .mbr-section-title {
  color: #ff3366;
}
.cid-v9XELsmmBm .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9XELsmmBm .body-item {
  text-align: center;
}
.cid-v9OH649GvM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OH649GvM .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9OH649GvM .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-v9OH649GvM .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9OH649GvM .inner-container {
    width: 100% !important;
  }
}
.cid-v9OH64cWlH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v9OH64iRwC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OH64iRwC .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9OH64iRwC .section-text {
  padding: 2rem 0;
}
.cid-v9OH64iRwC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9OH64iRwC .inner-container {
    width: 100% !important;
  }
}
.cid-v9OH64nahm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OH64nahm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v9OH64nahm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v9OH64nahm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v9OH64nahm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v9OH64nahm .row > .row {
  display: block;
}
.cid-v9OH64nahm .mbr-gallery-item {
  width: 100%;
}
.cid-v9OH64nahm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v9OH64nahm .mbr-gallery-item > div {
  position: relative;
}
.cid-v9OH64nahm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v9OH64nahm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v9OH64nahm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v9OH64nahm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v9OH64Nwxa {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-v9OH64Nwxa .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v9OH64Nwxa div.b {
  padding-top: 2rem;
}
.cid-v9OH64Nwxa H5 {
  color: #232323;
}
.cid-v9OInum7oe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OInum7oe .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9OInum7oe .section-text {
  padding: 2rem 0;
}
.cid-v9OInum7oe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9OInum7oe .inner-container {
    width: 100% !important;
  }
}
.cid-v9OInuKDlZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9OInuKDlZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9OInuKDlZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9OInuKDlZ .row {
  justify-content: center;
}
.cid-v9OInuKDlZ .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9OInuKDlZ .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9OInuKDlZ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9OInuKDlZ .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9OInuKDlZ .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9OInuKDlZ .mbr-text_1,
.cid-v9OInuKDlZ .mbr-text_2,
.cid-v9OInuKDlZ .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9OInuKDlZ .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OInuKDlZ .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9OInuKDlZ .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9OInuKDlZ .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9OInuKDlZ .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OInuKDlZ .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9OInuKDlZ .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9OInuKDlZ .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OInuKDlZ .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9OInuKDlZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9OInuKDlZ .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9OInuKDlZ .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9OInuKDlZ .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9OInuVjx7 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9OInuVjx7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9OInuVjx7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9OInuVjx7 .row {
  justify-content: center;
}
.cid-v9OInuVjx7 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9OInuVjx7 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9OInuVjx7 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9OInuVjx7 .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9OInuVjx7 .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9OInuVjx7 .mbr-text_1,
.cid-v9OInuVjx7 .mbr-text_2,
.cid-v9OInuVjx7 .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9OInuVjx7 .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OInuVjx7 .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9OInuVjx7 .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v9OInuVjx7 .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v9OInuVjx7 .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OInuVjx7 .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9OInuVjx7 .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9OInuVjx7 .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OInuVjx7 .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v9OInuVjx7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9OInuVjx7 .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9OInuVjx7 .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9OInuVjx7 .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9XfcJCalB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9XfcJCalB .mbr-section-subtitle {
  color: #767676;
}
.cid-v9XfcJCalB .container-table {
  margin: 0 auto;
}
.cid-v9XfcJCalB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9XfcJCalB .dataTables_wrapper {
  display: block;
}
.cid-v9XfcJCalB .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9XfcJCalB .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9XfcJCalB table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9XfcJCalB table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9XfcJCalB table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9XfcJCalB table td {
  border-top: 1px solid #232323;
}
.cid-v9XfcJCalB table.table {
  background: #3eddea;
}
.cid-v9XfcJCalB .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9XfcJCalB .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9XfcJCalB .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9XfcJCalB .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9XfcJCalB .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9XfcJCalB .dataTables_filter {
    text-align: center;
  }
  .cid-v9XfcJCalB .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9XfcJCalB .mbr-section-title {
  color: #ff3366;
}
.cid-v9XfcJCalB .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9XfcJCalB .body-item {
  text-align: center;
}
.cid-v9OInv3tSN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OInv3tSN .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9OInv3tSN .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-v9OInv3tSN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9OInv3tSN .inner-container {
    width: 100% !important;
  }
}
.cid-v9OInv6xNn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v9OInv9jQe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OInv9jQe .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9OInv9jQe .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-v9OInv9jQe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9OInv9jQe .inner-container {
    width: 100% !important;
  }
}
.cid-v9OInvcpHr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OInvcpHr .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v9OInvcpHr .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v9OInvcpHr .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v9OInvcpHr .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v9OInvcpHr .row > .row {
  display: block;
}
.cid-v9OInvcpHr .mbr-gallery-item {
  width: 100%;
}
.cid-v9OInvcpHr .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v9OInvcpHr .mbr-gallery-item > div {
  position: relative;
}
.cid-v9OInvcpHr .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v9OInvcpHr .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v9OInvcpHr .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v9OInvcpHr .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v9OInvy0fD {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-v9OInvy0fD .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v9OInvy0fD div.b {
  padding-top: 2rem;
}
.cid-v9OInvy0fD H5 {
  color: #232323;
}
.cid-v9ORepZMex {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9ORepZMex .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9ORepZMex .section-text {
  padding: 2rem 0;
}
.cid-v9ORepZMex .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9ORepZMex .inner-container {
    width: 100% !important;
  }
}
.cid-v9OReqwyPx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #3eddea;
}
.cid-v9OReqwyPx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9OReqwyPx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9OReqwyPx .row {
  justify-content: center;
}
.cid-v9OReqwyPx .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9OReqwyPx .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9OReqwyPx .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9OReqwyPx .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9OReqwyPx .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9OReqwyPx .mbr-text_1,
.cid-v9OReqwyPx .mbr-text_2,
.cid-v9OReqwyPx .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9OReqwyPx .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OReqwyPx .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #ecae15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9OReqwyPx .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9OReqwyPx .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9OReqwyPx .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OReqwyPx .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #ecae15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9OReqwyPx .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #ecae15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9OReqwyPx .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OReqwyPx .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-v9OReqwyPx .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9OReqwyPx .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9OReqwyPx .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9OReqwyPx .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9OReqMVNC {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3eddea;
}
.cid-v9OReqMVNC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9OReqMVNC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9OReqMVNC .row {
  justify-content: center;
}
.cid-v9OReqMVNC .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-v9OReqMVNC .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-v9OReqMVNC .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v9OReqMVNC .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-v9OReqMVNC .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-v9OReqMVNC .mbr-text_1,
.cid-v9OReqMVNC .mbr-text_2,
.cid-v9OReqMVNC .mbr-text_3 {
  margin-bottom: 0;
}
.cid-v9OReqMVNC .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OReqMVNC .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-v9OReqMVNC .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v9OReqMVNC .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v9OReqMVNC .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OReqMVNC .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-v9OReqMVNC .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-v9OReqMVNC .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-v9OReqMVNC .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #ecae15;
}
.cid-v9OReqMVNC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9OReqMVNC .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-v9OReqMVNC .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-v9OReqMVNC .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-v9Xf6FmNEv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9Xf6FmNEv .mbr-section-subtitle {
  color: #767676;
}
.cid-v9Xf6FmNEv .container-table {
  margin: 0 auto;
}
.cid-v9Xf6FmNEv .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9Xf6FmNEv .dataTables_wrapper {
  display: block;
}
.cid-v9Xf6FmNEv .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9Xf6FmNEv .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9Xf6FmNEv table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #232323;
  margin-bottom: 0;
}
.cid-v9Xf6FmNEv table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9Xf6FmNEv table th:hover {
  background: #232323;
  color: #ffffff;
}
.cid-v9Xf6FmNEv table td {
  border-top: 1px solid #232323;
}
.cid-v9Xf6FmNEv table.table {
  background: #3eddea;
}
.cid-v9Xf6FmNEv .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9Xf6FmNEv .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9Xf6FmNEv .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9Xf6FmNEv .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9Xf6FmNEv .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9Xf6FmNEv .dataTables_filter {
    text-align: center;
  }
  .cid-v9Xf6FmNEv .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9Xf6FmNEv .mbr-section-title {
  color: #ff3366;
}
.cid-v9Xf6FmNEv .head-item {
  text-align: center;
  color: #232323;
}
.cid-v9Xf6FmNEv .body-item {
  text-align: center;
}
.cid-v9OReqWLzF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OReqWLzF .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9OReqWLzF .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-v9OReqWLzF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9OReqWLzF .inner-container {
    width: 100% !important;
  }
}
.cid-v9ORer0uO2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3eddea;
}
.cid-v9ORer3okn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9ORer3okn .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9ORer3okn .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-v9ORer3okn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9ORer3okn .inner-container {
    width: 100% !important;
  }
}
.cid-v9ORer6GzQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9ORer6GzQ .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9ORer6GzQ .section-text {
  padding: 2rem 0;
}
.cid-v9ORer6GzQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9ORer6GzQ .inner-container {
    width: 100% !important;
  }
}
.cid-v9OReraLKc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9OReraLKc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v9OReraLKc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v9OReraLKc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v9OReraLKc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v9OReraLKc .row > .row {
  display: block;
}
.cid-v9OReraLKc .mbr-gallery-item {
  width: 100%;
}
.cid-v9OReraLKc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v9OReraLKc .mbr-gallery-item > div {
  position: relative;
}
.cid-v9OReraLKc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v9OReraLKc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v9OReraLKc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v9OReraLKc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v9ORerm9B7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9ORerm9B7 .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9ORerm9B7 .section-text {
  padding: 2rem 0;
}
.cid-v9ORerm9B7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9ORerm9B7 .inner-container {
    width: 100% !important;
  }
}
.cid-v9ORerw08a {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9ORerw08a .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v9ORerw08a .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v9ORerw08a .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v9ORerw08a .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v9ORerw08a .row > .row {
  display: block;
}
.cid-v9ORerw08a .mbr-gallery-item {
  width: 100%;
}
.cid-v9ORerw08a .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v9ORerw08a .mbr-gallery-item > div {
  position: relative;
}
.cid-v9ORerw08a .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v9ORerw08a .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v9ORerw08a .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v9ORerw08a .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v9ORerCgp6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9ORerCgp6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v9ORerCgp6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v9ORerCgp6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v9ORerCgp6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v9ORerCgp6 .row > .row {
  display: block;
}
.cid-v9ORerCgp6 .mbr-gallery-item {
  width: 100%;
}
.cid-v9ORerCgp6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v9ORerCgp6 .mbr-gallery-item > div {
  position: relative;
}
.cid-v9ORerCgp6 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v9ORerCgp6 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v9ORerCgp6 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v9ORerCgp6 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v9ORerTIZZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #3eddea;
}
.cid-v9ORerTIZZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v9ORerTIZZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v9ORerTIZZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v9ORerTIZZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v9ORerTIZZ .row > .row {
  display: block;
}
.cid-v9ORerTIZZ .mbr-gallery-item {
  width: 100%;
}
.cid-v9ORerTIZZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v9ORerTIZZ .mbr-gallery-item > div {
  position: relative;
}
.cid-v9ORerTIZZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v9ORerTIZZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v9ORerTIZZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v9ORerTIZZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v9OResbkhy {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #3eddea;
}
.cid-v9OResbkhy .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-v9OResbkhy div.b {
  padding-top: 2rem;
}
.cid-v9OResbkhy H5 {
  color: #232323;
}
.cid-vfaJMZSL2G {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-vfaJMZSL2G .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vfaJMZSL2G .section-text {
  padding: 2rem 0;
}
.cid-vfaJMZSL2G .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vfaJMZSL2G .inner-container {
    width: 100% !important;
  }
}
.cid-vfaJN0ehml {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-vfaJN0ehml .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfaJN0ehml .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfaJN0ehml .row {
  justify-content: center;
}
.cid-vfaJN0ehml .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vfaJN0ehml .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vfaJN0ehml .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vfaJN0ehml .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vfaJN0ehml .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vfaJN0ehml .mbr-text_1,
.cid-vfaJN0ehml .mbr-text_2,
.cid-vfaJN0ehml .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vfaJN0ehml .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vfaJN0ehml .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #3bec15;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vfaJN0ehml .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vfaJN0ehml .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vfaJN0ehml .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vfaJN0ehml .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #3bec15;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vfaJN0ehml .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #3bec15;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vfaJN0ehml .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vfaJN0ehml .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vfaJN0ehml .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vfaJN0ehml .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vfaJN0ehml .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vfaJN0ehml .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vfaJN0n7rE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-vfaJN0n7rE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfaJN0n7rE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfaJN0n7rE .row {
  justify-content: center;
}
.cid-vfaJN0n7rE .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vfaJN0n7rE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vfaJN0n7rE .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vfaJN0n7rE .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vfaJN0n7rE .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vfaJN0n7rE .mbr-text_1,
.cid-vfaJN0n7rE .mbr-text_2,
.cid-vfaJN0n7rE .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vfaJN0n7rE .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vfaJN0n7rE .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vfaJN0n7rE .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vfaJN0n7rE .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vfaJN0n7rE .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vfaJN0n7rE .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vfaJN0n7rE .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vfaJN0n7rE .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vfaJN0n7rE .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vfaJN0n7rE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vfaJN0n7rE .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vfaJN0n7rE .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vfaJN0n7rE .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vfaJN0vEjy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-vfaJN0vEjy .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vfaJN0vEjy .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-vfaJN0vEjy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vfaJN0vEjy .inner-container {
    width: 100% !important;
  }
}
.cid-vfaJN0z4HU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-vfaPhdVemN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-vfaPhdVemN .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vfaPhdVemN .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-vfaPhdVemN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vfaPhdVemN .inner-container {
    width: 100% !important;
  }
}
.cid-vfaKhw5eM0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-vfaKhw5eM0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-vfaKhw5eM0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vfaKhw5eM0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vfaKhw5eM0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-vfaKhw5eM0 .row > .row {
  display: block;
}
.cid-vfaKhw5eM0 .mbr-gallery-item {
  width: 100%;
}
.cid-vfaKhw5eM0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-vfaKhw5eM0 .mbr-gallery-item > div {
  position: relative;
}
.cid-vfaKhw5eM0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-vfaKhw5eM0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-vfaKhw5eM0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-vfaKhw5eM0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-vfaPfchOoA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-vfaPfchOoA .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vfaPfchOoA .section-text {
  padding: 2rem 0;
}
.cid-vfaPfchOoA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vfaPfchOoA .inner-container {
    width: 100% !important;
  }
}
.cid-vfaJN0ZFQd {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-vfaJN0ZFQd .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-vfaJN0ZFQd div.b {
  padding-top: 2rem;
}
.cid-vfaJN0ZFQd H5 {
  color: #232323;
}
.cid-vgoWDYUEHA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-vgoWDYUEHA .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vgoWDYUEHA .section-text {
  padding: 2rem 0;
}
.cid-vgoWDYUEHA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vgoWDYUEHA .inner-container {
    width: 100% !important;
  }
}
.cid-vgoWDZeRUI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7ed4a;
}
.cid-vgoWDZeRUI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgoWDZeRUI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgoWDZeRUI .row {
  justify-content: center;
}
.cid-vgoWDZeRUI .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vgoWDZeRUI .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vgoWDZeRUI .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vgoWDZeRUI .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vgoWDZeRUI .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vgoWDZeRUI .mbr-text_1,
.cid-vgoWDZeRUI .mbr-text_2,
.cid-vgoWDZeRUI .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vgoWDZeRUI .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #ff3366;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vgoWDZeRUI .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #db4af7;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vgoWDZeRUI .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vgoWDZeRUI .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vgoWDZeRUI .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vgoWDZeRUI .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #db4af7;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vgoWDZeRUI .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #db4af7;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vgoWDZeRUI .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #ff3366;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vgoWDZeRUI .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #117cec;
}
.cid-vgoWDZeRUI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vgoWDZeRUI .mbr-text_1 {
  color: #232323;
  text-align: center;
}
.cid-vgoWDZeRUI .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vgoWDZeRUI .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vgoWDZq9uo {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f7ed4a;
}
.cid-vgoWDZq9uo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgoWDZq9uo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgoWDZq9uo .row {
  justify-content: center;
}
.cid-vgoWDZq9uo .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-vgoWDZq9uo .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-vgoWDZq9uo .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-vgoWDZq9uo .card-wrapper {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 40px;
  min-width: 216px;
}
@media (max-width: 992px) {
  .cid-vgoWDZq9uo .card-wrapper {
    margin: 0 0 24px 0 !important;
    transform: none !important;
  }
}
.cid-vgoWDZq9uo .mbr-text_1,
.cid-vgoWDZq9uo .mbr-text_2,
.cid-vgoWDZq9uo .mbr-text_3 {
  margin-bottom: 0;
}
.cid-vgoWDZq9uo .cards_1 .card-wrapper:first-child {
  transform: rotate(350deg);
  background-color: #db4af7;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vgoWDZq9uo .cards_1 .card-wrapper:nth-child(2) {
  transform: rotate(340deg);
  background-color: #15ece0;
  margin: -35px -3rem 20px 12rem;
  position: relative;
  z-index: 1;
}
.cid-vgoWDZq9uo .cards_1 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vgoWDZq9uo .cards_2 .card-wrapper:first-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vgoWDZq9uo .cards_2 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 24px 10rem 0px -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vgoWDZq9uo .cards_2 .card-wrapper:last-child {
  transform: rotate(0);
  background-color: #15ece0;
  margin: 0 -3rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cid-vgoWDZq9uo .cards_3 .card-wrapper:first-child {
  transform: rotate(15deg);
  background-color: #15ece0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.cid-vgoWDZq9uo .cards_3 .card-wrapper:nth-child(2) {
  transform: rotate(353deg);
  background-color: #db4af7;
  margin: 0 10rem 0 -3rem;
  opacity: .9;
  position: relative;
  z-index: 2;
}
.cid-vgoWDZq9uo .cards_3 .card-wrapper:last-child {
  transform: rotate(5deg);
  background-color: #e8e8e8;
}
.cid-vgoWDZq9uo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vgoWDZq9uo .mbr-text_1 {
  color: #e8e8e8;
  text-align: center;
}
.cid-vgoWDZq9uo .mbr-text_2 {
  color: #101511;
  text-align: center;
}
.cid-vgoWDZq9uo .mbr-text_3 {
  color: #101511;
  text-align: center;
}
.cid-vgoWDZEOPR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-vgoWDZEOPR .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vgoWDZEOPR .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-vgoWDZEOPR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vgoWDZEOPR .inner-container {
    width: 100% !important;
  }
}
.cid-vgoWDZHdzj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-vgoWDZHdzj .line {
  background-color: #3bec15;
  color: #3bec15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vgoWDZHdzj .section-text {
  padding: 2rem 0;
  color: #3e5cea;
}
.cid-vgoWDZHdzj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vgoWDZHdzj .inner-container {
    width: 100% !important;
  }
}
.cid-vgoWDZOfQP {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #f7ed4a;
}
.cid-vgoWDZOfQP .mbr-text {
  color: #232323;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-vgoWDZOfQP div.b {
  padding-top: 2rem;
}
.cid-vgoWDZOfQP H5 {
  color: #232323;
}
